/external/libcxx/test/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator_equal/ |
D | equal.pass.cpp | 30 assert( i1.equal(i1)); in main() 31 assert( i1.equal(i2)); in main() 32 assert(!i1.equal(i3)); in main() 33 assert(!i1.equal(i4)); in main() 35 assert( i2.equal(i1)); in main() 36 assert( i2.equal(i2)); in main() 37 assert(!i2.equal(i3)); in main() 38 assert(!i2.equal(i4)); in main() 40 assert(!i3.equal(i1)); in main() 41 assert(!i3.equal(i2)); in main() [all …]
|
/external/valgrind/main/memcheck/tests/ |
D | str_tester.c | 60 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/chromium_org/third_party/WebKit/Tools/qunit/test/ |
D | logs.js | 57 equal(begin, 1); 58 equal(moduleStart, 1); 59 equal(testStart, 1); 60 equal(testDone, 0); 61 equal(moduleDone, 0); 69 equal("foo", "foo", "msg"); 85 equal(log, 12); 88 equal(begin, 1); 89 equal(moduleStart, 1); 90 equal(testStart, 2); [all …]
|
/external/valgrind/main/none/tests/s390x/ |
D | cij.stdout.exp | 1 not equal 2 equal 3 not equal 4 not equal 5 equal 6 not equal 7 less or equal 8 less or equal 11 greater or equal 12 greater or equal [all …]
|
D | crj.stdout.exp | 1 not equal 2 equal 3 not equal 4 not equal 5 equal 6 not equal 7 less or equal 8 less or equal 11 greater or equal 12 greater or equal [all …]
|
D | clrj.stdout.exp | 1 not equal 2 equal 3 not equal 4 not equal 5 equal 6 not equal 7 less or equal 8 less or equal 11 greater or equal 12 greater or equal [all …]
|
D | cgij.stdout.exp | 1 not equal 2 equal 3 not equal 4 not equal 5 equal 6 not equal 7 less or equal 8 less or equal 11 greater or equal 12 greater or equal [all …]
|
D | clgrj.stdout.exp | 1 not equal 2 equal 3 not equal 4 not equal 5 equal 6 not equal 7 less or equal 8 less or equal 11 greater or equal 12 greater or equal [all …]
|
D | clij.stdout.exp | 1 not equal 2 equal 3 not equal 4 not equal 5 equal 6 not equal 7 less or equal 8 less or equal 11 greater or equal 12 greater or equal [all …]
|
D | clgij.stdout.exp | 1 not equal 2 equal 3 not equal 4 not equal 5 equal 6 not equal 7 less or equal 8 less or equal 11 greater or equal 12 greater or equal [all …]
|
D | cgrj.stdout.exp | 1 not equal 2 equal 3 not equal 4 not equal 5 equal 6 not equal 7 less or equal 8 less or equal 11 greater or equal 12 greater or equal [all …]
|
D | clst.stdout.exp | 11 comparing: equal with equal sentinel = 0 12 str1 = equal 13 str2 = equal 16 comparing: equal with equallong sentinel = 0 21 comparing: equallong with equal sentinel = 0
|
/external/valgrind/main/none/tests/x86/ |
D | bug126147-x86.c | 132 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/chromium_org/third_party/WebKit/Source/wtf/text/ |
D | StringHash.h | 46 static inline bool equal(const StringImpl* a, const StringImpl* b) in equal() function 52 static bool equal(const RefPtr<StringImpl>& a, const RefPtr<StringImpl>& b) in equal() function 54 return equal(a.get(), b.get()); in equal() 58 static bool equal(const String& a, const String& b) in equal() function 60 return equal(a.impl(), b.impl()); in equal() 95 static inline bool equal(const StringImpl* a, const StringImpl* b) in equal() function 105 static bool equal(const RefPtr<StringImpl>& a, const RefPtr<StringImpl>& b) in equal() function 107 return equal(a.get(), b.get()); in equal() 118 static bool equal(const String& a, const String& b) in equal() function 120 return equal(a.impl(), b.impl()); in equal() [all …]
|
D | StringBuilder.h | 323 bool equal(const StringBuilder& s, const CharType* buffer, unsigned length) in equal() function 329 return equal(s.characters8(), buffer, length); in equal() 331 return equal(s.characters16(), buffer, length); in equal() 352 bool equal(const StringBuilder& a, const StringType& b) in equal() function 362 return equal(a.characters8(), b.characters8(), a.length()); in equal() 363 return equal(a.characters8(), b.characters16(), a.length()); in equal() 367 return equal(a.characters16(), b.characters8(), a.length()); in equal() 368 return equal(a.characters16(), b.characters16(), a.length()); in equal() 391 inline bool operator==(const StringBuilder& a, const StringBuilder& b) { return equal(a, b); } 392 inline bool operator!=(const StringBuilder& a, const StringBuilder& b) { return !equal(a, b); } [all …]
|
/external/libcxx/test/algorithms/alg.nonmodifying/alg.equal/ |
D | equal.pass.cpp | 31 assert(std::equal(input_iterator<const int*>(ia), in main() 35 assert(std::equal(input_iterator<const int*>(ia), in main() 39 assert(std::equal(random_access_iterator<const int*>(ia), in main() 44 assert(!std::equal(input_iterator<const int*>(ia), in main() 48 assert(!std::equal(input_iterator<const int*>(ia), in main() 52 assert(!std::equal(random_access_iterator<const int*>(ia), in main() 56 assert(!std::equal(input_iterator<const int*>(ia), in main() 60 assert(!std::equal(random_access_iterator<const int*>(ia), in main()
|
D | equal_pred.pass.cpp | 40 assert(std::equal(input_iterator<const int*>(ia), in main() 45 assert(std::equal(input_iterator<const int*>(ia), in main() 50 assert(std::equal(random_access_iterator<const int*>(ia), in main() 57 assert(!std::equal(input_iterator<const int*>(ia), in main() 64 assert(!std::equal(random_access_iterator<const int*>(ia), in main() 71 assert(!std::equal(input_iterator<const int*>(ia), in main() 76 assert(!std::equal(input_iterator<const int*>(ia), in main() 81 assert(!std::equal(random_access_iterator<const int*>(ia), in main()
|
D | Android.mk | 17 test_makefile := external/libcxx/test/algorithms/alg.nonmodifying/alg.equal/Android.mk 19 test_name := algorithms/alg.nonmodifying/alg.equal/equal_pred 23 test_name := algorithms/alg.nonmodifying/alg.equal/equal 24 test_src := equal.pass.cpp
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
D | HashFunctions.h | 105 static bool equal(T a, T b) { return a == b; } 115 static bool equal(T a, T b) 136 static bool equal(T a, T b) { return a == b; } 137 static bool equal(std::nullptr_t, T b) { return b == 0; } 138 static bool equal(T a, std::nullptr_t) { return a == 0; } 145 using PtrHash<P*>::equal; 146 static bool equal(const RefPtr<P>& a, const RefPtr<P>& b) { return a == b; } 147 static bool equal(P* a, const RefPtr<P>& b) { return a == b; } 148 static bool equal(const RefPtr<P>& a, P* b) { return a == b; } 149 static bool equal(const RefPtr<P>& a, const PassRefPtr<P>& b) { return a == b; } [all …]
|
/external/valgrind/main/none/tests/amd64/ |
D | cmpxchg.stdout.exp | 2 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/chromium_org/third_party/WebKit/Source/platform/weborigin/ |
D | SecurityOriginHash.h | 53 static bool equal(SecurityOrigin* a, SecurityOrigin* b) in equal() function 72 static bool equal(SecurityOrigin* a, const RefPtr<SecurityOrigin>& b) in equal() function 74 return equal(a, b.get()); in equal() 76 static bool equal(const RefPtr<SecurityOrigin>& a, SecurityOrigin* b) in equal() function 78 return equal(a.get(), b); in equal() 80 static bool equal(const RefPtr<SecurityOrigin>& a, const RefPtr<SecurityOrigin>& b) in equal() function 82 return equal(a.get(), b.get()); in equal()
|
/external/chromium_org/v8/test/mjsunit/regress/ |
D | internalized-string-not-equal.js | 32 function equal(o1, o2) { function 37 equal(a, b); 38 equal(a, b); 39 %OptimizeFunctionOnNextCall(equal); 40 assertTrue(equal(1.3, 1.3));
|
/external/e2fsprogs/lib/ext2fs/ |
D | tst_badblocks.c | 271 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/chromium_org/remoting/webapp/unittests/ |
D | l10n_unittest.js | 20 equal(translation, 'non_existent_tag'); 30 equal(element.innerHTML, '<b>Hello World</b>'); 40 equal(element.innerHTML, '<b>Hello World</b>'); 53 equal(element.innerHTML, '<b>Hello World</b>'); 67 equal(target.title, 'localized title'); 85 equal(target.innerText, 'localized'); 102 equal(target.innerText, 'localized');
|
/external/guava/guava-tests/test/com/google/common/base/ |
D | ObjectsTest.java | 33 assertTrue(Objects.equal(1, 1)); in testEqual() 34 assertTrue(Objects.equal(null, null)); in testEqual() 39 assertTrue(Objects.equal(s1, s2)); in testEqual() 41 assertFalse(Objects.equal(s1, null)); in testEqual() 42 assertFalse(Objects.equal(null, s1)); in testEqual() 43 assertFalse(Objects.equal("foo", "bar")); in testEqual() 44 assertFalse(Objects.equal("1", 1)); in testEqual()
|