HomeSort by relevance Sort by last modified time
    Searched refs:isEqual (Results 1 - 25 of 179) sorted by null

1 2 3 4 5 6 7 8

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
PemHeader.java 38 return other == this || (isEqual(this.name, other.name) && isEqual(this.value, other.value));
51 private boolean isEqual(String s1, String s2)
  /external/llvm/include/llvm/ADT/
DenseMapInfo.h 27 //static bool isEqual(const T &LHS, const T &RHS);
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)
    [all...]
DenseMap.h 91 if (!KeyInfoT::isEqual(P->first, EmptyKey)) {
92 if (!KeyInfoT::isEqual(P->first, TombstoneKey)) {
125 /// getHashValue(LookupKeyT) and isEqual(LookupKeyT, KeyT) for each key
253 if (!KeyInfoT::isEqual(P->first, EmptyKey) &&
254 !KeyInfoT::isEqual(P->first, TombstoneKey))
282 if (!KeyInfoT::isEqual(B->first, EmptyKey) &&
283 !KeyInfoT::isEqual(B->first, TombstoneKey)) {
319 if (!KeyInfoT::isEqual(getBuckets()[i].first, getEmptyKey()) &&
320 !KeyInfoT::isEqual(getBuckets()[i].first, getTombstoneKey()))
448 if (!KeyInfoT::isEqual(TheBucket->first, EmptyKey)
    [all...]
ImmutableList.h 113 /// isEqual - Returns true if two lists are equal. Because all lists created
118 bool isEqual(const ImmutableList& L) const { return X == L.X; }
120 bool operator==(const ImmutableList& L) const { return isEqual(L); }
218 static bool isEqual(ImmutableList<T> X1, ImmutableList<T> X2) {
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
EncodedKeySpec2Test.java 52 isEqual(key, keys.getPublic()));
59 isEqual(key, keys.getPrivate()));
62 private boolean isEqual(Key key1, Key key2) {
  /libcore/luni/src/test/java/tests/security/spec/
EncodedKeySpec2Test.java 53 isEqual(key, keys.getPublic()));
60 isEqual(key, keys.getPrivate()));
63 private boolean isEqual(Key key1, Key key2) {
  /external/chromium_org/third_party/webrtc/modules/video_capture/ios/
device_info_ios_objc.mm 33 if ([uniqueId isEqual:device.uniqueID]) {
  /external/clang/include/clang/AST/
TypeOrdering.h 53 static bool isEqual(clang::QualType LHS, clang::QualType RHS) {
73 static bool isEqual(clang::CanQualType LHS, clang::CanQualType RHS) {
BaseSubobject.h 74 static bool isEqual(const clang::BaseSubobject &LHS,
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
RTCMediaStreamTrack.mm 57 - (BOOL)isEqual:(id)other {
66 return [self.label isEqual:otherMediaStream.label];
  /external/clang/test/Analysis/inlining/
InlineObjCInstanceMethod.h 11 @protocol NSObject - (BOOL)isEqual:(id)object; @end
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
SimPhoneBookTest.java 79 assertTrue(firstAdn.isEqual(tmpAdn));
88 assertFalse(firstAdn.isEqual(tmpAdn));
89 assertTrue(secondAdn.isEqual(tmpAdn));
107 assertTrue(originalAdn.isEqual(tmpAdn));
  /external/clang/test/Sema/
block-return.c 60 Boolean (^isEqual)(const CFBasicHash *, uintptr_t stack_value_or_key1, uintptr_t stack_value_or_key2, Boolean is_key);
68 cb.isEqual = ^(const CFBasicHash *table, uintptr_t stack_value_or_key1, uintptr_t stack_value_or_key2, Boolean is_key) {
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
MessageDigest1Test.java 186 * @tests java.security.MessageDigest#isEqual(byte[], byte[])
194 assertTrue(MessageDigest.isEqual(b1, b4));
195 assertFalse(MessageDigest.isEqual(b1, b2));
196 assertFalse(MessageDigest.isEqual(b1, b3));
MessageDigest2Test.java 80 + digestAlgs[i], MessageDigest.isEqual(d1.digest(), d2
224 assertTrue("bug in SHA", MessageDigest.isEqual(digest, MESSAGE_DIGEST));
232 assertTrue("bug in SHA", MessageDigest.isEqual(digest,
241 assertTrue("bug in SHA", MessageDigest.isEqual(digest,
250 assertTrue("bug in SHA", MessageDigest.isEqual(digest,
402 * @tests java.security.MessageDigest#isEqual(byte[], byte[])
405 assertTrue("isEqual is not correct", MessageDigest.isEqual(AR1, AR2));
DigestInputStream2Test.java 74 MessageDigest.isEqual(noChangeDigest.digest(), originalDigest
86 !MessageDigest.isEqual(digest.digest(), changeDigest.digest()));
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objctests/
RTCPeerConnectionTest.mm 71 return [session1.type isEqual:session2.type];
139 EXPECT_TRUE([offerDC.label isEqual:@"offerDC"]);
216 EXPECT_TRUE([offerSDP.type isEqual:pcOffer.localDescription.type]);
217 EXPECT_TRUE([answerSDP.type isEqual:pcOffer.remoteDescription.type]);
218 EXPECT_TRUE([offerSDP.type isEqual:pcAnswer.remoteDescription.type]);
219 EXPECT_TRUE([answerSDP.type isEqual:pcAnswer.localDescription.type]);
RTCPeerConnectionSyncObserver.m 174 NSAssert([expectedLabel isEqual:stream.label], @"Stream not expected");
181 NSAssert([expectedLabel isEqual:stream.label], @"Stream not expected");
221 NSAssert([expectedLabel isEqual:dataChannel.label],
245 NSAssert([expectedBuffer.data isEqual:buffer.data],
  /external/chromium_org/third_party/skia/include/gpu/
GrEffectStage.h 54 if (!(*this->getEffect())->isEqual(*other.getEffect())) {
164 bool isEqual(const GrEffectStage& stage, bool ignoreCoordChange) const {
170 if (!(*stage.getEffect())->isEqual(*fEffect)) {
  /external/skia/include/gpu/
GrEffectStage.h 54 if (!(*this->getEffect())->isEqual(*other.getEffect())) {
164 bool isEqual(const GrEffectStage& stage, bool ignoreCoordChange) const {
170 if (!(*stage.getEffect())->isEqual(*fEffect)) {
  /external/llvm/lib/IR/
LLVMContextImpl.h 67 static bool isEqual(const KeyTy &LHS, const KeyTy &RHS) {
95 static bool isEqual(const KeyTy &LHS, const KeyTy &RHS) {
134 static bool isEqual(const KeyTy& LHS, const StructType *RHS) {
139 static bool isEqual(const StructType *LHS, const StructType *RHS) {
183 static bool isEqual(const KeyTy& LHS, const FunctionType *RHS) {
188 static bool isEqual(const FunctionType *LHS, const FunctionType *RHS) {
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKey.h 76 if (array[i]->isEqual(result[j].get())) {
144 bool isEqual(const IDBKey* other) const;
IDBKey.cpp 104 bool IDBKey::isEqual(const IDBKey* other) const
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
AMutableDictionary.h 42 - (BOOL) isEqual:(id)object;
  /external/guava/guava/src/com/google/common/hash/
HashCode.java 82 return MessageDigest.isEqual(this.asBytes(), that.asBytes());

Completed in 903 milliseconds

1 2 3 4 5 6 7 8