HomeSort by relevance Sort by last modified time
    Searched full:abcde (Results 201 - 225 of 391) sorted by null

1 2 3 4 5 6 7 891011>>

  /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')
test_base64.py 153 eq(base64.b32encode('abcde'), 'MFRGGZDF')
165 eq(base64.b32decode('MFRGGZDF'), 'abcde')
176 eq(base64.b32decode('MFRGGZDF', True), 'abcde')
182 eq(base64.b32decode('mfrggzdf', True), 'abcde')
  /external/wpa_supplicant_8/src/utils/
utils_module_tests.c 26 { (u8 *) "abcde", 5, "abcde" },
73 printf_encode(buf, 5, (const u8 *) "abcde", 5);
89 if (printf_decode(bin, 3, "abcde") != 2)
380 utf8_unescape("abcde", 5, buf, sizeof(buf)) != 0 ||
392 utf8_escape("abcde", 5, buf, sizeof(buf)) != 0 ||
  /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/toybox/tests/
printf.test 31 "$PRINTF '%3s,%.3s,%10s,%10.3s' abcde fghij klmno pqrst" \
32 "abcde,fgh, klmno, pqr" "" ""
  /external/valgrind/none/tests/amd64/
pcmpstr64.c 655 try_istri(wot,h,s, "111111111abcde11", "00000000000abcde");
659 try_istri(wot,h,s, "1111111111abcde1", "00000000000abcde");
660 try_istri(wot,h,s, "11111111111abcde", "00000000000abcde");
661 try_istri(wot,h,s, "111111111111abcd", "00000000000abcde");
663 try_istri(wot,h,s, "111abcde1abcde11", "00000000000abcde");
665 try_istri(wot,h,s, "11abcde11abcde11", "00000000000abcde");
666 try_istri(wot,h,s, "1abcde111abcde11", "00000000000abcde");
667 try_istri(wot,h,s, "abcde1111abcde11", "00000000000abcde");
668 try_istri(wot,h,s, "bcde11111abcde11", "00000000000abcde");
    [all...]
asorep.c 18 memcpy (buf1, "abcde", 4);
  /external/clang/test/Sema/
builtins.c 241 __builtin___memcpy_chk (p, "abcde", n, __builtin_object_size (p, 0));
243 __builtin___memcpy_chk (&buf[5], "abcde", 5, __builtin_object_size (&buf[5], 0));
245 __builtin___memcpy_chk (&buf[5], "abcde", n, __builtin_object_size (&buf[5], 0));
247 __builtin___memcpy_chk (&buf[6], "abcde", 5, __builtin_object_size (&buf[6], 0)); // expected-warning {{'__builtin___memcpy_chk' will always overflow destination buffer}}
  /external/icu/icu4c/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" }
ra.txt 70 :string{"abcde"},
  /external/libcxx/test/std/experimental/string.view/string.view.cons/
from_literal.pass.cpp 60 constexpr std::experimental::basic_string_view<char, constexpr_char_traits<char>> sv1 ( "ABCDE" );
  /external/libcxx/test/std/re/re.alg/re.alg.match/
basic.fail.cpp 33 std::regex_match(std::string("abcde"), m, re);
  /external/libcxx/test/std/re/re.alg/re.alg.search/
basic.fail.cpp 33 std::regex_search(std::string("abcde"), m, re);
  /external/v8/test/webkit/
string-property-iteration.js 28 for (var property in "abcde") {
  /external/valgrind/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";
mvc.c 55 char buf[] = "0123456789abcde";
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.alg/re.alg.match/
basic.fail.cpp 35 std::regex_match(std::string("abcde"), m, re);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.alg/re.alg.search/
basic.fail.cpp 35 std::regex_search(std::string("abcde"), m, re);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_base64.py 153 eq(base64.b32encode('abcde'), 'MFRGGZDF')
165 eq(base64.b32decode('MFRGGZDF'), 'abcde')
176 eq(base64.b32decode('MFRGGZDF', True), 'abcde')
182 eq(base64.b32decode('mfrggzdf', True), 'abcde')
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
StringBufferTest.java 33 StringBuffer buffer = new StringBuffer("abcde");
41 assertEquals("abcde", buffer.toString());
46 buffer = new StringBuffer("abcde");
52 buffer = new StringBuffer("abcde");
98 buffer.append("abcde");
99 assertEquals("abcde", buffer.toString());
  /external/v8/test/webkit/fast/regex/
ecma-regex-examples-expected.txt 31 PASS regex03.exec("abcdefghi") is ["abcde"]
ecma-regex-examples.js 35 shouldBe('regex03.exec("abcdefghi")', '["abcde"]');
  /external/valgrind/memcheck/tests/amd64/
insn-pcmpistri.c 84 doit("abcde");
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/algorithms/bipartite/tests/
test_project.py 202 P=bipartite.weighted_projected_graph(self.N,'ABCDE')
231 P=bipartite.collaboration_weighted_projected_graph(self.N,'ABCDE')
260 P=bipartite.weighted_projected_graph(self.N, 'ABCDE', ratio=True)
289 P=bipartite.overlap_weighted_projected_graph(self.N,'ABCDE', jaccard=False)
318 P=bipartite.overlap_weighted_projected_graph(self.N,'ABCDE')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_basics.py 598 d.put("abcde", "ABCDE");
618 self.d.put("abcde", "ABCDE")
619 self.assertTrue(self.d.exists("abcde") == True,
631 d.put("abcde", "ABCDE");
637 d.compact(start='abcde', stop='monty', txn=None,
785 self.d.put("abcde", "ABCDE", txn=txn
    [all...]

Completed in 242 milliseconds

1 2 3 4 5 6 7 891011>>