/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);
|
/external/skia/tests/ |
PathOpsTypesTest.cpp | 18 bool equal = RoughlyEqualUlps(roughlyTests[index][0], roughlyTests[index][1]); local 19 REPORTER_ASSERT(reporter, equal);
|
StrokeTest.cpp | 15 static bool equal(const SkRect& a, const SkRect& b) { function 45 REPORTER_ASSERT(reporter, equal(outer, fillPath.getBounds())); 53 REPORTER_ASSERT(reporter, equal(nested[0], outer)); 54 REPORTER_ASSERT(reporter, equal(nested[1], inner));
|
/packages/inputmethods/LatinIME/tools/dicttool/compat/android/test/ |
MoreAsserts.java | 28 if (equal(unexpected, actual)) { 32 private static boolean equal(Object a, Object b) { method in class:MoreAsserts
|
/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/chromium_org/third_party/WebKit/Source/core/dom/custom/ |
CustomElementDescriptorHash.h | 47 static bool equal(const CustomElementDescriptor& a, const CustomElementDescriptor& b) function in struct:WebCore::CustomElementDescriptorHash
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
LinkHash.h | 42 static bool equal(LinkHash a, LinkHash b) { return a == b; } function in struct:WebCore::LinkHashHash
|
/external/chromium_org/third_party/WebKit/Source/platform/weborigin/ |
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());
|
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());
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/range/algorithm/ |
equal.hpp | 37 // the end of the loop. They are equal if and only if we have 48 // continue looping if and only if the values are equal 77 // the end of the loop. They are equal if and only if we have 88 // continue looping if and only if the values are equal 113 && std::equal(first1, last1, first2); 126 && std::equal(first1, last1, first2, pred); 131 inline bool equal( SinglePassTraversalReadableIterator1 first1, function in namespace:boost::range_detail 145 inline bool equal( SinglePassTraversalReadableIterator1 first1, function in namespace:boost::range_detail 162 /// \brief template function equal 164 /// range-based version of the equal std algorith 170 inline bool equal( const SinglePassRange1& rng1, const SinglePassRange2& rng2 ) function in namespace:boost::range 182 inline bool equal( const SinglePassRange1& rng1, const SinglePassRange2& rng2, function in namespace:boost::range [all...] |
/external/chromium_org/base/ |
ini_parser.cc | 40 size_t equal = line.find('='); local 41 if (equal != std::string::npos) { 42 key = line.substr(0, equal); 43 value = line.substr(equal + 1);
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
DOMNamedFlowCollection.cpp | 78 static bool equal(PassRefPtr<NamedFlow> a, PassRefPtr<NamedFlow> b) { return a->name() == b->name(); } function in struct:WebCore::DOMNamedFlowCollection::DOMNamedFlowHashFunctions 85 static bool equal(PassRefPtr<NamedFlow> a, const String& b) { return a->name() == b; } function in struct:WebCore::DOMNamedFlowCollection::DOMNamedFlowHashTranslator
|
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/ |
SVGAnimatedPropertyDescription.h | 75 static bool equal(const SVGAnimatedPropertyDescription& a, const SVGAnimatedPropertyDescription& b) function in struct:WebCore::SVGAnimatedPropertyDescriptionHash
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/ |
FontDataCache.h | 49 static bool equal(const FontPlatformData& a, const FontPlatformData& b) function in struct:WebCore::FontDataCacheKeyHash
|
/external/chromium_org/third_party/WebKit/Source/platform/geometry/ |
IntSizeHash.h | 31 static bool equal(const WebCore::IntSize& a, const WebCore::IntSize& b) { return a == b; } function in struct:WTF::IntHash
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/ |
SkSizeHash.h | 38 static bool equal(const SkSize& a, const SkSize& b) { return a == b; } function in struct:WTF::IntHash 62 static bool equal(const SkISize& a, const SkISize& b) { return a == b; } function in struct:WTF::IntHash
|
/external/chromium_org/third_party/WebKit/Source/wtf/text/ |
AtomicStringHash.h | 43 static bool equal(const AtomicString& a, const AtomicString& b) function in struct:WTF::AtomicStringHash
|
StringHash.h | 46 static inline bool equal(const StringImpl* a, const StringImpl* b) function in struct:WTF::StringHash 52 static bool equal(const RefPtr<StringImpl>& a, const RefPtr<StringImpl>& b) function in struct:WTF::StringHash 54 return equal(a.get(), b.get()); 58 static bool equal(const String& a, const String& b) function in struct:WTF::StringHash 60 return equal(a.impl(), b.impl()); 95 static inline bool equal(const StringImpl* a, const StringImpl* b) function in class:WTF::CaseFoldingHash 105 static bool equal(const RefPtr<StringImpl>& a, const RefPtr<StringImpl>& b) function in class:WTF::CaseFoldingHash 107 return equal(a.get(), b.get()); 118 static bool equal(const String& a, const String& b) function in class:WTF::CaseFoldingHash 120 return equal(a.impl(), b.impl()) 122 static bool equal(const AtomicString& a, const AtomicString& b) function in class:WTF::CaseFoldingHash [all...] |
/external/chromium_org/ui/base/gtk/ |
g_object_destructor_filo.h | 64 bool equal(GObject* o, DestructorHook cb, void* ctx) const { function in struct:ui::GObjectDestructorFILO::Hook
|
/external/clang/test/Preprocessor/ |
output_paste_avoid.cpp | 31 #define equal = macro 32 F: >>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...] |
/libcore/luni/src/main/java/libcore/util/ |
Objects.java | 27 * Returns true if two possibly-null objects are equal. 29 public static boolean equal(Object a, Object b) { method in class:Objects
|