HomeSort by relevance Sort by last modified time
    Searched full:cde (Results 1 - 25 of 147) sorted by null

1 2 3 4 5 6

  /external/chromium_org/third_party/WebKit/Source/platform/text/
SegmentedStringTest.cpp 42 SegmentedString original(String("cde"));
47 EXPECT_EQ("cde", original.toString());
  /external/chromium_org/third_party/icu/source/test/intltest/
uvectest.cpp 149 a->push((void*)"cde", status);
151 TEST_ASSERT(strcmp("cde", (const char *)a->peek()) == 0);
152 TEST_ASSERT(a->search((void*)"cde") == 1);
156 TEST_ASSERT(strcmp("cde", (const char *)a->lastElement()) == 0);
157 TEST_ASSERT(strcmp("cde", (const char *)a->pop()) == 0);
  /external/icu/icu4c/source/test/intltest/
uvectest.cpp 149 a->push((void*)"cde", status);
151 TEST_ASSERT(strcmp("cde", (const char *)a->peek()) == 0);
152 TEST_ASSERT(a->search((void*)"cde") == 1);
156 TEST_ASSERT(strcmp("cde", (const char *)a->lastElement()) == 0);
157 TEST_ASSERT(strcmp("cde", (const char *)a->pop()) == 0);
  /frameworks/base/core/tests/coretests/src/android/text/
TextUtilsTest.java 189 stringSplitterTestHelper("a,b,cde", new String[] {"a", "b", "cde"});
199 stringSplitterTestHelper(",a,b,cde", new String[] {"", "a", "b", "cde"});
204 stringSplitterTestHelper("a,b,,cde", new String[] {"a", "b", "", "cde"});
210 stringSplitterTestHelper("a,b,cde,", new String[] {"a", "b", "cde"});
  /external/chromium_org/v8/test/webkit/fast/js/kde/
statements-expected.txt 38 PASS testSwitch3(0) is 'cde'
statements.js 84 shouldBe("testSwitch3(0)", "'cde'");
  /external/valgrind/main/drd/
drd_cond.c 85 CondDestrErrInfo cde = { local
96 &cde);
280 CondDestrErrInfo cde = { local
288 &cde);
  /build/tools/zipalign/
ZipEntry.cpp 36 * On exit, the file pointer will be at the start of the next CDE or
47 /* read the CDE */
56 /* using the info in the CDE, go load up the LFH */
90 * prefer the CDE values.)
110 * Initializes the CDE and the LFH.
142 * Initializes the CDE and the LFH.
148 * Copy everything in the CDE over, then fix up the hairy bits.
173 /* construct the LFH from the CDE */
177 * The LFH "extra" field is independent of the CDE "extra", so we
230 * Set the fields in the LFH equal to the corresponding fields in the CDE
    [all...]
  /frameworks/base/tools/aapt/
ZipEntry.cpp 36 * On exit, the file pointer will be at the start of the next CDE or
47 /* read the CDE */
56 /* using the info in the CDE, go load up the LFH */
90 * prefer the CDE values.)
110 * Initializes the CDE and the LFH.
142 * Initializes the CDE and the LFH.
148 * Copy everything in the CDE over, then fix up the hairy bits.
173 /* construct the LFH from the CDE */
177 * The LFH "extra" field is independent of the CDE "extra", so we
230 * Set the fields in the LFH equal to the corresponding fields in the CDE
    [all...]
  /external/libcxx/test/strings/basic.string/string.modifiers/string_replace/
iter_iter_iter_iter.pass.cpp 90 test(S("abcde"), 0, 2, str, str+0, S("cde"));
91 test(S("abcde"), 0, 2, str, str+0, S("cde"));
92 test(S("abcde"), 0, 2, str, str+1, S("1cde"));
93 test(S("abcde"), 0, 2, str, str+2, S("12cde"));
94 test(S("abcde"), 0, 2, str, str+4, S("1234cde"));
95 test(S("abcde"), 0, 2, str, str+5, S("12345cde"));
96 test(S("abcde"), 0, 2, str, str+0, S("cde"));
97 test(S("abcde"), 0, 2, str, str+1, S("1cde"));
98 test(S("abcde"), 0, 2, str, str+5, S("12345cde"));
99 test(S("abcde"), 0, 2, str, str+9, S("123456789cde"));
    [all...]
iter_iter_pointer.pass.cpp 53 test(S("abcde"), 0, 2, "", S("cde"));
54 test(S("abcde"), 0, 2, "12345", S("12345cde"));
55 test(S("abcde"), 0, 2, "1234567890", S("1234567890cde"));
56 test(S("abcde"), 0, 2, "12345678901234567890", S("12345678901234567890cde"));
iter_iter_pointer_size.pass.cpp 90 test(S("abcde"), 0, 2, "", 0, S("cde"));
91 test(S("abcde"), 0, 2, "12345", 0, S("cde"));
92 test(S("abcde"), 0, 2, "12345", 1, S("1cde"));
93 test(S("abcde"), 0, 2, "12345", 2, S("12cde"));
94 test(S("abcde"), 0, 2, "12345", 4, S("1234cde"));
95 test(S("abcde"), 0, 2, "12345", 5, S("12345cde"));
96 test(S("abcde"), 0, 2, "1234567890", 0, S("cde"));
97 test(S("abcde"), 0, 2, "1234567890", 1, S("1cde"));
98 test(S("abcde"), 0, 2, "1234567890", 5, S("12345cde"));
99 test(S("abcde"), 0, 2, "1234567890", 9, S("123456789cde"));
    [all...]
