HomeSort by relevance Sort by last modified time
    Searched full:abcde (Results 76 - 100 of 273) sorted by null

1 2 34 5 6 7 8 91011

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string.accessors/
data.pass.cpp 39 test(S("abcde"));
47 test(S("abcde"));
get_allocator.pass.cpp 33 test(S("abcde", A(1)), A(1));
42 test(S("abcde", A()), A());
  /external/harfbuzz_ng/test/api/
test-common.c 118 g_assert_cmphex (hb_tag_from_string ("aBcDe", -1), ==, 0x61426344);
123 g_assert_cmphex (hb_tag_from_string ("aBcDe", 1), ==, 0x61202020);
124 g_assert_cmphex (hb_tag_from_string ("aBcDe", 2), ==, 0x61422020);
125 g_assert_cmphex (hb_tag_from_string ("aBcDe", 3), ==, 0x61426320);
126 g_assert_cmphex (hb_tag_from_string ("aBcDe", 4), ==, 0x61426344);
127 g_assert_cmphex (hb_tag_from_string ("aBcDe", 4), ==, 0x61426344);
  /libcore/luni/src/test/java/libcore/java/io/
OldWriterTest.java 59 assertEquals("Wrong stuff written!", "01234abcde", tobj.toString());
104 tobj.write("abcde".toCharArray());
105 assertEquals("Wrong stuff written!", "01234abcde", tobj.toString());
134 tobj.write("abcde");
135 assertEquals("Wrong stuff written!", "01234abcde", tobj.toString());
154 assertEquals("Wrong stuff written!", "01234abcde", tobj.toString());
  /external/chromium_org/net/http/
http_content_disposition_unittest.cc 25 {"inline; filename=\"abcde.pdf\"", "", L"abcde.pdf"},
26 {"inline; name=\"abcde.pdf\"", "", L"abcde.pdf"},
27 {"attachment; filename=abcde.pdf", "", L"abcde.pdf"},
28 {"attachment; name=abcde.pdf", "", L"abcde.pdf"},
30 {"filename=abcde.pdf", "", L"abcde.pdf"}
    [all...]
  /external/llvm/test/Transforms/InstCombine/
strstr-1.ll 9 @.str2 = private constant [6 x i8] c"abcde\00"
34 ; Check strstr("abcde", "bcd") -> "abcde" + 1.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_slicing.py 51 self.assertRaises(TypeError, setslice, a, 0, 5, "abcde")
52 self.assertRaises(TypeError, setitem, a, slice(0, 5), "abcde")
90 res, 0, 5, u"abcde")
92 res, slice(0, 5), u"abcde")
154 res, 0, 5, u"abcde")
156 res, slice(0, 5), u"abcde")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_slicing.py 51 self.assertRaises(TypeError, setslice, a, 0, 5, "abcde")
52 self.assertRaises(TypeError, setitem, a, slice(0, 5), "abcde")
90 res, 0, 5, u"abcde")
92 res, slice(0, 5), u"abcde")
154 res, 0, 5, u"abcde")
156 res, slice(0, 5), u"abcde")
  /external/chromium_org/third_party/sqlite/src/test/
enc3.test 67 } {abcde}
72 } {abcde}
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.get.area/
gbump.pass.cpp 49 char in[] = "ABCDE";
55 wchar_t in[] = L"ABCDE";
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/
pbump.pass.cpp 49 char in[] = "ABCDE";
56 wchar_t in[] = L"ABCDE";
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
ptestcases.h 85 { 2, 2, "[^-ac]", "abcde-", },
86 { 2, 2, "[^ac-]", "abcde-", },
87 { 3, 3, "[^a-b]", "abcde", },
167 { 3, 3, "[^a-b]", "abcde", },
186 { 2, 2, "[^-ac]", "abcde-", },
187 { 1, 3, "a[^-ac]c", "abcde-", },
190 { 2, 2, "[^ac-]", "abcde-", },
191 { 2, 4, "a[^ac-]c", "5abcde-", },
199 { 1, 2, "ag*b", "abcde", },
208 { 1, 2, "\\(ab\\)", "abcde", },
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/process/
SystemProcessTest.java 37 os.write("10 5 abcde".getBytes());
  /external/chromium_org/third_party/skia/src/utils/
SkSHA1.h 46 // state (ABCDE)
  /external/guava/guava-tests/test/com/google/common/base/
StringsTest.java 147 assertEquals("", Strings.commonPrefix("abcde", "xyz"));
148 assertEquals("", Strings.commonPrefix("xyz", "abcde"));
180 assertEquals("", Strings.commonSuffix("abcde", "xyz"));
181 assertEquals("", Strings.commonSuffix("xyz", "abcde"));
  /external/llvm/test/MC/Mips/
elf-relsym.ll 20 @.str = private unnamed_addr constant [6 x i8] c"abcde\00", align 1
  /external/skia/src/utils/
SkSHA1.h 46 // state (ABCDE)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_StringIO.py 67 eq(f.getvalue(), 'abcde')
187 f.write(u'abcde')
189 self.assertEqual(s, 'abcde')
192 f = self.MODULE.StringIO(u'abcde')
194 self.assertEqual(s, 'abcde')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_StringIO.py 67 eq(f.getvalue(), 'abcde')
187 f.write(u'abcde')
189 self.assertEqual(s, 'abcde')
192 f = self.MODULE.StringIO(u'abcde')
194 self.assertEqual(s, 'abcde')
  /external/chromium_org/chrome/browser/autocomplete/
bookmark_provider.cc 196 // Example: Given a bookmark title 'abcde fghijklm', with a title length
197 // of 14, and two different search terms, 'abcde' and 'fghijklm', with
199 // (with a partial factor of 8/14 = 0.571) than 'abcde' (5/14 = 0.357).
205 // Example: Given a bookmark title of 'abcde fghijklm', with a title length
206 // of 14, and two different search terms, 'abcde' and 'fghij', with
207 // start positions of 0 and 6, respectively, 'abcde' will score higher
  /libcore/luni/src/test/java/libcore/java/util/concurrent/
CopyOnWriteArrayListTest.java 38 Iterator<String> abcde = list.iterator(); local
39 assertEquals("a", abcde.next());
41 assertEquals("b", abcde.next());
42 assertEquals("c", abcde.next());
43 assertEquals("d", abcde.next());
44 assertEquals("e", abcde.next());
  /external/chromium_org/third_party/icu/source/test/testdata/
icuio.txt 40 { "%5.3S", " abc", "S", "abcde" }
41 { "%-5.3S", "abc ", "S", "abcde" }
46 { "%5.3s", " abc", "s", "abcde" }
47 { "%-5.3s", "abc ", "s", "abcde" }
  /external/chromium_org/v8/test/webkit/
string-property-iteration.js 28 for (var property in "abcde") {
  /external/icu4c/test/testdata/
icuio.txt 40 { "%5.3S", " abc", "S", "abcde" }
41 { "%-5.3S", "abc ", "S", "abcde" }
46 { "%5.3s", " abc", "s", "abcde" }
47 { "%-5.3s", "abc ", "s", "abcde" }
  /external/valgrind/main/none/tests/s390x/
clcl.c 202 uint8_t y[5] = "abcde";
203 uint8_t z[5] = "abcde";
213 uint8_t y[5] = "abcde";
223 uint8_t x[5] = "abcde";

Completed in 374 milliseconds

1 2 34 5 6 7 8 91011