HomeSort by relevance Sort by last modified time
    Searched refs:EQUAL (Results 26 - 50 of 162) sorted by null

12 3 4 5 6 7

  /external/chromium_org/tools/gn/
token.h 21 EQUAL,
tokenizer_unittest.cc 90 { Token::EQUAL, "=" },
129 { Token::EQUAL, "=" },
177 { Token::EQUAL, "=" },
operators.cc 500 return token.type() == Token::EQUAL ||
555 if (op.type() == Token::EQUAL ||
577 if (op.type() == Token::EQUAL)
  /libcore/luni/src/main/java/javax/xml/datatype/
DatatypeConstants.java 109 public static final int EQUAL = 0;
XMLGregorianCalendar.java 75 * <code>getEon()</code> has values greater than or equal to (10^9) or less than or equal to -(10^9).
636 * {@link DatatypeConstants#EQUAL},
655 * <p>Indicates whether parameter <code>obj</code> is "equal to" this one.</p>
660 * and {@link #compare(XMLGregorianCalendar obj)} returns {@link DatatypeConstants#EQUAL}, otherwise <code>false</code>.
667 return compare((XMLGregorianCalendar) obj) == DatatypeConstants.EQUAL;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
token.py 31 EQUAL = 22
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
token.py 31 EQUAL = 22
  /external/chromium_org/third_party/icu/source/test/intltest/
ficoll.cpp 66 Collator::EQUAL,
apicoll.cpp 158 doAssert((col->compare("ab", "abc", 2) == Collator::EQUAL), "ab = abc with length 2 comparison failed");
162 doAssert((col->compare("black-bird", "blackbird", 5) == Collator::EQUAL), "black-bird = blackbird with length of 5 comparison failed");
509 doAssert(col1->hashCode() == col3->hashCode(), "Hash result not equal" );
526 doAssert(sortk2.hashCode() == sortk3.hashCode(), "Hash result not equal" );
584 doAssert(sortk2.compareTo(sortk3) == Collator::EQUAL, "Result should be \"abcda\" == \"abcda\"");
587 doAssert(sortkEmpty.compareTo(sortkEmpty) == Collator::EQUAL, "Result should be (empty key) == (empty key)");
608 doAssert(sortk1.compareTo(sortk4) == Collator::EQUAL, "CollationKey::toByteArray(sortk1) Failed.");
609 doAssert(sortk2.compareTo(sortk5) == Collator::EQUAL, "CollationKey::toByteArray(sortk2) Failed.");
611 doAssert(sortk1.compareTo(sortk6) == Collator::EQUAL, "CollationKey::getByteArray(sortk1) Failed.");
612 doAssert(sortk2.compareTo(sortk7) == Collator::EQUAL, "CollationKey::getByteArray(sortk2) Failed.")
    [all...]
  /external/icu/icu4c/source/test/intltest/
ficoll.cpp 66 Collator::EQUAL,
apicoll.cpp 126 doAssert((col->compare("ab", "abc", 2) == Collator::EQUAL), "ab = abc with length 2 comparison failed");
130 doAssert((col->compare("black-bird", "blackbird", 5) == Collator::EQUAL), "black-bird = blackbird with length of 5 comparison failed");
467 doAssert(col1->hashCode() == col3->hashCode(), "Hash result not equal" );
484 doAssert(sortk2.hashCode() == sortk3.hashCode(), "Hash result not equal" );
532 // A string with only completely ignorables must compare equal to an empty string.
537 doAssert(sortkIgnorable.compareTo(sortkEmpty) == Collator::EQUAL,
538 "Completely ignorable string should compare equal to empty string");
568 doAssert(sortk2.compareTo(sortk3) == Collator::EQUAL, "Result should be \"abcda\" == \"abcda\"");
571 doAssert(sortkEmpty.compareTo(sortkEmpty) == Collator::EQUAL, "Result should be (empty key) == (empty key)");
592 doAssert(sortk1.compareTo(sortk4) == Collator::EQUAL, "CollationKey::toByteArray(sortk1) Failed.")
    [all...]
  /external/chromium_org/sandbox/win/src/
policy_low_level_unittest.cc 199 EXPECT_TRUE(pr.AddNumberMatch(IF, 1, 24, EQUAL));
245 EXPECT_TRUE(pr.AddNumberMatch(IF, 1, 24, EQUAL));
248 EXPECT_TRUE(pr.AddNumberMatch(IF, 2, 66, EQUAL));
320 EXPECT_TRUE(pr.AddNumberMatch(IF_NOT, 1, CREATE_ALWAYS, EQUAL));
321 EXPECT_TRUE(pr.AddNumberMatch(IF, 2, FILE_ATTRIBUTE_NORMAL, EQUAL));
391 EXPECT_TRUE(pr_pipe.AddNumberMatch(IF, 1, OPEN_EXISTING, EQUAL));
392 EXPECT_TRUE(pr_pipe.AddNumberMatch(IF, 2, FILE_ATTRIBUTE_NORMAL, EQUAL));
400 EXPECT_TRUE(pr_dump.AddNumberMatch(IF, 1, CREATE_ALWAYS, EQUAL));
401 EXPECT_TRUE(pr_dump.AddNumberMatch(IF, 2, FILE_ATTRIBUTE_NORMAL, EQUAL));
409 EXPECT_TRUE(pr_winexe.AddNumberMatch(IF, 2, FILE_ATTRIBUTE_NORMAL, EQUAL));
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
glslang_tab.h 167 EQUAL = 368,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_next.py 87 if child.type == token.EQUAL:
fix_print.py 82 pytree.Leaf(token.EQUAL, u"="),
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
token.py 35 EQUAL = 22
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_next.py 87 if child.type == token.EQUAL:
fix_print.py 82 pytree.Leaf(token.EQUAL, u"="),
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
token.py 35 EQUAL = 22
  /external/chromium_org/third_party/skia/src/core/
SkPaint.cpp 192 #define EQUAL(field) (a.field == b.field)
193 // Don't check fGenerationID, which can be different for logically equal paints.
195 return EQUAL(fDirtyBits)
196 && EQUAL(fTypeface)
197 && EQUAL(fPathEffect)
198 && EQUAL(fShader)
199 && EQUAL(fXfermode)
200 && EQUAL(fMaskFilter)
201 && EQUAL(fColorFilter)
202 && EQUAL(fRasterizer
    [all...]
  /external/skia/src/core/
SkPaint.cpp 197 #define EQUAL(field) (a.field == b.field)
198 // Don't check fGenerationID or fDirtyBits, which can be different for logically equal paints.
199 return EQUAL(fTypeface)
200 && EQUAL(fPathEffect)
201 && EQUAL(fShader)
202 && EQUAL(fXfermode)
203 && EQUAL(fMaskFilter)
204 && EQUAL(fColorFilter)
205 && EQUAL(fRasterizer)
206 && EQUAL(fLooper
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Python.g 276 |EQUAL
434 EQUAL : '==' ;
  /external/deqp/framework/randomshaders/
rsgToken.hpp 90 EQUAL,
  /external/chromium_org/third_party/mesa/src/src/glsl/glcpp/
glcpp-parse.y 175 %left EQUAL NOT_EQUAL
397 | expression EQUAL expression {
578 | EQUAL { $$ = EQUAL; }
972 case EQUAL:
1035 combined = _token_create_ival (token, EQUAL, EQUAL);
    [all...]
  /external/mesa3d/src/glsl/glcpp/
glcpp-parse.y 175 %left EQUAL NOT_EQUAL
397 | expression EQUAL expression {
578 | EQUAL { $$ = EQUAL; }
972 case EQUAL:
1035 combined = _token_create_ival (token, EQUAL, EQUAL);
    [all...]

Completed in 1063 milliseconds

12 3 4 5 6 7