Home
last modified time | relevance | path

Searched refs:equal (Results 1 – 25 of 460) sorted by relevance

12345678910>>...19

/external/valgrind/main/memcheck/tests/
Dstr_tester.c60 equal (const char *a, const char *b, int number) in equal() function
137 equal (one, "abcd", 2); /* Basic test. */ in test_strcpy()
140 equal (one, "x", 3); /* Writeover. */ in test_strcpy()
141 equal (one+2, "cd", 4); /* Wrote too much? */ in test_strcpy()
145 equal (one, "hi there", 5); /* Basic test encore. */ in test_strcpy()
146 equal (two, "hi there", 6); /* Stomped on source? */ in test_strcpy()
149 equal (one, "", 7); /* Boundary condition. */ in test_strcpy()
154 equal (one + i, "hi there", 8 + (i * 2)); in test_strcpy()
156 equal (two, "hi there", 9 + (i * 2)); in test_strcpy()
181 equal (dst, "frobozz", 2); in test_strcpy()
[all …]
/external/valgrind/main/none/tests/x86/
Dbug126147-x86.c132 equal (const char *a, const char *b, int number) in equal() function
147 equal (one, "abc", 2); /* Did the copy go right? */ in test_strncpy()
151 equal (one, "xycdefgh", 3); /* Copy cut by count. */ in test_strncpy()
155 equal (one, "xyzdefgh", 4); in test_strncpy()
159 equal (one, "xyz", 5); in test_strncpy()
160 equal (one+4, "efgh", 6); /* Wrote too much? */ in test_strncpy()
164 equal (one, "xyz", 7); in test_strncpy()
165 equal (one+4, "", 8); in test_strncpy()
166 equal (one+5, "fgh", 9); in test_strncpy()
170 equal (one, "abc", 10); in test_strncpy()
[all …]
/external/webkit/Source/WebCore/page/
DSecurityOriginHash.h53 static bool equal(SecurityOrigin* a, SecurityOrigin* b) in equal() function
61 return a->equal(b); in equal()
63 static bool equal(SecurityOrigin* a, const RefPtr<SecurityOrigin>& b) in equal() function
65 return equal(a, b.get()); in equal()
67 static bool equal(const RefPtr<SecurityOrigin>& a, SecurityOrigin* b) in equal() function
69 return equal(a.get(), b); in equal()
71 static bool equal(const RefPtr<SecurityOrigin>& a, const RefPtr<SecurityOrigin>& b) in equal() function
73 return equal(a.get(), b.get()); in equal()
/external/bluetooth/glib/gio/tests/
Dg-file.c30 gboolean equal; member
85 gboolean equal; in compare_two_files() local
101 equal = g_file_equal (file1, file2); in compare_two_files()
106 return equal; in compare_two_files()
134 gboolean equal = compare_two_files (FALSE, cmp_paths[i].path1, cmp_paths[i].path2); in test_g_file_new_for_path() local
135 g_assert_cmpint (equal, ==, cmp_paths[i].equal); in test_g_file_new_for_path()
163 gboolean equal = compare_two_files (TRUE, cmp_uris[i].path1, cmp_uris[i].path2); in test_g_file_new_for_uri() local
164 g_assert_cmpint (equal, ==, cmp_uris[i].equal); in test_g_file_new_for_uri()
175 gboolean equal; in dup_equals() local
188 equal = g_file_equal (file1, file2); in dup_equals()
[all …]
/external/webkit/Source/JavaScriptCore/wtf/text/
DStringHash.h44 static bool equal(const StringImpl* a, const StringImpl* b) in equal() function
84 static bool equal(const RefPtr<StringImpl>& a, const RefPtr<StringImpl>& b) in equal() function
86 return equal(a.get(), b.get()); in equal()
90 static bool equal(const String& a, const String& b) in equal() function
92 return equal(a.impl(), b.impl()); in equal()
120 static bool equal(const StringImpl* a, const StringImpl* b) in equal() function
137 static bool equal(const RefPtr<StringImpl>& a, const RefPtr<StringImpl>& b) in equal() function
139 return equal(a.get(), b.get()); in equal()
150 static bool equal(const String& a, const String& b) in equal() function
152 return equal(a.impl(), b.impl()); in equal()
[all …]
DAtomicString.cpp93 static bool equal(StringImpl* r, const char* s) in equal() function
120 return CStringTranslator::equal(impl, b); in operator ==()
138 static inline bool equal(StringImpl* string, const UChar* characters, unsigned length) in equal() function
173 return string.impl() && equal(string.impl(), vector.data(), vector.size()); in operator ==()
182 static bool equal(StringImpl* const& str, const UCharBuffer& buf) in equal() function
184 return WTF::equal(str, buf.s, buf.length); in equal()
208 static bool equal(StringImpl* const& string, const HashAndCharacters& buffer) in equal() function
210 return WTF::equal(string, buffer.characters, buffer.length); in equal()
234 static bool equal(StringImpl* const& string, const HashAndUTF8Characters& buffer) in equal() function
/external/valgrind/main/none/tests/amd64/
Dcmpxchg.stdout.exp2 al!=cl so al should equal cl (Result al=33 bl=44 cl=33)
4 al==cl so cl should equal bl (Result al=55 bl=55 cl=55)
6 ax!=cx so ax should equal cx (Result ax=3333 bx=4444 cx=3333)
8 ax==cx so cx should equal bx (Result ax=5555 bx=5555 cx=5555)
10 eax!=ecx so eax should equal ecx (Result eax=33333333 ebx=44444444 ecx=33333333)
12 eax==ecx so ecx should equal ebx (Result eax=55555555 ebx=55555555 ecx=55555555)
14 rax!=rcx so rax should equal rcx (Result rax=333333333 rbx=444444444 rcx=333333333)
16 rax==rcx so ecx should equal rbx (Result rax=555555555 rbx=555555555 rcx=555555555)
/external/e2fsprogs/lib/ext2fs/
Dtst_badblocks.c271 int equal; in main() local
319 equal = ext2fs_badblocks_equal(bb1, bb2); in main()
320 printf("bb1 and bb2 are %sequal.\n", equal ? "" : "NOT "); in main()
321 if (equal) in main()
324 equal = ext2fs_badblocks_equal(bb1, bb3); in main()
325 printf("bb1 and bb3 are %sequal.\n", equal ? "" : "NOT "); in main()
326 if (!equal) in main()
329 equal = ext2fs_badblocks_equal(bb1, bb4); in main()
330 printf("bb1 and bb4 are %sequal.\n", equal ? "" : "NOT "); in main()
331 if (equal) in main()
[all …]
/external/webkit/Source/JavaScriptCore/runtime/
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); } in equal() function
86 …static bool equal(const Identifier& a, const Identifier& b) { return a.m_string.impl() == b.m_stri… in equal() function
87 … static bool equal(const Identifier& a, const char* b) { return equal(a.m_string.impl(), b); } in equal() function
120 return Identifier::equal(a, b);
125 return !Identifier::equal(a, b);
130 return Identifier::equal(a, b);
135 return !Identifier::equal(a, b);
DUString.h191 static bool equal(const StringImpl* a, const StringImpl* b) in equal() function
231 static bool equal(const RefPtr<StringImpl>& a, const RefPtr<StringImpl>& b) in equal() function
233 return equal(a.get(), b.get()); in equal()
237 static bool equal(const UString& a, const UString& b) in equal() function
239 return equal(a.impl(), b.impl()); in equal()
DIdentifier.cpp70 bool Identifier::equal(const StringImpl* r, const char* s) in equal() function in JSC::Identifier
80 bool Identifier::equal(const StringImpl* r, const UChar* s, unsigned length) in equal() function in JSC::Identifier
97 static bool equal(StringImpl* r, const char* s) in equal() function
99 return Identifier::equal(r, s); in equal()
157 static bool equal(StringImpl* str, const UCharBuffer& buf) in equal() function
159 return Identifier::equal(str, buf.s, buf.length); in equal()
/external/icu4c/common/
Dtriedict.cpp53 TernaryNode *equal; // Equal link member
69 equal = NULL; in TernaryNode()
76 delete equal; in ~TernaryNode()
149 p = p->equal; in search()
188 parent->equal = newNode; in addWord()
269 UBool equal; in snext() local
281 equal = (node->equal != NULL); in snext()
286 if (equal || emit) { in snext()
290 if (equal) { in snext()
291 node = (TernaryNode *) fNodeStack.push(node->equal, status); in snext()
[all …]
/external/webkit/Source/JavaScriptCore/wtf/
DHashFunctions.h91 static bool equal(T a, T b) { return a == b; }
105 static bool equal(T a, T b) { return a == b; }
123 static bool equal(T a, T b) { return a == b; }
129 using PtrHash<P*>::equal;
130 static bool equal(const RefPtr<P>& a, const RefPtr<P>& b) { return a == b; }
131 static bool equal(P* a, const RefPtr<P>& b) { return a == b; }
132 static bool equal(const RefPtr<P>& a, P* b) { return a == b; }
144 static bool equal(const std::pair<T, U>& a, const std::pair<T, U>& b)
146 …return DefaultHash<T>::Hash::equal(a.first, b.first) && DefaultHash<U>::Hash::equal(a.second, b.se…
/external/apache-http/src/org/apache/http/conn/routing/
DRouteTracker.java335 boolean equal = this.targetHost.equals(that.targetHost); in equals()
336 equal &= in equals()
340 equal &= in equals()
346 equal &= in equals()
353 if (equal && (this.proxyChain != null)) { in equals()
354 for (int i=0; equal && (i<this.proxyChain.length); i++) in equals()
355 equal = this.proxyChain[i].equals(that.proxyChain[i]); in equals()
358 return equal; in equals()
DHttpRoute.java348 boolean equal = this.targetHost.equals(that.targetHost); in equals()
349 equal &= in equals()
353 equal &= in equals()
359 equal &= in equals()
365 if (equal && (this.proxyChain != null)) { in equals()
366 for (int i=0; equal && (i<this.proxyChain.length); i++) in equals()
367 equal = this.proxyChain[i].equals(that.proxyChain[i]); in equals()
370 return equal; in equals()
/external/proguard/src/proguard/evaluation/value/
DIntegerValue.java203 public abstract int equal(IntegerValue other); in equal() method in IntegerValue
227 return -equal(other); in notEqual()
435 public int equal(UnknownIntegerValue other) in equal() method in IntegerValue
437 return equal((IntegerValue)other); in equal()
469 return -equal(other); in notEqual()
679 public int equal(SpecificIntegerValue other) in equal() method in IntegerValue
681 return equal((IntegerValue)other); in equal()
713 return -equal(other); in notEqual()
923 public int equal(ParticularIntegerValue other) in equal() method in IntegerValue
925 return equal((SpecificIntegerValue)other); in equal()
[all …]
/external/webkit/Source/WebCore/plugins/
DPluginPackage.h68 static bool equal(const PluginPackage& a, const PluginPackage& b);
142 …static bool equal(const uintptr_t a, const uintptr_t b) { return equal(reinterpret_cast<PluginPack… in equal() function
143 …static bool equal(const RefPtr<PluginPackage>& a, const RefPtr<PluginPackage>& b) { return PluginP… in equal() function
/external/webkit/Source/WebCore/xml/
DXPathPredicate.cpp172 bool equal; in compare() local
174 equal = lhs.toBoolean() == rhs.toBoolean(); in compare()
176 equal = lhs.toNumber() == rhs.toNumber(); in compare()
178 equal = lhs.toString() == rhs.toString(); in compare()
181 return equal; in compare()
182 return !equal; in compare()
/external/webkit/Source/WebCore/platform/graphics/
DIntRectHash.h42 static bool equal(const WebCore::IntRect& a, const WebCore::IntRect& b)
44 …efaultHash<WebCore::IntPoint>::Hash::equal(a.location(), b.location()) && DefaultHash<WebCore::Int…
/external/chromium/chrome/browser/importer/
Dfirefox_importer_utils.cc109 size_t equal = line.find('='); in GetFirefoxVersionAndPathFromProfile() local
110 if (equal != std::string::npos) { in GetFirefoxVersionAndPathFromProfile()
111 std::string key = line.substr(0, equal); in GetFirefoxVersionAndPathFromProfile()
113 *version = line.substr(equal + 1)[0] - '0'; in GetFirefoxVersionAndPathFromProfile()
121 UTF8ToWide(line.substr(equal + 1))); in GetFirefoxVersionAndPathFromProfile()
157 size_t equal = line.find('='); in ParseProfileINI() local
158 if (equal != std::string::npos) { in ParseProfileINI()
159 key = line.substr(0, equal); in ParseProfileINI()
160 value = line.substr(equal + 1); in ParseProfileINI()
/external/stlport/test/unit/
Dequal_test.cpp135 CPPUNIT_ASSERT( !equal(numbers1, numbers1 + 5, numbers2) ); in equal0()
136 CPPUNIT_ASSERT( equal(numbers3, numbers3 + 2, numbers1) ); in equal0()
145 CPPUNIT_ASSERT( !equal(v1.begin(), v1.end(), v2.begin()) ); in equal1()
148 CPPUNIT_ASSERT( equal(v1.begin(), v1.end(), v2.begin()) ) in equal1()
159 CPPUNIT_ASSERT( equal(v1.begin(), v1.end(), v2.begin(), values_squared) ); in equal2()
/external/icu4c/i18n/
Dfmtable.cpp284 UBool equal = TRUE; in operator ==() local
287 equal = (fValue.fDate == that.fValue.fDate); in operator ==()
290 equal = (fValue.fDouble == that.fValue.fDouble); in operator ==()
294 equal = (fValue.fInt64 == that.fValue.fInt64); in operator ==()
297 equal = (*(fValue.fString) == *(that.fValue.fString)); in operator ==()
301 equal = FALSE; in operator ==()
307 equal = FALSE; in operator ==()
314 equal = FALSE; in operator ==()
316 equal = objectEquals(fValue.fObject, that.fValue.fObject); in operator ==()
322 return equal; in operator ==()
/external/llvm/lib/Target/X86/
DX86InstrCMovSetCC.td91 defm SETAE : SETCC<0x93, "setae", X86_COND_AE>; // unsigned greater or equal
92 defm SETE : SETCC<0x94, "sete", X86_COND_E>; // equal to
93 defm SETNE : SETCC<0x95, "setne", X86_COND_NE>; // not equal to
94 defm SETBE : SETCC<0x96, "setbe", X86_COND_BE>; // unsigned less than or equal
101 defm SETGE : SETCC<0x9D, "setge", X86_COND_GE>; // signed greater or equal
102 defm SETLE : SETCC<0x9E, "setle", X86_COND_LE>; // signed less than or equal
/external/clang/test/Preprocessor/
Doutput_paste_avoid.c31 #define equal = macro
32 F: >>equal
/external/webkit/Source/autotools/
Dacinclude.m423 # eq - equal (test A == B)
24 # ne - not equal (test A != B)
25 # le - less than or equal (test A <= B)
26 # ge - greater than or equal (test A >= B)
33 # eq0 - equal up to the length of the shorter version
34 # ne0 - not equal up to the length of the shorter version
35 # eqN - equal up to N sub-version levels
36 # neN - not equal up to N sub-version levels

12345678910>>...19