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

/frameworks/base/awt/org/apache/harmony/awt/gl/
H A DMultiRectArea.java41 boolean sorted = true; field in class:MultiRectArea
360 public MultiRectArea(boolean sorted) { argument
362 this.sorted = sorted;
480 if (MultiRectArea.checkValidation(mra.getRectangles(), mra.sorted) != -1) {
491 public static int checkValidation(Rectangle[] r, boolean sorted) { argument
501 if (sorted) {
H A DMultiRectAreaOp.java360 if (!src1.sorted || !src2.sorted ||
541 if (!src1.sorted || !src2.sorted ||
816 if (!src1.sorted || !src2.sorted ||
/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.java1237 * Builds a sorted list of views. The sorting order depends on the dependencies
1240 * is: B -> A -> C. The sorted array will contain views B, A and C in this order.
1242 * @param sorted The sorted list of views. The length of this array must
1246 void getSortedViews(View[] sorted, int... rules) { argument
1255 sorted[index++] = view;
1268 if (index < sorted.length) {

Completed in 46 milliseconds