Home
last modified time | relevance | path

Searched refs:isEqual (Results 1 – 25 of 200) sorted by relevance

12345678

/external/llvm/include/llvm/ADT/
DDenseMapInfo.h50 static bool isEqual(const T *LHS, const T *RHS) { return LHS == RHS; }
58 static bool isEqual(const char &LHS, const char &RHS) {
68 static bool isEqual(const unsigned& LHS, const unsigned& RHS) {
80 static bool isEqual(const unsigned long& LHS, const unsigned long& RHS) {
92 static bool isEqual(const unsigned long long& LHS,
103 static bool isEqual(const int& LHS, const int& RHS) {
117 static bool isEqual(const long& LHS, const long& RHS) {
129 static bool isEqual(const long long& LHS,
163 static bool isEqual(const Pair &LHS, const Pair &RHS) {
164 return FirstInfo::isEqual(LHS.first, RHS.first) &&
[all …]
DDenseMap.h105 if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey)) { in clear()
106 if (!KeyInfoT::isEqual(P->getFirst(), TombstoneKey)) { in clear()
270 if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey) && in destroyAll()
271 !KeyInfoT::isEqual(P->getFirst(), TombstoneKey)) in destroyAll()
295 if (!KeyInfoT::isEqual(B->getFirst(), EmptyKey) && in moveFromOldBuckets()
296 !KeyInfoT::isEqual(B->getFirst(), TombstoneKey)) { in moveFromOldBuckets()
329 if (!KeyInfoT::isEqual(getBuckets()[i].getFirst(), getEmptyKey()) && in copyFrom()
330 !KeyInfoT::isEqual(getBuckets()[i].getFirst(), getTombstoneKey())) in copyFrom()
457 if (!KeyInfoT::isEqual(TheBucket->getFirst(), EmptyKey)) in InsertIntoBucketImpl()
482 assert(!KeyInfoT::isEqual(Val, EmptyKey) && in LookupBucketFor()
[all …]
DImmutableList.h118 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) {
DImmutableMap.h41 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()
135 return Root && RHS.Root ? Root->isEqual(*RHS.Root) : Root == RHS.Root;
342 return Root && RHS.Root ? Root->isEqual(*RHS.Root) : Root == RHS.Root;
DImmutableSet.h77 if (ImutInfo::isEqual(K,CurrentKey)) in find()
118 if (!ImutInfo::isEqual(ImutInfo::KeyOfValue(getValue()), in isElementEqual()
137 bool isEqual(const ImutAVLTree& RHS) const { in isEqual() function
163 bool isNotEqual(const ImutAVLTree& RHS) const { return !isEqual(RHS); } in isNotEqual()
544 if (ImutInfo::isEqual(K,KCurrent)) in add_internal()
564 if (ImutInfo::isEqual(K,KCurrent)) { in remove_internal()
920 static bool isEqual(key_type_ref LHS, key_type_ref RHS) {
946 static bool isEqual(key_type_ref LHS, key_type_ref RHS) { return LHS == RHS; }
1049 return Root && RHS.Root ? Root->isEqual(*RHS.Root) : Root == RHS.Root;
1174 return Root && RHS.Root ? Root->isEqual(*RHS.Root) : Root == RHS.Root;
/external/clang/test/SemaObjC/
Dobjc-literal-comparison.m18 - (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 …]
Dprops-on-prots.m7 - (BOOL) isEqual:(id) object;
65 - (BOOL)isEqual:x { return 1; }
Dincomplete-implementation.m46 - (BOOL)isEqual:(id)object;
61 - (BOOL)isEqual:(id)object
/external/libgdx/gdx/test/com/badlogic/gdx/math/
DIntersectorTest.java24 if (MathUtils.isEqual(base[b], comp[0]) && MathUtils.isEqual(base[b + 1], comp[1]) in triangleEquals()
25 && MathUtils.isEqual(base[b + 2], comp[2])) { in triangleEquals()
35 if (!MathUtils.isEqual(base[b], comp[c]) || !MathUtils.isEqual(base[b + 1], comp[c + 1]) in triangleEquals()
36 || !MathUtils.isEqual(base[b + 2], comp[c + 2])) { in triangleEquals()
/external/llvm/include/llvm/CodeGen/PBQP/
DCostAllocator.h70 bool isEqual(const ValueKeyT1 &C1, const ValueKeyT2 &C2) { in isEqual() function
75 static bool isEqual(const ValueKeyT &C, PoolEntry *P) { in isEqual() function
78 return isEqual(C, P->getValue()); in isEqual()
81 static bool isEqual(PoolEntry *P1, PoolEntry *P2) { in isEqual() function
84 return isEqual(P1->getValue(), P2); in isEqual()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
DPemHeader.java47 … return other == this || (isEqual(this.name, other.name) && isEqual(this.value, other.value)); in equals()
60 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/
DEncodedKeySpec2Test.java52 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/
Dfixit-nsstring-compare.m7 - (BOOL)isEqual:(id)object;
21 // CHECK: {16:28-16:30}:" isEqual:"
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
DMessageDigest2Test.java80 + 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()
DMessageDigest1Test.java194 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$()
DDigestInputStream2Test.java74 MessageDigest.isEqual(noChangeDigest.digest(), originalDigest in test_onZ()
86 !MessageDigest.isEqual(digest.digest(), changeDigest.digest())); in test_onZ()
/external/llvm/unittests/ADT/
DDenseSetTest.cpp37 static bool isEqual(const unsigned& LHS, const unsigned& RHS) { in isEqual() function
40 static bool isEqual(const char* LHS, const unsigned& RHS) { in isEqual() function
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/attributes/
DTextureAttribute.java188 if (!MathUtils.isEqual(scaleU, other.scaleU)) return scaleU > other.scaleU ? 1 : -1; in compareTo()
189 if (!MathUtils.isEqual(scaleV, other.scaleV)) return scaleV > other.scaleV ? 1 : -1; in compareTo()
190 if (!MathUtils.isEqual(offsetU, other.offsetU)) return offsetU > other.offsetU ? 1 : -1; in compareTo()
191 if (!MathUtils.isEqual(offsetV, other.offsetV)) return offsetV > other.offsetV ? 1 : -1; in compareTo()
DDepthTestAttribute.java102 if (!MathUtils.isEqual(depthRangeNear, other.depthRangeNear)) in compareTo()
104 if (!MathUtils.isEqual(depthRangeFar, other.depthRangeFar)) in compareTo()
/external/clang/include/clang/AST/
DTypeOrdering.h53 static bool isEqual(clang::QualType LHS, clang::QualType RHS) {
73 static bool isEqual(clang::CanQualType LHS, clang::CanQualType RHS) {
DASTTypeTraits.h104 static bool isEqual(const ASTNodeKind &LHS, const ASTNodeKind &RHS) { in isEqual() function
355 static bool isEqual(const DynTypedNode &LHS, const DynTypedNode &RHS) {
358 return (ASTNodeKind::DenseMapInfo::isEqual(LHS.NodeKind, Empty) &&
359 ASTNodeKind::DenseMapInfo::isEqual(RHS.NodeKind, Empty)) ||
360 (ASTNodeKind::DenseMapInfo::isEqual(LHS.NodeKind, TombStone) &&
361 ASTNodeKind::DenseMapInfo::isEqual(RHS.NodeKind, TombStone)) ||
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/environment/
DSpotLight.java127 … direction.equals(other.direction) && MathUtils.isEqual(intensity, other.intensity) && MathUtils.i… in equals()
128 other.cutoffAngle) && MathUtils.isEqual(exponent, other.exponent) ))); in equals()
/external/llvm/include/llvm/Linker/
DIRMover.h38 static bool isEqual(const KeyTy &LHS, const StructType *RHS);
39 static bool isEqual(const StructType *LHS, const StructType *RHS);
/external/clang/test/Sema/
Dblock-return.c60 …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/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
DAffine2Test.java144 check(MathUtils.isEqual(a.val[i], b.val[i], TOLERANCE), "matrices are not equal"); in checkEqual()
149 check(MathUtils.isEqual(matrix.val[i], vals[i], TOLERANCE), "matrices are not equal"); in checkEqual()
153 check(MathUtils.isEqual(a, b, TOLERANCE)); in checkEqual()

12345678