Searched refs:sorted (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/tools/aapt/
H A DStringPool.h66 * If 'sorted' is true, then the final strings in the resource data
67 * structure will be generated in sorted order. This allow for fast
75 explicit StringPool(bool sorted = false, bool utf8 = false);
84 * if this string pool is sorted, the returned index will not be valid
111 * pool is sorted, this can not be called until after createStringBlock()
121 * string pool is sorted, this can not be called until after
H A DStringPool.cpp37 StringPool::StringPool(bool sorted, bool utf8) argument
38 : mSorted(sorted), mUTF8(utf8), mValues(-1), mIdents(-1)
133 LOG_ALWAYS_FATAL_IF(mSorted, "Can't use styles with sorted string pools.");
/frameworks/base/core/java/android/widget/
H A DRelativeLayout.java1240 * Builds a sorted list of views. The sorting order depends on the dependencies
1243 * is: B -> A -> C. The sorted array will contain views B, A and C in this order.
1245 * @param sorted The sorted list of views. The length of this array must
1249 void getSortedViews(View[] sorted, int... rules) { argument
1258 sorted[index++] = view;
1271 if (index < sorted.length) {

Completed in 370 milliseconds