HomeSort by relevance Sort by last modified time
    Searched refs:LESS (Results 51 - 75 of 262) sorted by null

1 23 4 5 6 7 8 91011

  /external/v8/testing/gtest/
CMakeLists.txt 184 if (NOT MSVC OR MSVC_VERSION LESS 1600) # 1600 is Visual Studio 2010.
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
Collation.java 32 public static final int LESS = -1;
  /external/icu/icu4c/source/i18n/unicode/
coll.h 112 * cout << "abc is less than ABC" << endl;
208 * LESS is returned if source string is compared to be less than target
219 LESS = UCOL_LESS, // -1
328 * different strings. Returns information about whether a string is less
333 * than target; EQUAL if source is equal to target; LESS if source is less
342 * different strings. Returns information about whether a string is less
348 * than target; UCOL_EQUAL if source is equal to target; UCOL_LESS if source is less
364 * length) is equal to target; LESS if source (up to the specifie
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
Collation.java 30 public static final int LESS = -1;
  /external/pdfium/xfa/fxfa/fm2js/
xfa_simpleexpression.h 26 LESS,
  /external/icu/icu4c/source/test/intltest/
apicoll.cpp 106 doAssert((col->compare("ab", "abc") == Collator::LESS), "ab < abc comparison failed");
107 doAssert((col->compare("ab", "AB") == Collator::LESS), "ab < AB comparison failed");
109 doAssert((col->compare("black bird", "black-bird") == Collator::LESS), "black bird > black-bird comparison failed");
127 doAssert((col->compare("ab", "AB", 2) == Collator::LESS), "ab < AB with length 2 comparison failed");
128 doAssert((col->compare("ab", "Aa", 1) == Collator::LESS), "ab < Aa with length 1 comparison failed");
131 doAssert((col->compare("black bird", "black-bird", 10) == Collator::LESS), "black bird < black-bird with length 10 comparison failed");
514 doAssert(sortkNone.compareTo(sortkEmpty) == Collator::LESS,
558 doAssert(sortkEmpty.compareTo(sortk1) == Collator::LESS, "Result should be (empty key) <<< \"Abcda\"");
    [all...]
thcoll.cpp 264 expect = Collator::LESS;
regcoll.cpp 555 if (result != Collator::LESS)
    [all...]
  /external/v8/src/mips/
code-stubs-mips.cc 233 if (cc == less || cc == greater) {
252 DCHECK(is_int16(GREATER) && is_int16(LESS));
259 __ li(v0, Operand(LESS));
266 DCHECK(is_int16(GREATER) && is_int16(LESS));
268 if (cc == less) {
269 __ li(v0, Operand(GREATER)); // Things aren't less than themselves.
271 __ li(v0, Operand(LESS)); // Things aren't greater than themselves.
276 // For less and greater we don't have to check for NaN since the result of
305 DCHECK(is_int16(GREATER) && is_int16(LESS));
310 __ li(v0, Operand(LESS)); // NaN >= NaN should fail
    [all...]
  /external/v8/src/mips64/
code-stubs-mips64.cc 231 if (cc == less || cc == greater) {
250 DCHECK(is_int16(GREATER) && is_int16(LESS));
257 __ li(v0, Operand(LESS));
264 DCHECK(is_int16(GREATER) && is_int16(LESS));
266 if (cc == less) {
267 __ li(v0, Operand(GREATER)); // Things aren't less than themselves.
269 __ li(v0, Operand(LESS)); // Things aren't greater than themselves.
273 // For less and greater we don't have to check for NaN since the result of
302 DCHECK(is_int16(GREATER) && is_int16(LESS));
307 __ li(v0, Operand(LESS)); // NaN >= NaN should fail
    [all...]
  /external/v8/src/ppc/
code-stubs-ppc.cc 121 // If exponent is greater than or equal to 84, the 32 less significant
232 __ li(r3, Operand(LESS));
241 __ li(r3, Operand(GREATER)); // Things aren't less than themselves.
243 __ li(r3, Operand(LESS)); // Things aren't greater than themselves.
249 // For less and greater we don't have to check for NaN since the result of
279 __ li(r4, Operand((cond == le) ? GREATER : LESS));
287 __ li(r3, Operand(LESS)); // NaN >= NaN should fail.
571 __ li(r5, Operand(LESS));
584 __ li(r3, Operand(LESS));
595 __ li(r3, Operand(LESS));
    [all...]
  /external/googletest/googletest/
CMakeLists.txt 210 if (NOT MSVC OR MSVC_VERSION LESS 1600) # 1600 is Visual Studio 2010.
  /external/v8/src/arm/
code-stubs-arm.cc 121 // If exponent is greater than or equal to 84, the 32 less significant
222 __ mov(r0, Operand(LESS));
231 __ mov(r0, Operand(GREATER)); // Things aren't less than themselves.
233 __ mov(r0, Operand(LESS)); // Things aren't greater than themselves.
239 // For less and greater we don't have to check for NaN since the result of
272 __ mov(r0, Operand(LESS)); // NaN >= NaN should fail.
551 __ mov(r0, Operand(LESS), LeaveCC, lt);
562 __ mov(r0, Operand(LESS));
639 ncr = LESS;
644 // Call the native; it returns -1 (less), 0 (equal), or 1 (greater
    [all...]
  /external/v8/src/arm64/
code-stubs-arm64.cc 114 // Exponents less than this should have been handled by the Fcvt case.
189 __ Mov(result, LESS);
197 __ Mov(result, GREATER); // Things aren't less than themselves.
199 __ Mov(result, LESS); // Things aren't greater than themselves.
221 __ Mov(result, LESS);
484 STATIC_ASSERT((LESS == -1) && (EQUAL == 0) && (GREATER == 1));
497 __ Mov(result, LESS);
594 ncr = LESS;
599 // Call the native; it returns -1 (less), 0 (equal), or 1 (greater)
2449 Register less = x11; local
    [all...]
  /external/v8/src/s390/
code-stubs-s390.cc 119 // If exponent is greater than or equal to 84, the 32 less significant
232 __ LoadImmP(r2, Operand(LESS));
241 __ LoadImmP(r2, Operand(GREATER)); // Things aren't less than themselves.
243 __ LoadImmP(r2, Operand(LESS)); // Things aren't greater than themselves.
249 // For less and greater we don't have to check for NaN since the result of
286 __ LoadImmP(r2, Operand(LESS)); // NaN >= NaN should fail.
568 __ LoadImmP(r2, Operand(LESS));
578 __ LoadImmP(r2, Operand(LESS));
651 ncr = LESS;
656 // Call the native; it returns -1 (less), 0 (equal), or 1 (greater
    [all...]
  /external/libpcap/
grammar.y 303 %token NET NETMASK PORT PORTRANGE LESS GREATER PROTO PROTOCHAIN CBYTE
529 | LESS NUM { $$ = gen_less(cstate, $2); }
grammar.c 359 LESS = 266,
481 #define LESS 266
969 "NETMASK", "PORT", "PORTRANGE", "LESS", "GREATER", "PROTO", "PROTOCHAIN",
    [all...]
scanner.l 320 less return LESS;
  /external/mesa3d/src/gallium/state_trackers/nine/
nine_dump.c 534 CAP_CASE(ZCmpCaps, D3DPCMPCAPS, LESS);
580 CAP_CASE(AlphaCmpCaps, D3DPCMPCAPS, LESS);
  /external/autotest/client/deps/webgl_mpd/src/debug/
webgl-debug.js 392 ctx.depthFunc(ctx.LESS);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
cpplib.h 57 OP(LESS, "<") \
    [all...]
  /external/fonttools/Lib/fontTools/
agl.py 512 003C;less;LESS-THAN SIGN
513 2264;lessequal;LESS-THAN OR EQUAL TO
  /external/libvncserver/webclients/novnc/include/
keysym.js 208 XK_less = 0x003c, /* U+003C LESS-THAN SIGN */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
tokenizer.c 58 "LESS",
395 /* Ask for one less byte so we can terminate it */
1034 case '<': return LESS;
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
RuleBasedCollator.java     [all...]

Completed in 800 milliseconds

1 23 4 5 6 7 8 91011