/external/valgrind/memcheck/tests/ |
unit_libcbase.c | 52 CHECK( ! VG_STREQ("abc", "abcd")); 53 CHECK( ! VG_STREQ("abcd", "abc") ); 54 CHECK( ! VG_STREQ("Abcd", "abcd")); 55 CHECK( ! VG_STREQ("abcd", "Abcd")); 59 CHECK( VG_STREQ("abcd", "abcd") ); 71 CHECK( ! VG_STREQN(4, "abc", "abcd")); 72 CHECK( ! VG_STREQN(4, "abcd", "abc") ) [all...] |
/external/pcre/dist2/testdata/ |
testoutput6 | 68 /(a|abcd|african)/ 71 abcd 72 0: abcd 250 abcd 444 /^[abcd]\d/ 456 abcd 463 /^[abcd]*\d/ 479 abcd 482 /^[abcd]+\d/ 498 abcd [all...] |
testoutput17 | 28 /abcd/I 34 abcd 35 0: abcd (JIT) 40 /(*NO_JIT)abcd/I 46 abcd 47 0: abcd 52 /abcd/ 53 abcd 54 0: abcd (JIT) 63 /abcd/jitfas [all...] |
testinput18 | 100 /abcd/substitute_extended
|
/libcore/luni/src/test/java/libcore/java/lang/ |
StringTest.java | 650 assertGetCharsThrowsAIOOBException("abcd", 0, 4, new char[0], -4); 654 "abcd".getChars(0, 1, dst, 0); 656 "abcd".getChars(3, 4, dst, 0); 659 "abcd".getChars(0, 4, dst, 0); 660 assertTrue(Arrays.equals("abcd".toCharArray(), dst)); 663 "abcd".getChars(0, 0, new char[0], 0); // dstBegin == 0 is ok if copying zero chars 664 "abcd".getChars(0, 0, new char[1], 1); // dstBegin == 1 is ok if copying zero chars 666 "abcd".getChars(1, 1, new char[1], 0); 667 "abcd".getChars(1, 1, new char[1], 1); 670 assertGetCharsThrowsAIOOBException("abcd", 3, 4, new char[1], 1); // Out of range dstBegi [all...] |
/device/linaro/bootloader/edk2/MdePkg/Library/PeiMemoryLib/ |
PeiMemoryLib.inf | 23 FILE_GUID = 3a9759d2-53bc-4eb2-abcd-c93099419063
|
/external/clang/test/PCH/ |
changed-files.c | 24 // RUN: echo "#define m1 'abcd'" >> %t.h
|
/external/cmockery/cmockery_0_1_2/src/example/ |
customer_database.c | 25 return connect_to_database("customers.abcd.org", 321);
|
/external/dhcpcd-6.8.2/crypt/ |
md5.h | 25 uint32_t state[4]; /* state (ABCD) */
|
/external/guava/guava-tests/test/com/google/common/io/ |
PackageSanityTests.java | 34 setDefault(String.class, "abcd");
|
/external/honggfuzz/examples/apache-httpd/corpus_http1/ |
153e11ccd7f1593088deeaed3fda716b.00001cb3.honggfuzz.cov | 4 Host:[200::Abcd:abc%:e1]
|
184735e5908e888b6c9f783a8bfb8851.00001388.honggfuzz.cov | 1 GET /dir/?P=[h00If%Accept-Language:Matcht\6rs?d:abcd<:1]eive
|
fea17cc7e71e6b1e32fd3dae869690a9.00000565.honggfuzz.cov | 1 PRCON HTTP://[2002.2??T`abcd::1]Ihx.html HTTP/1.1
|
/external/honggfuzz/examples/apache-httpd/corpus_http2/ |
153e11ccd7f1593088deeaed3fda716b.00001cb3.honggfuzz.cov | 4 Host:[200::Abcd:abc%:e1]
|
184735e5908e888b6c9f783a8bfb8851.00001388.honggfuzz.cov | 1 GET /dir/?P=[h00If%Accept-Language:Matcht\6rs?d:abcd<:1]eive
|
fea17cc7e71e6b1e32fd3dae869690a9.00000565.honggfuzz.cov | 1 PRCON HTTP://[2002.2??T`abcd::1]Ihx.html HTTP/1.1
|
/external/libcxx/test/std/strings/basic.string/string.modifiers/string_assign/ |
T_size_size.pass.cpp | 141 std::string s = "ABCD"; 175 std::string s = "ABCD"; 178 assert(s == "ABCD"); 182 assert(s == "ABCD");
|
/external/libjpeg-turbo/md5/ |
md5.h | 37 unsigned int state[4]; /* state (ABCD) */
|
/external/llvm/lib/Fuzzer/test/ |
MemcmpTest.cpp | 13 if (Size >= 12 && memcmp(Data + 8, "ABCD", 4) == 0) {
|
/external/swiftshader/src/Renderer/ |
Plane.hpp | 33 Plane(const float ABCD[4]);
|
/external/syslinux/com32/libutil/include/ |
md5.h | 35 uint32_t state[4]; /* state (ABCD) */
|
/prebuilts/go/darwin-x86/src/os/exec/ |
internal_test.go | 31 want: "abcd",
|
/prebuilts/go/darwin-x86/src/regexp/ |
find_test.go | 32 {"abcd..", "abcdef", build(1, 0, 6)}, 40 {`^abcd$`, "abcd", build(1, 0, 4)}, 42 {`^abcd$`, "abcde", nil}, 45 {`[a-z]+`, "abcd", build(1, 0, 4)}, 48 {`[^\n]+`, "abcd\n", build(1, 0, 4)}, 56 {`(.*)`, "abcd", build(1, 0, 4, 0, 4)}, 57 {`(..)(..)`, "abcd", build(1, 0, 4, 0, 2, 2, 4)}, 58 {`(([^xyz]*)(d))`, "abcd", build(1, 0, 4, 0, 4, 0, 3, 3, 4)}, 59 {`((a|b|c)*(d))`, "abcd", build(1, 0, 4, 0, 4, 2, 3, 3, 4)} [all...] |
/prebuilts/go/linux-x86/src/os/exec/ |
internal_test.go | 31 want: "abcd",
|
/prebuilts/go/linux-x86/src/regexp/ |
find_test.go | 32 {"abcd..", "abcdef", build(1, 0, 6)}, 40 {`^abcd$`, "abcd", build(1, 0, 4)}, 42 {`^abcd$`, "abcde", nil}, 45 {`[a-z]+`, "abcd", build(1, 0, 4)}, 48 {`[^\n]+`, "abcd\n", build(1, 0, 4)}, 56 {`(.*)`, "abcd", build(1, 0, 4, 0, 4)}, 57 {`(..)(..)`, "abcd", build(1, 0, 4, 0, 2, 2, 4)}, 58 {`(([^xyz]*)(d))`, "abcd", build(1, 0, 4, 0, 4, 0, 3, 3, 4)}, 59 {`((a|b|c)*(d))`, "abcd", build(1, 0, 4, 0, 4, 2, 3, 3, 4)} [all...] |