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

1 23 4 5 6

  /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");
525 doAssert(sortkNone.compareTo(sortkEmpty) == Collator::LESS,
569 doAssert(sortkEmpty.compareTo(sortk1) == Collator::LESS, "Result should be (empty key) <<< \"Abcda\"");
    [all...]
thcoll.cpp 261 expect = Collator::LESS;
regcoll.cpp 551 if (result != Collator::LESS)
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
apicoll.cpp 138 doAssert((col->compare("ab", "abc") == Collator::LESS), "ab < abc comparison failed");
139 doAssert((col->compare("ab", "AB") == Collator::LESS), "ab < AB comparison failed");
141 doAssert((col->compare("black bird", "black-bird") == Collator::LESS), "black bird > black-bird comparison failed");
159 doAssert((col->compare("ab", "AB", 2) == Collator::LESS), "ab < AB with length 2 comparison failed");
160 doAssert((col->compare("ab", "Aa", 1) == Collator::LESS), "ab < Aa with length 1 comparison failed");
163 doAssert((col->compare("black bird", "black-bird", 10) == Collator::LESS), "black bird < black-bird with length 10 comparison failed");
585 doAssert(sortkEmpty.compareTo(sortk1) == Collator::LESS, "Result should be (empty key) <<< \"Abcda\"");
    [all...]
thcoll.cpp 260 expect = Collator::LESS;
regcoll.cpp 558 if (result != Collator::LESS)
    [all...]
  /external/libpcap/
grammar.y 274 %token NET NETMASK PORT PORTRANGE LESS GREATER PROTO PROTOCHAIN CBYTE
500 | LESS NUM { $$ = gen_less($2); }
grammar.c 355 LESS = 266,
476 #define LESS 266
1028 "NETMASK", "PORT", "PORTRANGE", "LESS", "GREATER", "PROTO", "PROTOCHAIN",
    [all...]
scanner.l 269 less return LESS;
scanner.c 142 * but we do it the disgusting crufty way forced on us by the ()-less
    [all...]
  /external/qemu/android/skin/
keyset.c 114 _KEYSYM1_(LESS) \
  /external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_store_file.cc 30 // be sharded to need less than this amount of memory during update. Larger
293 template <typename CTI, typename LESS>
294 bool sorted(CTI beg, CTI end, LESS less) {
297 DCHECK(!less(*beg, *n));
298 if (less(*beg, *n))
309 void container_merge(CT* container, CTI beg, CTI end, const COMP& less) {
310 DCHECK(sorted(container->begin(), container->end(), less));
311 DCHECK(sorted(beg, end, less));
324 if (less(*(c_end - 1), *(end - 1)))
    [all...]
  /external/chromium_org/v8/src/mips/
code-stubs-mips.cc 353 if (cc == less || cc == greater) {
369 DCHECK(is_int16(GREATER) && is_int16(LESS));
376 __ li(v0, Operand(LESS));
383 DCHECK(is_int16(GREATER) && is_int16(LESS));
385 if (cc == less) {
386 __ li(v0, Operand(GREATER)); // Things aren't less than themselves.
388 __ li(v0, Operand(LESS)); // Things aren't greater than themselves.
393 // For less and greater we don't have to check for NaN since the result of
422 DCHECK(is_int16(GREATER) && is_int16(LESS));
427 __ li(v0, Operand(LESS)); // NaN >= NaN should fail
    [all...]
  /external/chromium_org/v8/src/mips64/
code-stubs-mips64.cc 349 if (cc == less || cc == greater) {
365 DCHECK(is_int16(GREATER) && is_int16(LESS));
372 __ li(v0, Operand(LESS));
379 DCHECK(is_int16(GREATER) && is_int16(LESS));
381 if (cc == less) {
382 __ li(v0, Operand(GREATER)); // Things aren't less than themselves.
384 __ li(v0, Operand(LESS)); // Things aren't greater than themselves.
388 // For less and greater we don't have to check for NaN since the result of
417 DCHECK(is_int16(GREATER) && is_int16(LESS));
422 __ li(v0, Operand(LESS)); // NaN >= NaN should fail
    [all...]
  /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/chromium_org/v8/src/arm/
code-stubs-arm.cc 181 // If exponent is greater than or equal to 84, the 32 less significant
331 __ mov(r0, Operand(LESS));
340 __ mov(r0, Operand(GREATER)); // Things aren't less than themselves.
342 __ mov(r0, Operand(LESS)); // Things aren't greater than themselves.
348 // For less and greater we don't have to check for NaN since the result of
381 __ mov(r0, Operand(LESS)); // NaN >= NaN should fail.
643 __ mov(r0, Operand(LESS), LeaveCC, lt);
654 __ mov(r0, Operand(LESS));
722 ncr = LESS;
728 // Call the native; it returns -1 (less), 0 (equal), or 1 (greater
    [all...]
  /external/chromium_org/v8/src/arm64/
code-stubs-arm64.cc 176 // Exponents less than this should have been handled by the Fcvt case.
247 __ Mov(result, LESS);
255 __ Mov(result, GREATER); // Things aren't less than themselves.
257 __ Mov(result, LESS); // Things aren't greater than themselves.
279 __ Mov(result, LESS);
535 STATIC_ASSERT((LESS == -1) && (EQUAL == 0) && (GREATER == 1));
548 __ Mov(result, LESS);
636 ncr = LESS;
642 // Call the native; it returns -1 (less), 0 (equal), or 1 (greater)
3865 Register less = x11; local
    [all...]
  /external/fonttools/Lib/fontTools/
agl.py 512 003C;less;LESS-THAN SIGN
513 2264;lessequal;LESS-THAN OR EQUAL TO
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_quad_depth_test.c 703 ALPHATEST( LESS, < )
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_quad_depth_test.c 703 ALPHATEST( LESS, < )
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLRenderingContextBase.idl 70 /* LESS */
142 /* LESS */
284 const GLenum LESS = 0x0201;
    [all...]
  /external/eigen/blas/testing/
cblat2.f 365 9997 FORMAT( ' NUMBER OF VALUES OF ', A, ' IS LESS THAN 1 OR GREATER ',
367 9996 FORMAT( ' VALUE OF N IS LESS THAN 0 OR GREATER THAN ', I2 )
368 9995 FORMAT( ' VALUE OF K IS LESS THAN 0' )
    [all...]
dblat2.f 360 9997 FORMAT( ' NUMBER OF VALUES OF ', A, ' IS LESS THAN 1 OR GREATER ',
362 9996 FORMAT( ' VALUE OF N IS LESS THAN 0 OR GREATER THAN ', I2 )
363 9995 FORMAT( ' VALUE OF K IS LESS THAN 0' )
    [all...]
sblat2.f 360 9997 FORMAT( ' NUMBER OF VALUES OF ', A, ' IS LESS THAN 1 OR GREATER ',
362 9996 FORMAT( ' VALUE OF N IS LESS THAN 0 OR GREATER THAN ', I2 )
363 9995 FORMAT( ' VALUE OF K IS LESS THAN 0' )
    [all...]
zblat2.f 366 9997 FORMAT( ' NUMBER OF VALUES OF ', A, ' IS LESS THAN 1 OR GREATER ',
368 9996 FORMAT( ' VALUE OF N IS LESS THAN 0 OR GREATER THAN ', I2 )
369 9995 FORMAT( ' VALUE OF K IS LESS THAN 0' )
    [all...]

Completed in 609 milliseconds

1 23 4 5 6