Searched defs:equal (Results 1 - 25 of 106) sorted by relevance

12345

/external/webkit/Source/WebCore/page/
H A DSecurityOriginHash.h53 static bool equal(SecurityOrigin* a, SecurityOrigin* b) function in struct:WebCore::SecurityOriginHash
58 // equal without changing hash to match it.
61 return a->equal(b);
63 static bool equal(SecurityOrigin* a, const RefPtr<SecurityOrigin>& b) function in struct:WebCore::SecurityOriginHash
65 return equal(a, b.get());
67 static bool equal(const RefPtr<SecurityOrigin>& a, SecurityOrigin* b) function in struct:WebCore::SecurityOriginHash
69 return equal(a.get(), b);
71 static bool equal(const RefPtr<SecurityOrigin>& a, const RefPtr<SecurityOrigin>& b) function in struct:WebCore::SecurityOriginHash
73 return equal(a.get(), b.get());
/external/clang/test/Preprocessor/
H A Doutput_paste_avoid.cpp31 #define equal = macro
32 F: >>equal
/external/clang/test/SemaCXX/
H A Dbuiltins.cpp13 int equal(const char *s1, const char *s2) { function
17 template int equal<&__builtin_strcmp>(const char*, const char*); // expected-error {{builtin functions must be directly called}} expected-error {{expected unqualified-id}} expected-error {{expected ')'}} expected-note {{to match this '('}}
/external/proguard/src/proguard/evaluation/value/
H A DIdentifiedReferenceValue.java54 public int equal(ReferenceValue other) method in class:IdentifiedReferenceValue
/external/skia/tests/
H A DStrokeTest.cpp14 static bool equal(const SkRect& a, const SkRect& b) { function
44 REPORTER_ASSERT(reporter, equal(outer, fillPath.getBounds()));
52 REPORTER_ASSERT(reporter, equal(nested[0], outer));
53 REPORTER_ASSERT(reporter, equal(nested[1], inner));
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Darcsum.h81 ArcSumEqual<A> equal; local
83 if (equal(current_arc, arcs[i])) {
/external/valgrind/main/none/tests/x86/
H A Dbug126147-x86.c130 /* Complain if first two args don't strcmp as equal. */
132 equal (const char *a, const char *b, int number) function
147 equal (one, "abc", 2); /* Did the copy go right? */
151 equal (one, "xycdefgh", 3); /* Copy cut by count. */
155 equal (one, "xyzdefgh", 4);
159 equal (one, "xyz", 5);
160 equal (one+4, "efgh", 6); /* Wrote too much? */
164 equal (one, "xyz", 7);
165 equal (one+4, "", 8);
166 equal (on
[all...]
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DAtomicStringHash.h43 static bool equal(const AtomicString& a, const AtomicString& b) function in struct:WTF::AtomicStringHash
H A DStringHash.h44 static bool equal(const StringImpl* a, const StringImpl* b) function in struct:WTF::StringHash
84 static bool equal(const RefPtr<StringImpl>& a, const RefPtr<StringImpl>& b) function in struct:WTF::StringHash
86 return equal(a.get(), b.get());
90 static bool equal(const String& a, const String& b) function in struct:WTF::StringHash
92 return equal(a.impl(), b.impl());
120 static bool equal(const StringImpl* a, const StringImpl* b) function in class:WTF::CaseFoldingHash
137 static bool equal(const RefPtr<StringImpl>& a, const RefPtr<StringImpl>& b) function in class:WTF::CaseFoldingHash
139 return equal(a.get(), b.get());
150 static bool equal(const String& a, const String& b) function in class:WTF::CaseFoldingHash
152 return equal(
154 static bool equal(const AtomicString& a, const AtomicString& b) function in class:WTF::CaseFoldingHash
[all...]
/external/webkit/Source/JavaScriptGlue/
H A DJavaScriptGlue.h66 JSObjectEqualProcPtr equal; member in struct:JSObjectCallBacks
/external/webkit/Source/WebCore/platform/
H A DKURLHash.h41 static bool equal(const KURL& a, const KURL& b) function in struct:WebCore::KURLHash
43 return StringHash::equal(a.string(), b.string());
H A DLinkHash.h41 static bool equal(LinkHash a, LinkHash b) { return a == b; } function in struct:WebCore::LinkHashHash
H A DCookie.h68 static bool equal(Cookie a, Cookie b) function in struct:WebCore::CookieHash
/external/webkit/Source/WebCore/platform/network/
H A DProtectionSpaceHash.h52 static bool equal(const ProtectionSpace& a, const ProtectionSpace& b) { return a == b; } function in struct:WebCore::ProtectionSpaceHash
H A DHTTPHeaderMap.cpp87 static bool equal(const AtomicString& key, const char* cString) function in struct:WebCore::CaseFoldingCStringTranslator
/external/v8/test/cctest/
H A Dlog-eq-of-logging-and-traversal.js138 var equal = true; variable
163 if (!entities_equal) equal = false;
166 return [equal, comparison];
/external/webkit/Source/WebCore/platform/cf/
H A DSchedulePair.h79 static bool equal(const RefPtr<SchedulePair>& a, const RefPtr<SchedulePair>& b) { return a == b; } function in struct:WebCore::SchedulePairHash
/external/webkit/Source/WebCore/platform/graphics/
H A DIntPointHash.h32 static bool equal(const WebCore::IntPoint& a, const WebCore::IntPoint& b) { return a == b; } function in struct:WTF::IntPointHash
H A DIntRectHash.h42 static bool equal(const WebCore::IntRect& a, const WebCore::IntRect& b) function in struct:WTF::IntHash
44 return DefaultHash<WebCore::IntPoint>::Hash::equal(a.location(), b.location()) && DefaultHash<WebCore::IntSize>::Hash::equal(a.size(), b.size());
H A DIntSizeHash.h31 static bool equal(const WebCore::IntSize& a, const WebCore::IntSize& b) { return a == b; } function in struct:WTF::IntHash
/external/webkit/Source/WebCore/svg/properties/
H A DSVGAnimatedPropertyDescription.h75 static bool equal(const SVGAnimatedPropertyDescription& a, const SVGAnimatedPropertyDescription& b) function in struct:WebCore::SVGAnimatedPropertyDescriptionHash
/external/guava/guava/src/com/google/common/base/
H A DObjects.java38 * Determines whether two possibly-null objects are equal. Returns:
43 * equal according to {@link Object#equals(Object)}.
50 public static boolean equal(@Nullable Object a, @Nullable Object b) { method in class:Objects
67 * does not equal the hash code of that object.
/external/webkit/Source/JavaScriptCore/runtime/
H A DIdentifier.h76 static bool equal(const StringImpl*, const char*);
77 static bool equal(const StringImpl*, const UChar*, unsigned length);
78 static bool equal(const StringImpl* a, const StringImpl* b) { return ::equal(a, b); } function in class:JSC::Identifier
86 static bool equal(const Identifier& a, const Identifier& b) { return a.m_string.impl() == b.m_string.impl(); } function in class:JSC::Identifier
87 static bool equal(const Identifier& a, const char* b) { return equal(a.m_string.impl(), b); } function in class:JSC::Identifier
120 return Identifier::equal(a, b);
125 return !Identifier::equal(a, b);
130 return Identifier::equal(
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A DHashFunctions.h91 static bool equal(T a, T b) { return a == b; } function in struct:WTF::IntHash
105 static bool equal(T a, T b) { return a == b; } function in struct:WTF::FloatHash
123 static bool equal(T a, T b) { return a == b; } function in struct:WTF::PtrHash
129 using PtrHash<P*>::equal;
130 static bool equal(const RefPtr<P>& a, const RefPtr<P>& b) { return a == b; } function in struct:WTF::PtrHash
131 static bool equal(P* a, const RefPtr<P>& b) { return a == b; } function in struct:WTF::PtrHash
132 static bool equal(const RefPtr<P>& a, P* b) { return a == b; } function in struct:WTF::PtrHash
144 static bool equal(const std::pair<T, U>& a, const std::pair<T, U>& b) function in struct:WTF::PairHash
146 return DefaultHash<T>::Hash::equal(a.first, b.first) && DefaultHash<U>::Hash::equal(
[all...]
/external/webkit/Source/WebCore/dom/
H A DQualifiedName.cpp42 static bool equal(QualifiedName::QualifiedNameImpl* name, const QualifiedNameComponents& c) function in struct:WebCore::QNameComponentsTranslator

Completed in 445 milliseconds

12345