HomeSort by relevance Sort by last modified time
    Searched refs:test (Results 151 - 175 of 9298) sorted by null

1 2 3 4 5 67 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/numeric.ops/adjacent.difference/
adjacent_difference.pass.cpp 29 test() function
43 test<input_iterator<const int*>, output_iterator<int*> >();
44 test<input_iterator<const int*>, forward_iterator<int*> >();
45 test<input_iterator<const int*>, bidirectional_iterator<int*> >();
46 test<input_iterator<const int*>, random_access_iterator<int*> >();
47 test<input_iterator<const int*>, int*>();
49 test<forward_iterator<const int*>, output_iterator<int*> >();
50 test<forward_iterator<const int*>, forward_iterator<int*> >();
51 test<forward_iterator<const int*>, bidirectional_iterator<int*> >();
52 test<forward_iterator<const int*>, random_access_iterator<int*> >()
    [all...]
adjacent_difference_op.pass.cpp 30 test() function
45 test<input_iterator<const int*>, output_iterator<int*> >();
46 test<input_iterator<const int*>, forward_iterator<int*> >();
47 test<input_iterator<const int*>, bidirectional_iterator<int*> >();
48 test<input_iterator<const int*>, random_access_iterator<int*> >();
49 test<input_iterator<const int*>, int*>();
51 test<forward_iterator<const int*>, output_iterator<int*> >();
52 test<forward_iterator<const int*>, forward_iterator<int*> >();
53 test<forward_iterator<const int*>, bidirectional_iterator<int*> >();
54 test<forward_iterator<const int*>, random_access_iterator<int*> >()
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/numeric.ops/partial.sum/
partial_sum.pass.cpp 27 test() function
41 test<input_iterator<const int*>, output_iterator<int*> >();
42 test<input_iterator<const int*>, forward_iterator<int*> >();
43 test<input_iterator<const int*>, bidirectional_iterator<int*> >();
44 test<input_iterator<const int*>, random_access_iterator<int*> >();
45 test<input_iterator<const int*>, int*>();
47 test<forward_iterator<const int*>, output_iterator<int*> >();
48 test<forward_iterator<const int*>, forward_iterator<int*> >();
49 test<forward_iterator<const int*>, bidirectional_iterator<int*> >();
50 test<forward_iterator<const int*>, random_access_iterator<int*> >()
    [all...]
