/external/icu/icu4c/source/test/testdata/ |
icuio.txt | 147 { "%x", "abcd ef01", "4", "abcd" } 148 { "%3x", "abcd ef01", "4", "abc" } 149 { "%*hx%hx", "abcd ef01", "2", "ef01" } 157 { "%[abce]", "abcd ef01", "S", "abc" } 158 { "%*[abce]%[de\\ ]", "abcd ef01", "S", "d e" } 166 { "%*3S%S", "abcd efg", "S", "d" } 167 { "%*3s%s", "abcd efg", "s", "d" }
|
/external/libcxx/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.cons/ |
ccp_size.pass.cpp | 22 const char buf[] = "abcd"; 32 const char buf[] = "abcd";
|
cscp_size.pass.cpp | 22 const signed char buf[] = "abcd"; 32 const signed char buf[] = "abcd";
|
cucp_size.pass.cpp | 22 unsigned char buf[] = "abcd"; 32 unsigned char buf[] = "abcd";
|
/external/libcxx/test/std/strings/basic.string/string.modifiers/string_erase/ |
pop_back.pass.cpp | 36 test(S("abcde"), S("abcd")); 43 test(S("abcde"), S("abcd"));
|
/external/regex-re2/re2/testing/ |
possible_match_test.cc | 37 { "a(b)(c)[d]", 10, "abcd", "abcd" }, 54 { "(?i)a(b)(c)[d]", 10, "ABCD", "abcd" }, 72 { "\\Aa(b)(c)[d]", 10, "abcd", "abcd" }, 89 { "(?i)\\Aa(b)(c)[d]", 10, "ABCD", "abcd" },
|
/external/smali/smalidea/src/test/java/org/jf/smalidea/util/ |
StringUtilsTest.java | 40 String parsedString = StringUtils.parseQuotedString("\"abcd\""); 41 Assert.assertEquals("abcd", parsedString);
|
/external/v8/test/mjsunit/regress/ |
regress-crbug-158185.js | 32 assertEquals("123456789ABCD", 33 Object.keys(JSON.parse('{"123456789ABCD": 1}'))[0]);
|
/external/valgrind/none/tests/ |
unit_debuglog.stderr.exp | 110 |%s| printf = |abcd| wrote 6 chars 111 |%s| debuglog = |abcd| wrote 6 chars 112 |%9s| printf = | abcd| wrote 11 chars 113 |%9s| debuglog = | abcd| wrote 11 chars 114 |%-9s| printf = |abcd | wrote 11 chars 115 |%-9s| debuglog = |abcd | wrote 11 chars 116 |%*s| printf = | abcd| wrote 8 chars 117 |%*s| debuglog = | abcd| wrote 8 chars
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.cons/ |
ccp_size.pass.cpp | 22 const char buf[] = "abcd"; 32 const char buf[] = "abcd";
|
cscp_size.pass.cpp | 22 const signed char buf[] = "abcd"; 32 const signed char buf[] = "abcd";
|
cucp_size.pass.cpp | 22 unsigned char buf[] = "abcd"; 32 unsigned char buf[] = "abcd";
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.modifiers/string_erase/ |
pop_back.pass.cpp | 36 test(S("abcde"), S("abcd")); 43 test(S("abcde"), S("abcd"));
|
/external/slf4j/slf4j-migrator/src/test/java/org/slf4j/migrator/ |
AternativeApproach.java | 45 String s = "abcd Log"; 51 assertEquals("abcd LOGGER", r); 63 String s = "abcd Log ="; 67 assertEquals("abcd Logger =", r); 108 String s = "abcd Log ="; 112 assertEquals("abcd Logger =", r);
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/types/ |
StrTagTest.java | 41 assertEquals("abcd", getData("string: abcd", "string")); 45 assertEquals("abcd", getData("string: !!str abcd", "string")); 49 assertEquals("abcd", getData("string: !<tag:yaml.org,2002:str> abcd", "string"));
|
/external/pcre/dist/testdata/ |
testinput4 | 159 abcd 162 abcd 174 abcd\x{100}\x{100}\x{100}\x{100} 177 abcd\x{100}\x{100}\x{100}\x{100} 180 abcd\x{100}\x{100}\x{100}\x{100} 183 abcd\x{100}\x{100}\x{100}XX 186 abcd\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}XX 189 abcd\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}XX 239 1234abcd 245 1234abcd [all...] |
/external/v8/test/mjsunit/es6/ |
string-startswith.js | 111 assertTrue("abcd".startsWith("abc")); 113 assertFalse("abc".startsWith("abcd")); 156 assertEquals("abc".startsWith("abcd"), false); 167 assertEquals("abc".startsWith("abcd", NaN), false); 178 assertEquals("abc".startsWith("abcd", false), false); 189 assertEquals("abc".startsWith("abcd", undefined), false); 200 assertEquals("abc".startsWith("abcd", null), false); 211 assertEquals("abc".startsWith("abcd", -Infinity), false); 222 assertEquals("abc".startsWith("abcd", -1), false); 233 assertEquals("abc".startsWith("abcd", -0), false) [all...] |
/libcore/luni/src/test/java/libcore/java/lang/ |
StringTest.java | 460 assertGetCharsThrowsAIOOBException("abcd", 0, 4, new char[0], -4); 464 "abcd".getChars(0, 1, dst, 0); 466 "abcd".getChars(3, 4, dst, 0); 469 "abcd".getChars(0, 4, dst, 0); 470 assertTrue(Arrays.equals("abcd".toCharArray(), dst)); 473 "abcd".getChars(0, 0, new char[0], 0); // dstBegin == 0 is ok if copying zero chars 474 "abcd".getChars(0, 0, new char[1], 1); // dstBegin == 1 is ok if copying zero chars 476 "abcd".getChars(1, 1, new char[1], 0); 477 "abcd".getChars(1, 1, new char[1], 1); 480 assertGetCharsThrowsAIOOBException("abcd", 3, 4, new char[1], 1); // Out of range dstBegi [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
re_tests.py | 188 ('ab|cd', 'abcd', SUCCEED, 'found', 'ab'), 207 ('abcd*efg', 'abcdefg', SUCCEED, 'found', 'abcdefg'), 214 ('(a|b)c*d', 'abcd', SUCCEED, 'found+"-"+g1', 'bcd-b'), 217 ('a([bc]*)(c*d)', 'abcd', SUCCEED, 'found+"-"+g1+"-"+g2', 'abcd-bc-d'), 218 ('a([bc]+)(c*d)', 'abcd', SUCCEED, 'found+"-"+g1+"-"+g2', 'abcd-bc-d'), 219 ('a([bc]*)(c+d)', 'abcd', SUCCEED, 'found+"-"+g1+"-"+g2', 'abcd-b-cd'), 223 ('((a)(b)c)(d)', 'abcd', SUCCEED, 'g1+"-"+g2+"-"+g3+"-"+g4', 'abc-a-b-d') [all...] |
test_base64.py | 83 eq(base64.b64encode(bytearray('abcd')), 'YWJjZA==') 99 eq(base64.standard_b64encode(bytearray('abcd')), 'YWJjZA==') 152 eq(base64.b32encode('abcd'), 'MFRGGZA=') 155 eq(base64.b32encode(bytearray('abcd')), 'MFRGGZA=') 164 eq(base64.b32decode('MFRGGZA='), 'abcd') 175 eq(base64.b32decode('MFRGGZA=', True), 'abcd') 181 eq(base64.b32decode('mfrggza=', True), 'abcd')
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
re_tests.py | 188 ('ab|cd', 'abcd', SUCCEED, 'found', 'ab'), 207 ('abcd*efg', 'abcdefg', SUCCEED, 'found', 'abcdefg'), 214 ('(a|b)c*d', 'abcd', SUCCEED, 'found+"-"+g1', 'bcd-b'), 217 ('a([bc]*)(c*d)', 'abcd', SUCCEED, 'found+"-"+g1+"-"+g2', 'abcd-bc-d'), 218 ('a([bc]+)(c*d)', 'abcd', SUCCEED, 'found+"-"+g1+"-"+g2', 'abcd-bc-d'), 219 ('a([bc]*)(c+d)', 'abcd', SUCCEED, 'found+"-"+g1+"-"+g2', 'abcd-b-cd'), 223 ('((a)(b)c)(d)', 'abcd', SUCCEED, 'g1+"-"+g2+"-"+g3+"-"+g4', 'abc-a-b-d') [all...] |
test_base64.py | 83 eq(base64.b64encode(bytearray('abcd')), 'YWJjZA==') 99 eq(base64.standard_b64encode(bytearray('abcd')), 'YWJjZA==') 152 eq(base64.b32encode('abcd'), 'MFRGGZA=') 155 eq(base64.b32encode(bytearray('abcd')), 'MFRGGZA=') 164 eq(base64.b32decode('MFRGGZA='), 'abcd') 175 eq(base64.b32decode('MFRGGZA=', True), 'abcd') 181 eq(base64.b32decode('mfrggza=', True), 'abcd')
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
re_tests.py | 188 ('ab|cd', 'abcd', SUCCEED, 'found', 'ab'), 207 ('abcd*efg', 'abcdefg', SUCCEED, 'found', 'abcdefg'), 214 ('(a|b)c*d', 'abcd', SUCCEED, 'found+"-"+g1', 'bcd-b'), 217 ('a([bc]*)(c*d)', 'abcd', SUCCEED, 'found+"-"+g1+"-"+g2', 'abcd-bc-d'), 218 ('a([bc]+)(c*d)', 'abcd', SUCCEED, 'found+"-"+g1+"-"+g2', 'abcd-bc-d'), 219 ('a([bc]*)(c+d)', 'abcd', SUCCEED, 'found+"-"+g1+"-"+g2', 'abcd-b-cd'), 223 ('((a)(b)c)(d)', 'abcd', SUCCEED, 'g1+"-"+g2+"-"+g3+"-"+g4', 'abc-a-b-d') [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
re_tests.py | 188 ('ab|cd', 'abcd', SUCCEED, 'found', 'ab'), 207 ('abcd*efg', 'abcdefg', SUCCEED, 'found', 'abcdefg'), 214 ('(a|b)c*d', 'abcd', SUCCEED, 'found+"-"+g1', 'bcd-b'), 217 ('a([bc]*)(c*d)', 'abcd', SUCCEED, 'found+"-"+g1+"-"+g2', 'abcd-bc-d'), 218 ('a([bc]+)(c*d)', 'abcd', SUCCEED, 'found+"-"+g1+"-"+g2', 'abcd-bc-d'), 219 ('a([bc]*)(c+d)', 'abcd', SUCCEED, 'found+"-"+g1+"-"+g2', 'abcd-b-cd'), 223 ('((a)(b)c)(d)', 'abcd', SUCCEED, 'g1+"-"+g2+"-"+g3+"-"+g4', 'abc-a-b-d') [all...] |
/external/valgrind/memcheck/tests/ |
str_tester.c | 76 check (strcmp ("abc", "abcd") < 0, 4); /* Length mismatches. */ 77 check (strcmp ("abcd", "abc") > 0, 5); 78 check (strcmp ("abcd", "abce") < 0, 6); /* Honest miscompares. */ 79 check (strcmp ("abce", "abcd") > 0, 7); 136 check (strcpy (one, "abcd") == one, 1); /* Returned value. */ 137 equal (one, "abcd", 2); /* Basic test. */ 198 check ((stpcpy (one, "abcd") - one) == 4, 7); 199 equal (one, "abcd", 8); 278 check (stpncpy (one, "abcd", 5) == one + 4, 5); 280 check (stpncpy (one, "abcd", 6) == one + 4, 7) [all...] |