HomeSort by relevance Sort by last modified time
    Searched refs:LESS (Results 1 - 25 of 187) sorted by null

1 2 3 4 5 6 7 8

  /external/compiler-rt/test/BlocksRuntime/
rettypepromotion.c 23 enum { LESS = -1, EQUAL, GREATER };
30 if (random()) return LESS;
  /external/icu/icu4c/source/test/intltest/
allcoll.cpp 50 Collator::LESS,
51 Collator::LESS, /*Collator::GREATER,*/
52 Collator::LESS,
53 Collator::LESS,
54 Collator::LESS,
55 Collator::LESS,
56 Collator::LESS,
59 Collator::LESS, /* 10 */
61 Collator::LESS,
64 Collator::LESS,
    [all...]
trcoll.cpp 59 Collator::LESS,
60 Collator::LESS,
61 Collator::LESS,
62 Collator::LESS,
64 Collator::LESS,
65 Collator::LESS,
68 Collator::LESS,
69 Collator::LESS,
escoll.cpp 71 Collator::LESS,
72 Collator::LESS,
74 Collator::LESS,
75 Collator::LESS,
77 Collator::LESS,
79 Collator::LESS,
decoll.cpp 88 { Collator::LESS, Collator::LESS },
89 { Collator::EQUAL, Collator::LESS },
93 { Collator::EQUAL, Collator::LESS },
95 { Collator::LESS, Collator::LESS },
98 { Collator::LESS, Collator::LESS },
encoll.cpp 134 Collator::LESS,
135 Collator::LESS, /*Collator::GREATER,*/
136 Collator::LESS,
140 Collator::LESS,
141 Collator::LESS,
142 Collator::LESS,
143 Collator::LESS, /*Collator::GREATER,*/ /* 10 */
145 Collator::LESS,
147 Collator::LESS,
151 Collator::LESS,
    [all...]
frcoll.cpp 78 Collator::LESS,
79 Collator::LESS,
80 Collator::LESS, /*Collator::GREATER,*/
81 Collator::LESS,
84 Collator::LESS,
86 Collator::LESS, /*Collator::GREATER,*/
88 Collator::LESS,
89 Collator::LESS
175 expected = Collator::LESS;
194 doTest(myCollation, testBugs[i], testBugs[j], Collator::LESS);
    [all...]
jacoll.cpp 57 Collator::LESS,
58 Collator::EQUAL, //Collator::LESS, /* Katakanas and Hiraganas are equal on tertiary level(ICU 2.0)*/
59 Collator::LESS,
60 Collator::GREATER, // Collator::LESS, /* Prolonged sound mark sorts BEFORE equivalent vowel (ICU 2.0)*/
61 Collator::LESS,
62 Collator::LESS, //Collator::GREATER /* Prolonged sound mark sorts BEFORE equivalent vowel (ICU 2.0)*//* 6 */
124 doTest(myCollation, testBaseCases[i], testBaseCases[i + 1], Collator::LESS);
134 Collator::LESS);
147 doTest(myCollation, testSmallLargeCases[i], testSmallLargeCases[i + 1], Collator::LESS);
161 Collator::LESS);
    [all...]
ficoll.cpp 62 Collator::LESS,
64 Collator::LESS,
lcukocol.cpp 61 Collator::LESS
g7coll.cpp 141 doTest(myCollation.getAlias(), testCases[results[i][j]], testCases[results[i][n]], Collator::LESS);
173 doTest(myCollation, testCases[results[8][j]], testCases[results[8][n]], Collator::LESS);
207 doTest(myCollation, testCases[results[9][j]], testCases[results[9][n]], Collator::LESS);
241 doTest(myCollation, testCases[results[10][j]], testCases[results[10][n]], Collator::LESS);
270 doTest(myCollation, testCases[results[11][j]], testCases[results[11][n]], Collator::LESS);
  /external/skia/include/private/
SkTSearch.h 34 // The most general form of SkTSearch takes an array of T and a key of type K. A functor, less, is
38 template <typename T, typename K, typename LESS>
39 int SkTSearch(const T base[], int count, const K& key, size_t elemSize, LESS& less)
55 if (less(*elem, key))
62 if (less(*elem, key)) {
65 } else if (less(key, *elem)) {
71 // Adapts a less-than function to a functor.
72 template <typename T, bool (LESS)(const T&, const T&)> struct SkTLessFunctionToFunctorAdaptor {
73 bool operator()(const T& a, const T& b) { return LESS(a, b);
    [all...]
  /external/skia/src/core/
SkTDPQueue.h 14 * This class implements a priority queue. T is the type of the elements in the queue. LESS is a
25 bool (*LESS)(const T&, const T&),
120 if (LESS(fArray[index], fArray[p])) {
146 if (LESS(fArray[child], fArray[index])) {
152 } else if (LESS(fArray[child + 1], fArray[child])) {
158 if (LESS(fArray[child], fArray[index])) {
163 // We're less than both our children.
183 SkASSERT(!(LESS(fArray[i], fArray[p])));
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationCompare.java 90 return (leftPrimary < rightPrimary) ? Collation.LESS : Collation.GREATER;
116 return (leftSecondary < rightSecondary) ? Collation.LESS : Collation.GREATER;
156 return (leftSecondary < rightSecondary) ? Collation.LESS : Collation.GREATER;
234 return (leftCase < rightCase) ? Collation.LESS : Collation.GREATER;
236 return (leftCase < rightCase) ? Collation.GREATER : Collation.LESS;
292 return (leftTertiary < rightTertiary) ? Collation.LESS : Collation.GREATER;
345 return (leftQuaternary < rightQuaternary) ? Collation.LESS : Collation.GREATER;
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationCompare.java 86 return (leftPrimary < rightPrimary) ? Collation.LESS : Collation.GREATER;
112 return (leftSecondary < rightSecondary) ? Collation.LESS : Collation.GREATER;
152 return (leftSecondary < rightSecondary) ? Collation.LESS : Collation.GREATER;
230 return (leftCase < rightCase) ? Collation.LESS : Collation.GREATER;
232 return (leftCase < rightCase) ? Collation.GREATER : Collation.LESS;
288 return (leftTertiary < rightTertiary) ? Collation.LESS : Collation.GREATER;
341 return (leftQuaternary < rightQuaternary) ? Collation.LESS : Collation.GREATER;
  /prebuilts/gdb/darwin-x86/include/python2.7/
token.h 32 #define LESS 20
  /prebuilts/gdb/linux-x86/include/python2.7/
token.h 32 #define LESS 20
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
token.h 32 #define LESS 20
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
token.h 32 #define LESS 20
  /external/clang/test/Sema/
block-misc.c 140 enum { LESS };
147 foo(^{ return LESS; }); // expected-error {{incompatible block pointer types passing 'int (^)(void)' to parameter of type 'long (^)()'}}
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/pgen2/
token.py 29 LESS = 20
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/pgen2/
token.py 29 LESS = 20
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
token.py 29 LESS = 20
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
token.py 29 LESS = 20
  /external/guava/guava/src/com/google/common/collect/
ComparisonChain.java 101 return (result < 0) ? LESS : (result > 0) ? GREATER : ACTIVE;
108 private static final ComparisonChain LESS = new InactiveComparisonChain(-1);
193 * Compares two {@code boolean} values, considering {@code true} to be less
202 * Compares two {@code boolean} values, considering {@code false} to be less

Completed in 644 milliseconds

1 2 3 4 5 6 7 8