partial_sum_op.pass.cpp 29 test() function
43 test<input_iterator<const int*>, output_iterator<int*> >();
44 test<input_iterator<const int*>, forward_iterator<int*> >();
45 test<input_iterator<const int*>, bidirectional_iterator<int*> >();
46 test<input_iterator<const int*>, random_access_iterator<int*> >();
47 test<input_iterator<const int*>, int*>();
49 test<forward_iterator<const int*>, output_iterator<int*> >();
50 test<forward_iterator<const int*>, forward_iterator<int*> >();
51 test<forward_iterator<const int*>, bidirectional_iterator<int*> >();
52 test<forward_iterator<const int*>, random_access_iterator<int*> >()
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/strings/basic.string/string.ops/string_find.last.not.of/
char_size.pass.cpp 19 test(const S& s, typename S::value_type c, typename S::size_type pos, function
29 test(const S& s, typename S::value_type c, typename S::size_type x) function
40 test(S(""), 'i', 0, S::npos);
41 test(S(""), 'i', 1, S::npos);
42 test(S("kitcj"), 'i', 0, 0);
43 test(S("qkamf"), 'i', 1, 1);
44 test(S("nhmko"), 'i', 2, 2);
45 test(S("tpsaf"), 'i', 4, 4);
46 test(S("lahfb"), 'i', 5, 4);
47 test(S("irkhs"), 'i', 6, 4)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/strings/basic.string/string.ops/string_rfind/
char_size.pass.cpp 19 test(const S& s, typename S::value_type c, typename S::size_type pos, function
29 test(const S& s, typename S::value_type c, typename S::size_type x) function
40 test(S(""), 'b', 0, S::npos);
41 test(S(""), 'b', 1, S::npos);
42 test(S("abcde"), 'b', 0, S::npos);
43 test(S("abcde"), 'b', 1, 1);
44 test(S("abcde"), 'b', 2, 1);
45 test(S("abcde"), 'b', 4, 1);
46 test(S("abcde"), 'b', 5, 1);
47 test(S("abcde"), 'b', 6, 1)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/strings/basic.string/string.modifiers/string_insert/
iter_size_char.pass.cpp 19 test(S s, typename S::difference_type pos, typename S::size_type n, function
32 test(S(""), 0, 0, '1', S(""));
33 test(S(""), 0, 5, '1', S("11111"));
34 test(S(""), 0, 10, '1', S("1111111111"));
35 test(S(""), 0, 20, '1', S("11111111111111111111"));
36 test(S("abcde"), 0, 0, '1', S("abcde"));
37 test(S("abcde"), 0, 5, '1', S("11111abcde"));
38 test(S("abcde"), 0, 10, '1', S("1111111111abcde"));
39 test(S("abcde"), 0, 20, '1', S("11111111111111111111abcde"));
40 test(S("abcde"), 1, 0, '1', S("abcde"))
    [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...]
  /ndk/sources/cxx-stl/llvm-libc++/test/strings/basic.string/string.modifiers/string_erase/
size_size.pass.cpp 21 test(S s, typename S::size_type pos, typename S::size_type n, S expected) function
41 test(S s, typename S::size_type pos, S expected) function
61 test(S s, S expected) function
71 test(S(""), 0, 0, S(""));
72 test(S(""), 0, 1, S(""));
73 test(S(""), 1, 0, S("can't happen"));
74 test(S("abcde"), 0, 0, S("abcde"));
75 test(S("abcde"), 0, 1, S("bcde"));
76 test(S("abcde"), 0, 2, S("cde"));
77 test(S("abcde"), 0, 4, S("e"))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/re/re.regex/re.regex.construct/
ptr_flg.pass.cpp 21 test(const CharT* p, std::regex_constants::syntax_option_type f, unsigned mc) function
30 test("\\(a\\)", std::regex_constants::basic, 1);
31 test("\\(a[bc]\\)", std::regex_constants::basic, 1);
32 test("\\(a\\([bc]\\)\\)", std::regex_constants::basic, 2);
33 test("(a([bc]))", std::regex_constants::basic, 0);
35 test("\\(a\\)", std::regex_constants::extended, 0);
36 test("\\(a[bc]\\)", std::regex_constants::extended, 0);
37 test("\\(a\\([bc]\\)\\)", std::regex_constants::extended, 0);
38 test("(a([bc]))", std::regex_constants::extended, 2);
40 test("\\(a\\)", std::regex_constants::ECMAScript, 0)
    [all...]
ptr_size_flg.pass.cpp 21 test(const CharT* p, std::size_t len, std::regex_constants::syntax_option_type f, function
31 test("\\(a\\)", 5, std::regex_constants::basic, 1);
32 test("\\(a[bc]\\)", 9, std::regex_constants::basic, 1);
33 test("\\(a\\([bc]\\)\\)", 13, std::regex_constants::basic, 2);
34 test("(a([bc]))", 9, std::regex_constants::basic, 0);
36 test("\\(a\\)", 5, std::regex_constants::extended, 0);
37 test("\\(a[bc]\\)", 9, std::regex_constants::extended, 0);
38 test("\\(a\\([bc]\\)\\)", 13, std::regex_constants::extended, 0);
39 test("(a([bc]))", 9, std::regex_constants::extended, 2);
41 test("\\(a\\)", 5, std::regex_constants::ECMAScript, 0)
    [all...]
  /dalvik/tests/004-annotations/src/android/test/anno/
SomeClass.java 1 package android.test.anno;
package-info.java 2 package android.test.anno;
  /dalvik/tests/075-verification-error/src/other/
InaccessibleClass.java 20 public static void test() {} method in class:InaccessibleClass
  /dalvik/tests/075-verification-error/src2/other/
InaccessibleClass.java 20 public static void test() {} method in class:InaccessibleClass
  /external/clang/test/CodeGen/
2002-04-08-LocalArray.c 6 double test(unsigned X) { function
2003-11-13-TypeSafety.c 3 int *test(int *X, int Y) { function
2006-01-13-Includes.c 6 void test() { function
10 // CHECK: test{{[\\/]}}CodeGen
exact-div-expr.c 4 long long test(int *A, int *B) { function
  /external/clang/test/CodeGenCXX/
apple-kext-guard-variable.cpp 6 void test() { function
sizeof-unwind-exception.cpp 8 void test() { function
  /external/clang/test/PCH/
chain-ext_vector.c 0 // Test this without pch.
4 // Test with pch.
9 int test(float4 f4) { function
ext_vector.c 0 // Test this without pch.
4 // Test with pch.
8 int test(float4 f4) { function
  /external/clang/test/Sema/
format-strings-fixit-ssize_t.c 6 /* This is a test of the various code modification hints that are
13 void test() { function
  /external/clang/test/SemaCXX/
short-wchar-sign.cpp 7 int test[(wchar_t(-1)<wchar_t(0)) == (sizeof(wchar_t) == 4) ?1:-1]; variable

Completed in 1253 milliseconds

1 2 3 4 5 67 8 91011>>