HomeSort by relevance Sort by last modified time
    Searched full:test (Results 251 - 275 of 43620) sorted by null

<<11121314151617181920>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.modifiers/string_replace/
size_size_string.pass.cpp 24 test(S s, typename S::size_type pos1, typename S::size_type n1, S str, S expected) function
48 test(S(""), 0, 0, S(""), S(""));
49 test(S(""), 0, 0, S("12345"), S("12345"));
50 test(S(""), 0, 0, S("1234567890"), S("1234567890"));
51 test(S(""), 0, 0, S("12345678901234567890"), S("12345678901234567890"));
52 test(S(""), 0, 1, S(""), S(""));
53 test(S(""), 0, 1, S("12345"), S("12345"));
54 test(S(""), 0, 1, S("1234567890"), S("1234567890"));
55 test(S(""), 0, 1, S("12345678901234567890"), S("12345678901234567890"));
56 test(S(""), 1, 0, S(""), S("can't happen"))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_compare/
size_size_string.pass.cpp 31 test(const S& s, typename S::size_type pos1, typename S::size_type n1, function
48 test(S(""), 0, 0, S(""), 0);
49 test(S(""), 0, 0, S("abcde"), -5);
50 test(S(""), 0, 0, S("abcdefghij"), -10);
51 test(S(""), 0, 0, S("abcdefghijklmnopqrst"), -20);
52 test(S(""), 0, 1, S(""), 0);
53 test(S(""), 0, 1, S("abcde"), -5);
54 test(S(""), 0, 1, S("abcdefghij"), -10);
55 test(S(""), 0, 1, S("abcdefghijklmnopqrst"), -20);
56 test(S(""), 1, 0, S(""), 0)
    [all...]
  /art/test/021-string2/src/
Main.java 24 String test = "0123456789"; local
31 Assert.assertTrue(test.equals(test));
32 Assert.assertTrue(test.equals(test1));
33 Assert.assertFalse(test.equals(test2));
35 Assert.assertEquals(test.compareTo(test1), 0);
40 Assert.assertEquals(test.compareTo(sub), 0);
41 Assert.assertEquals(sub.compareTo(test), 0);
42 Assert.assertTrue(test.equals(sub));
43 Assert.assertTrue(sub.equals(test));
    [all...]
  /dalvik/tests/021-string2/src/
Main.java 24 String test = "0123456789"; local
31 Assert.assertTrue(test.equals(test));
32 Assert.assertTrue(test.equals(test1));
33 Assert.assertFalse(test.equals(test2));
35 Assert.assertEquals(test.compareTo(test1), 0);
40 Assert.assertEquals(test.compareTo(sub), 0);
41 Assert.assertEquals(sub.compareTo(test), 0);
42 Assert.assertTrue(test.equals(sub));
43 Assert.assertTrue(sub.equals(test));
    [all...]
  /external/chromium_org/tools/gyp/test/mac/
gyptest-postbuild-copy-bundle.py 19 test = TestGyp.TestGyp(formats=['ninja', 'xcode']) variable
22 test.run_gyp('test.gyp', chdir=CHDIR)
24 app_bundle_dir = test.built_file_path('Test app.app', chdir=CHDIR)
34 test.build('test.gyp', 'test_app', chdir=CHDIR)
35 test.must_exist(final_resource_path)
36 test.must_match(final_resource_path,
39 test.must_exist(final_plist_path
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.modifiers/string_op_plus_equal/
pointer.pass.cpp 21 test(S s, const typename S::value_type* str, S expected) function
32 test(S(), "", S());
33 test(S(), "12345", S("12345"));
34 test(S(), "1234567890", S("1234567890"));
35 test(S(), "12345678901234567890", S("12345678901234567890"));
37 test(S("12345"), "", S("12345"));
38 test(S("12345"), "12345", S("1234512345"));
39 test(S("12345"), "1234567890", S("123451234567890"));
40 test(S("12345"), "12345678901234567890", S("1234512345678901234567890"));
42 test(S("1234567890"), "", S("1234567890"))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.modifiers/string_swap/
swap.pass.cpp 23 test(S s1, S s2) function
38 test(S(""), S(""));
39 test(S(""), S("12345"));
40 test(S(""), S("1234567890"));
41 test(S(""), S("12345678901234567890"));
42 test(S("abcde"), S(""));
43 test(S("abcde"), S("12345"));
44 test(S("abcde"), S("1234567890"));
45 test(S("abcde"), S("12345678901234567890"));
46 test(S("abcdefghij"), S(""))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.nonmembers/string.special/
swap.pass.cpp 25 test(S s1, S s2) function
40 test(S(""), S(""));
41 test(S(""), S("12345"));
42 test(S(""), S("1234567890"));
43 test(S(""), S("12345678901234567890"));
44 test(S("abcde"), S(""));
45 test(S("abcde"), S("12345"));
46 test(S("abcde"), S("1234567890"));
47 test(S("abcde"), S("12345678901234567890"));
48 test(S("abcdefghij"), S(""))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.nonmembers/string_op!=/
pointer_string.pass.cpp 22 test(const typename S::value_type* lhs, const S& rhs, bool x) function
31 test("", S(""), false);
32 test("", S("abcde"), true);
33 test("", S("abcdefghij"), true);
34 test("", S("abcdefghijklmnopqrst"), true);
35 test("abcde", S(""), true);
36 test("abcde", S("abcde"), false);
37 test("abcde", S("abcdefghij"), true);
38 test("abcde", S("abcdefghijklmnopqrst"), true);
39 test("abcdefghij", S(""), true)
    [all...]
string_pointer.pass.cpp 22 test(const S& lhs, const typename S::value_type* rhs, bool x) function
31 test(S(""), "", false);
32 test(S(""), "abcde", true);
33 test(S(""), "abcdefghij", true);
34 test(S(""), "abcdefghijklmnopqrst", true);
35 test(S("abcde"), "", true);
36 test(S("abcde"), "abcde", false);
37 test(S("abcde"), "abcdefghij", true);
38 test(S("abcde"), "abcdefghijklmnopqrst", true);
39 test(S("abcdefghij"), "", true)
    [all...]
string_string.pass.cpp 23 test(const S& lhs, const S& rhs, bool x) function
32 test(S(""), S(""), false);
33 test(S(""), S("abcde"), true);
34 test(S(""), S("abcdefghij"), true);
35 test(S(""), S("abcdefghijklmnopqrst"), true);
36 test(S("abcde"), S(""), true);
37 test(S("abcde"), S("abcde"), false);
38 test(S("abcde"), S("abcdefghij"), true);
39 test(S("abcde"), S("abcdefghijklmnopqrst"), true);
40 test(S("abcdefghij"), S(""), true)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.nonmembers/string_operator==/
pointer_string.pass.cpp 22 test(const typename S::value_type* lhs, const S& rhs, bool x) function
31 test("", S(""), true);
32 test("", S("abcde"), false);
33 test("", S("abcdefghij"), false);
34 test("", S("abcdefghijklmnopqrst"), false);
35 test("abcde", S(""), false);
36 test("abcde", S("abcde"), true);
37 test("abcde", S("abcdefghij"), false);
38 test("abcde", S("abcdefghijklmnopqrst"), false);
39 test("abcdefghij", S(""), false)
    [all...]
string_pointer.pass.cpp 22 test(const S& lhs, const typename S::value_type* rhs, bool x) function
31 test(S(""), "", true);
32 test(S(""), "abcde", false);
33 test(S(""), "abcdefghij", false);
34 test(S(""), "abcdefghijklmnopqrst", false);
35 test(S("abcde"), "", false);
36 test(S("abcde"), "abcde", true);
37 test(S("abcde"), "abcdefghij", false);
38 test(S("abcde"), "abcdefghijklmnopqrst", false);
39 test(S("abcdefghij"), "", false)
    [all...]
string_string.pass.cpp 23 test(const S& lhs, const S& rhs, bool x) function
32 test(S(""), S(""), true);
33 test(S(""), S("abcde"), false);
34 test(S(""), S("abcdefghij"), false);
35 test(S(""), S("abcdefghijklmnopqrst"), false);
36 test(S("abcde"), S(""), false);
37 test(S("abcde"), S("abcde"), true);
38 test(S("abcde"), S("abcdefghij"), false);
39 test(S("abcde"), S("abcdefghijklmnopqrst"), false);
40 test(S("abcdefghij"), S(""), false)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.nonmembers/string_opgt/
pointer_string.pass.cpp 22 test(const typename S::value_type* lhs, const S& rhs, bool x) function
31 test("", S(""), false);
32 test("", S("abcde"), false);
33 test("", S("abcdefghij"), false);
34 test("", S("abcdefghijklmnopqrst"), false);
35 test("abcde", S(""), true);
36 test("abcde", S("abcde"), false);
37 test("abcde", S("abcdefghij"), false);
38 test("abcde", S("abcdefghijklmnopqrst"), false);
39 test("abcdefghij", S(""), true)
    [all...]
string_pointer.pass.cpp 22 test(const S& lhs, const typename S::value_type* rhs, bool x) function
31 test(S(""), "", false);
32 test(S(""), "abcde", false);
33 test(S(""), "abcdefghij", false);
34 test(S(""), "abcdefghijklmnopqrst", false);
35 test(S("abcde"), "", true);
36 test(S("abcde"), "abcde", false);
37 test(S("abcde"), "abcdefghij", false);
38 test(S("abcde"), "abcdefghijklmnopqrst", false);
39 test(S("abcdefghij"), "", true)
    [all...]
string_string.pass.cpp 23 test(const S& lhs, const S& rhs, bool x) function
32 test(S(""), S(""), false);
33 test(S(""), S("abcde"), false);
34 test(S(""), S("abcdefghij"), false);
35 test(S(""), S("abcdefghijklmnopqrst"), false);
36 test(S("abcde"), S(""), true);
37 test(S("abcde"), S("abcde"), false);
38 test(S("abcde"), S("abcdefghij"), false);
39 test(S("abcde"), S("abcdefghijklmnopqrst"), false);
40 test(S("abcdefghij"), S(""), true)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.nonmembers/string_opgt=/
pointer_string.pass.cpp 22 test(const typename S::value_type* lhs, const S& rhs, bool x) function
31 test("", S(""), true);
32 test("", S("abcde"), false);
33 test("", S("abcdefghij"), false);
34 test("", S("abcdefghijklmnopqrst"), false);
35 test("abcde", S(""), true);
36 test("abcde", S("abcde"), true);
37 test("abcde", S("abcdefghij"), false);
38 test("abcde", S("abcdefghijklmnopqrst"), false);
39 test("abcdefghij", S(""), true)
    [all...]
string_pointer.pass.cpp 22 test(const S& lhs, const typename S::value_type* rhs, bool x) function
31 test(S(""), "", true);
32 test(S(""), "abcde", false);
33 test(S(""), "abcdefghij", false);
34 test(S(""), "abcdefghijklmnopqrst", false);
35 test(S("abcde"), "", true);
36 test(S("abcde"), "abcde", true);
37 test(S("abcde"), "abcdefghij", false);
38 test(S("abcde"), "abcdefghijklmnopqrst", false);
39 test(S("abcdefghij"), "", true)
    [all...]
string_string.pass.cpp 23 test(const S& lhs, const S& rhs, bool x) function
32 test(S(""), S(""), true);
33 test(S(""), S("abcde"), false);
34 test(S(""), S("abcdefghij"), false);
35 test(S(""), S("abcdefghijklmnopqrst"), false);
36 test(S("abcde"), S(""), true);
37 test(S("abcde"), S("abcde"), true);
38 test(S("abcde"), S("abcdefghij"), false);
39 test(S("abcde"), S("abcdefghijklmnopqrst"), false);
40 test(S("abcdefghij"), S(""), true)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.nonmembers/string_oplt/
pointer_string.pass.cpp 22 test(const typename S::value_type* lhs, const S& rhs, bool x) function
31 test("", S(""), false);
32 test("", S("abcde"), true);
33 test("", S("abcdefghij"), true);
34 test("", S("abcdefghijklmnopqrst"), true);
35 test("abcde", S(""), false);
36 test("abcde", S("abcde"), false);
37 test("abcde", S("abcdefghij"), true);
38 test("abcde", S("abcdefghijklmnopqrst"), true);
39 test("abcdefghij", S(""), false)
    [all...]
string_pointer.pass.cpp 22 test(const S& lhs, const typename S::value_type* rhs, bool x) function
31 test(S(""), "", false);
32 test(S(""), "abcde", true);
33 test(S(""), "abcdefghij", true);
34 test(S(""), "abcdefghijklmnopqrst", true);
35 test(S("abcde"), "", false);
36 test(S("abcde"), "abcde", false);
37 test(S("abcde"), "abcdefghij", true);
38 test(S("abcde"), "abcdefghijklmnopqrst", true);
39 test(S("abcdefghij"), "", false)
    [all...]
string_string.pass.cpp 23 test(const S& lhs, const S& rhs, bool x) function
32 test(S(""), S(""), false);
33 test(S(""), S("abcde"), true);
34 test(S(""), S("abcdefghij"), true);
35 test(S(""), S("abcdefghijklmnopqrst"), true);
36 test(S("abcde"), S(""), false);
37 test(S("abcde"), S("abcde"), false);
38 test(S("abcde"), S("abcdefghij"), true);
39 test(S("abcde"), S("abcdefghijklmnopqrst"), true);
40 test(S("abcdefghij"), S(""), false)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.nonmembers/string_oplt=/
pointer_string.pass.cpp 22 test(const typename S::value_type* lhs, const S& rhs, bool x) function
31 test("", S(""), true);
32 test("", S("abcde"), true);
33 test("", S("abcdefghij"), true);
34 test("", S("abcdefghijklmnopqrst"), true);
35 test("abcde", S(""), false);
36 test("abcde", S("abcde"), true);
37 test("abcde", S("abcdefghij"), true);
38 test("abcde", S("abcdefghijklmnopqrst"), true);
39 test("abcdefghij", S(""), false)
    [all...]
string_pointer.pass.cpp 22 test(const S& lhs, const typename S::value_type* rhs, bool x) function
31 test(S(""), "", true);
32 test(S(""), "abcde", true);
33 test(S(""), "abcdefghij", true);
34 test(S(""), "abcdefghijklmnopqrst", true);
35 test(S("abcde"), "", false);
36 test(S("abcde"), "abcde", true);
37 test(S("abcde"), "abcdefghij", true);
38 test(S("abcde"), "abcdefghijklmnopqrst", true);
39 test(S("abcdefghij"), "", false)
    [all...]

Completed in 114 milliseconds

<<11121314151617181920>>