iter_iter_size_char.pass.cpp 54 test(S("abcde"), 0, 2, 0, '3', S("cde"));
55 test(S("abcde"), 0, 2, 5, '3', S("33333cde"));
56 test(S("abcde"), 0, 2, 10, '3', S("3333333333cde"));
57 test(S("abcde"), 0, 2, 20, '3', S("33333333333333333333cde"));
iter_iter_string.pass.cpp 53 test(S("abcde"), 0, 2, S(""), S("cde"));
54 test(S("abcde"), 0, 2, S("12345"), S("12345cde"));
55 test(S("abcde"), 0, 2, S("1234567890"), S("1234567890cde"));
56 test(S("abcde"), 0, 2, S("12345678901234567890"), S("12345678901234567890cde"));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.modifiers/string_replace/
iter_iter_iter_iter.pass.cpp 90 test(S("abcde"), 0, 2, str, str+0, S("cde"));
91 test(S("abcde"), 0, 2, str, str+0, S("cde"));
92 test(S("abcde"), 0, 2, str, str+1, S("1cde"));
93 test(S("abcde"), 0, 2, str, str+2, S("12cde"));
94 test(S("abcde"), 0, 2, str, str+4, S("1234cde"));
95 test(S("abcde"), 0, 2, str, str+5, S("12345cde"));
96 test(S("abcde"), 0, 2, str, str+0, S("cde"));
97 test(S("abcde"), 0, 2, str, str+1, S("1cde"));
98 test(S("abcde"), 0, 2, str, str+5, S("12345cde"));
99 test(S("abcde"), 0, 2, str, str+9, S("123456789cde"));
    [all...]
iter_iter_pointer.pass.cpp 53 test(S("abcde"), 0, 2, "", S("cde"));
54 test(S("abcde"), 0, 2, "12345", S("12345cde"));
55 test(S("abcde"), 0, 2, "1234567890", S("1234567890cde"));
56 test(S("abcde"), 0, 2, "12345678901234567890", S("12345678901234567890cde"));
iter_iter_pointer_size.pass.cpp 90 test(S("abcde"), 0, 2, "", 0, S("cde"));
91 test(S("abcde"), 0, 2, "12345", 0, S("cde"));
92 test(S("abcde"), 0, 2, "12345", 1, S("1cde"));
93 test(S("abcde"), 0, 2, "12345", 2, S("12cde"));
94 test(S("abcde"), 0, 2, "12345", 4, S("1234cde"));
95 test(S("abcde"), 0, 2, "12345", 5, S("12345cde"));
96 test(S("abcde"), 0, 2, "1234567890", 0, S("cde"));
97 test(S("abcde"), 0, 2, "1234567890", 1, S("1cde"));
98 test(S("abcde"), 0, 2, "1234567890", 5, S("12345cde"));
99 test(S("abcde"), 0, 2, "1234567890", 9, S("123456789cde"));
    [all...]
iter_iter_size_char.pass.cpp 54 test(S("abcde"), 0, 2, 0, '3', S("cde"));
55 test(S("abcde"), 0, 2, 5, '3', S("33333cde"));
56 test(S("abcde"), 0, 2, 10, '3', S("3333333333cde"));
57 test(S("abcde"), 0, 2, 20, '3', S("33333333333333333333cde"));
iter_iter_string.pass.cpp 53 test(S("abcde"), 0, 2, S(""), S("cde"));
54 test(S("abcde"), 0, 2, S("12345"), S("12345cde"));
55 test(S("abcde"), 0, 2, S("1234567890"), S("1234567890cde"));
56 test(S("abcde"), 0, 2, S("12345678901234567890"), S("12345678901234567890cde"));
  /external/chromium_org/third_party/icu/source/test/testdata/
icuio.txt 164 { "%*3[abc]%[cde]", "abccdefg", "S", "cde" }
  /external/icu/icu4c/source/test/testdata/
icuio.txt 164 { "%*3[abc]%[cde]", "abccdefg", "S", "cde" }
  /external/libcxx/test/strings/basic.string/string.modifiers/string_erase/
iter_iter.pass.cpp 38 test(S("abcde"), 0, 2, S("cde"));
96 test(S("abcde"), 0, 2, S("cde"));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.modifiers/string_erase/
iter_iter.pass.cpp 38 test(S("abcde"), 0, 2, S("cde"));
96 test(S("abcde"), 0, 2, S("cde"));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
re_tests.py 202 ('[^ab]*', 'cde', SUCCEED, 'found', 'cde'),
210 ('(ab|cd)e', 'abcde', SUCCEED, 'found+"-"+g1', 'cde-cd'),
363 ('[^ab]*', 'cde', SUCCEED, 'found', 'cde'),
373 ('(ab|cd)e', 'abcde', SUCCEED, 'found+"-"+g1', 'cde-cd'),
494 ('(?i)[^ab]*', 'CDE', SUCCEED, 'found', 'CDE'),
504 ('(?i)(ab|cd)e', 'ABCDE', SUCCEED, 'found+"-"+g1', 'CDE-CD'),
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
re_tests.py 202 ('[^ab]*', 'cde', SUCCEED, 'found', 'cde'),
210 ('(ab|cd)e', 'abcde', SUCCEED, 'found+"-"+g1', 'cde-cd'),
363 ('[^ab]*', 'cde', SUCCEED, 'found', 'cde'),
373 ('(ab|cd)e', 'abcde', SUCCEED, 'found+"-"+g1', 'cde-cd'),
494 ('(?i)[^ab]*', 'CDE', SUCCEED, 'found', 'CDE'),
504 ('(?i)(ab|cd)e', 'ABCDE', SUCCEED, 'found+"-"+g1', 'CDE-CD'),

Completed in 702 milliseconds

1 2 3 4 5 6