/system/core/sh/ |
mystring.h | 44 #define equal(s1, s2) (strcmp(s1, s2) == 0) macro
|
/bionic/libc/stdlib/ |
putenv.c | 37 char *p, *equal; local 42 if ((equal = strchr(p, '=')) == NULL) { 46 *equal = '\0'; 47 rval = setenv(p, equal + 1, 1);
|
/libcore/luni/src/main/java/libcore/util/ |
Objects.java | 23 * Returns true if two possibly-null objects are equal. 25 public static boolean equal(Object a, Object b) { method in class:Objects
|
/external/webkit/Source/WebCore/page/ |
SecurityOriginHash.h | 53 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());
|
/frameworks/base/core/java/com/android/internal/util/ |
Objects.java | 27 * Determines whether two possibly-null objects are equal. Returns: 32 * equal according to {@link Object#equals(Object)}. 39 public static boolean equal(Object a, Object b) { method in class:Objects 56 * does not equal the hash code of that object.
|
/external/clang/test/Preprocessor/ |
output_paste_avoid.c | 31 #define equal = macro 32 F: >>equal
|
/external/webkit/Source/JavaScriptCore/wtf/text/ |
AtomicStringHash.h | 43 static bool equal(const AtomicString& a, const AtomicString& b) function in struct:WTF::AtomicStringHash
|
StringHash.h | 44 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(a.impl(), b.impl()) 154 static bool equal(const AtomicString& a, const AtomicString& b) function in class:WTF::CaseFoldingHash [all...] |
/external/webkit/Source/WebCore/platform/ |
KURLHash.h | 41 static bool equal(const KURL& a, const KURL& b) function in struct:WebCore::KURLHash 43 return StringHash::equal(a.string(), b.string());
|
LinkHash.h | 41 static bool equal(LinkHash a, LinkHash b) { return a == b; } function in struct:WebCore::LinkHashHash
|
/external/bluetooth/glib/gio/ |
gicon.h | 50 * @equal: Checks if two #GIcon<!-- -->s are equal. 69 gboolean (* equal) (GIcon *icon1, member in struct:_GIconIface
|
/external/libvpx/vp8/encoder/ |
parms.cpp | 75 string equal; local 85 config_file >> equal; local 87 if(equal != "=")
|
/external/proguard/src/proguard/evaluation/value/ |
IdentifiedReferenceValue.java | 54 public int equal(ReferenceValue other) method in class:IdentifiedReferenceValue
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
arcsum.h | 81 ArcSumEqual<A> equal; local 83 if (equal(current_arc, arcs[i])) {
|
/external/valgrind/main/none/tests/x86/ |
bug126147-x86.c | 130 /* 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 (one+5, "fgh", 9) [all...] |
/external/webkit/Source/JavaScriptGlue/ |
JavaScriptGlue.h | 66 JSObjectEqualProcPtr equal; member in struct:JSObjectCallBacks
|
/external/webkit/Source/WebCore/platform/cf/ |
SchedulePair.h | 79 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/ |
IntPointHash.h | 32 static bool equal(const WebCore::IntPoint& a, const WebCore::IntPoint& b) { return a == b; } function in struct:WTF::IntPointHash
|
IntRectHash.h | 42 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());
|
IntSizeHash.h | 31 static bool equal(const WebCore::IntSize& a, const WebCore::IntSize& b) { return a == b; } function in struct:WTF::IntHash
|
/external/webkit/Source/WebCore/platform/network/ |
ProtectionSpaceHash.h | 52 static bool equal(const ProtectionSpace& a, const ProtectionSpace& b) { return a == b; } function in struct:WebCore::ProtectionSpaceHash
|
/external/webkit/Source/WebCore/svg/properties/ |
SVGAnimatedPropertyDescription.h | 75 static bool equal(const SVGAnimatedPropertyDescription& a, const SVGAnimatedPropertyDescription& b) function in struct:WebCore::SVGAnimatedPropertyDescriptionHash
|
/external/webkit/Source/WebKit/win/ |
WebKitCOMAPI.cpp | 40 static bool equal(const CLSID& a, const CLSID& b) { return ::IsEqualCLSID(a, b); } function in struct:CLSIDHash
|
/external/webkit/Source/JavaScriptCore/runtime/ |
Identifier.h | 76 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(a, b) [all...] |
/external/webkit/Source/JavaScriptCore/wtf/ |
HashFunctions.h | 91 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(a.second, b.second) [all...] |