/external/llvm/include/llvm/ADT/ |
D | DenseMapInfo.h | 47 static bool isEqual(const T *LHS, const T *RHS) { return LHS == RHS; } 55 static bool isEqual(const char &LHS, const char &RHS) { 65 static bool isEqual(const unsigned& LHS, const unsigned& RHS) { 77 static bool isEqual(const unsigned long& LHS, const unsigned long& RHS) { 89 static bool isEqual(const unsigned long long& LHS, 100 static bool isEqual(const int& LHS, const int& RHS) { 114 static bool isEqual(const long& LHS, const long& RHS) { 126 static bool isEqual(const long long& LHS, 160 static bool isEqual(const Pair &LHS, const Pair &RHS) { 161 return FirstInfo::isEqual(LHS.first, RHS.first) && [all …]
|
D | DenseMap.h | 91 if (!KeyInfoT::isEqual(P->first, EmptyKey)) { in clear() 92 if (!KeyInfoT::isEqual(P->first, TombstoneKey)) { in clear() 253 if (!KeyInfoT::isEqual(P->first, EmptyKey) && in destroyAll() 254 !KeyInfoT::isEqual(P->first, TombstoneKey)) in destroyAll() 282 if (!KeyInfoT::isEqual(B->first, EmptyKey) && in moveFromOldBuckets() 283 !KeyInfoT::isEqual(B->first, TombstoneKey)) { in moveFromOldBuckets() 319 if (!KeyInfoT::isEqual(getBuckets()[i].first, getEmptyKey()) && in copyFrom() 320 !KeyInfoT::isEqual(getBuckets()[i].first, getTombstoneKey())) in copyFrom() 448 if (!KeyInfoT::isEqual(TheBucket->first, EmptyKey)) in InsertIntoBucketImpl() 473 assert(!KeyInfoT::isEqual(Val, EmptyKey) && in LookupBucketFor() [all …]
|
D | ImmutableList.h | 118 bool isEqual(const ImmutableList& L) const { return X == L.X; } in isEqual() function 120 bool operator==(const ImmutableList& L) const { return isEqual(L); } 218 static bool isEqual(ImmutableList<T> X1, ImmutableList<T> X2) {
|
D | ImmutableMap.h | 41 static inline bool isEqual(key_type_ref L, key_type_ref R) { in isEqual() function 42 return ImutContainerInfo<T>::isEqual(L,R); in isEqual() 49 return ImutContainerInfo<S>::isEqual(L,R); in isDataEqual() 134 return Root && RHS.Root ? Root->isEqual(*RHS.Root) : Root == RHS.Root; 361 return Root && RHS.Root ? Root->isEqual(*RHS.Root) : Root == RHS.Root;
|
/external/clang/test/SemaObjC/ |
D | objc-literal-comparison.m | 18 - (BOOL)isEqual:(id)other; 39 …ect comparison of a string literal has undefined behavior}} expected-note{{use 'isEqual:' instead}} 40 …ect comparison of a string literal has undefined behavior}} expected-note{{use 'isEqual:' instead}} 41 …ect comparison of a string literal has undefined behavior}} expected-note{{use 'isEqual:' instead}} 42 …ect comparison of a string literal has undefined behavior}} expected-note{{use 'isEqual:' instead}} 44 …ect comparison of an array literal has undefined behavior}} expected-note{{use 'isEqual:' instead}} 45 …comparison of a dictionary literal has undefined behavior}} expected-note{{use 'isEqual:' instead}} 46 …ct comparison of a numeric literal has undefined behavior}} expected-note{{use 'isEqual:' instead}} 47 …ct comparison of a numeric literal has undefined behavior}} expected-note{{use 'isEqual:' instead}} 48 …ct comparison of a numeric literal has undefined behavior}} expected-note{{use 'isEqual:' instead}} [all …]
|
D | props-on-prots.m | 7 - (BOOL) isEqual:(id) object; 65 - (BOOL)isEqual:x { return 1; }
|
D | incomplete-implementation.m | 46 - (BOOL)isEqual:(id)object; 61 - (BOOL)isEqual:(id)object
|
/external/chromium_org/content/common/cursors/ |
D | webcursor_mac.mm | 308 if ([cursor isEqual:[NSCursor arrowCursor]]) { 310 } else if ([cursor isEqual:[NSCursor IBeamCursor]]) { 312 } else if ([cursor isEqual:[NSCursor crosshairCursor]]) { 314 } else if ([cursor isEqual:[NSCursor pointingHandCursor]]) { 316 } else if ([cursor isEqual:[NSCursor resizeLeftCursor]]) { 318 } else if ([cursor isEqual:[NSCursor resizeRightCursor]]) { 320 } else if ([cursor isEqual:[NSCursor resizeLeftRightCursor]]) { 322 } else if ([cursor isEqual:[NSCursor resizeUpCursor]]) { 324 } else if ([cursor isEqual:[NSCursor resizeDownCursor]]) { 326 } else if ([cursor isEqual:[NSCursor resizeUpDownCursor]]) { [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/ |
D | PemHeader.java | 38 … return other == this || (isEqual(this.name, other.name) && isEqual(this.value, other.value)); in equals() 51 private boolean isEqual(String s1, String s2) in isEqual() method in PemHeader
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/ |
D | EncodedKeySpec2Test.java | 52 isEqual(key, keys.getPublic())); in test_getEncoded() 59 isEqual(key, keys.getPrivate())); in test_getEncoded() 62 private boolean isEqual(Key key1, Key key2) { in isEqual() method in EncodedKeySpec2Test
|
/external/clang/test/FixIt/ |
D | fixit-nsstring-compare.m | 7 - (BOOL)isEqual:(id)object; 21 // CHECK: {16:28-16:30}:" isEqual:"
|
/external/chromium_org/chrome/common/ |
D | chrome_version_info_mac.mm | 31 } else if ([channel isEqual:@"beta"] || 32 [channel isEqual:@"dev"] || 33 [channel isEqual:@"canary"]) {
|
/external/llvm/lib/IR/ |
D | LLVMContextImpl.h | 67 static bool isEqual(const KeyTy &LHS, const KeyTy &RHS) { in isEqual() function 95 static bool isEqual(const KeyTy &LHS, const KeyTy &RHS) { in isEqual() function 134 static bool isEqual(const KeyTy& LHS, const StructType *RHS) { in isEqual() function 139 static bool isEqual(const StructType *LHS, const StructType *RHS) { in isEqual() function 183 static bool isEqual(const KeyTy& LHS, const FunctionType *RHS) { in isEqual() function 188 static bool isEqual(const FunctionType *LHS, const FunctionType *RHS) { in isEqual() function
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
D | MessageDigest2Test.java | 80 + digestAlgs[i], MessageDigest.isEqual(d1.digest(), d2 in test_clone() 224 assertTrue("bug in SHA", MessageDigest.isEqual(digest, MESSAGE_DIGEST)); in test_digest() 232 assertTrue("bug in SHA", MessageDigest.isEqual(digest, in test_digest() 241 assertTrue("bug in SHA", MessageDigest.isEqual(digest, in test_digest() 250 assertTrue("bug in SHA", MessageDigest.isEqual(digest, in test_digest() 405 assertTrue("isEqual is not correct", MessageDigest.isEqual(AR1, AR2)); in test_isEqual$B$B()
|
D | MessageDigest1Test.java | 194 assertTrue(MessageDigest.isEqual(b1, b4)); in test_isEqualLB$LB$() 195 assertFalse(MessageDigest.isEqual(b1, b2)); in test_isEqualLB$LB$() 196 assertFalse(MessageDigest.isEqual(b1, b3)); in test_isEqualLB$LB$()
|
D | DigestInputStream2Test.java | 74 MessageDigest.isEqual(noChangeDigest.digest(), originalDigest in test_onZ() 86 !MessageDigest.isEqual(digest.digest(), changeDigest.digest())); in test_onZ()
|
/external/clang/include/clang/AST/ |
D | TypeOrdering.h | 53 static bool isEqual(clang::QualType LHS, clang::QualType RHS) { 73 static bool isEqual(clang::CanQualType LHS, clang::CanQualType RHS) {
|
/external/chromium_org/third_party/skia/include/gpu/ |
D | GrEffectStage.h | 54 if (!(*this->getEffect())->isEqual(*other.getEffect())) { 164 bool isEqual(const GrEffectStage& stage, bool ignoreCoordChange) const { in isEqual() function 170 if (!(*stage.getEffect())->isEqual(*fEffect)) { in isEqual()
|
D | GrEffect.h | 127 bool isEqual(const GrEffectRef& other) const { in isEqual() function 128 return this->isEqual(*other.get()); in isEqual() 302 bool isEqual(const GrEffect& other) const { in isEqual() function
|
/external/skia/include/gpu/ |
D | GrEffectStage.h | 54 if (!(*this->getEffect())->isEqual(*other.getEffect())) { 164 bool isEqual(const GrEffectStage& stage, bool ignoreCoordChange) const { in isEqual() function 170 if (!(*stage.getEffect())->isEqual(*fEffect)) { in isEqual()
|
D | GrEffect.h | 127 bool isEqual(const GrEffectRef& other) const { in isEqual() function 128 return this->isEqual(*other.get()); in isEqual() 302 bool isEqual(const GrEffect& other) const { in isEqual() function
|
/external/chromium_org/chrome/browser/ui/cocoa/constrained_window/ |
D | constrained_window_sheet_controller.mm | 105 if ([overlayWindow isEqual:[info overlayWindow]]) 155 if ([activeView_ isEqual:parentView]) 186 if ([activeView_ isEqual:[info parentView]]) 196 if ([parentView isEqual:[info parentView]]) 205 if ([sheet isEqual:[info sheet]]) 277 if ([overlayWindow isEqual:[curInfo overlayWindow]]) {
|
/external/clang/test/Sema/ |
D | block-return.c | 60 …Boolean (^isEqual)(const CFBasicHash *, uintptr_t stack_value_or_key1, uintptr_t stack_value_or_ke… member 68 …cb.isEqual = ^(const CFBasicHash *table, uintptr_t stack_value_or_key1, uintptr_t stack_value_or_k… in foo3()
|
/external/chromium_org/testing/ |
D | gtest_mac.mm | 32 if (expected == actual || [expected isEqual:actual]) { 48 if (expected != actual && ![expected isEqual:actual]) {
|
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
D | IDBKey.h | 76 if (array[i]->isEqual(result[j].get())) { in createMultiEntryArray() 144 bool isEqual(const IDBKey* other) const;
|