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

1 2 3 45 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/test/algorithms/alg.modifying.operations/alg.copy/
copy_n.pass.cpp 23 test() function
39 test<input_iterator<const int*>, output_iterator<int*> >();
40 test<input_iterator<const int*>, input_iterator<int*> >();
41 test<input_iterator<const int*>, forward_iterator<int*> >();
42 test<input_iterator<const int*>, bidirectional_iterator<int*> >();
43 test<input_iterator<const int*>, random_access_iterator<int*> >();
44 test<input_iterator<const int*>, int*>();
46 test<forward_iterator<const int*>, output_iterator<int*> >();
47 test<forward_iterator<const int*>, input_iterator<int*> >();
48 test<forward_iterator<const int*>, forward_iterator<int*> >()
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/algorithms/alg.modifying.operations/alg.transform/
unary_transform.pass.cpp 26 test() function
43 test<input_iterator<const int*>, output_iterator<int*> >();
44 test<input_iterator<const int*>, input_iterator<int*> >();
45 test<input_iterator<const int*>, forward_iterator<int*> >();
46 test<input_iterator<const int*>, bidirectional_iterator<int*> >();
47 test<input_iterator<const int*>, random_access_iterator<int*> >();
48 test<input_iterator<const int*>, int*>();
50 test<forward_iterator<const int*>, output_iterator<int*> >();
51 test<forward_iterator<const int*>, input_iterator<int*> >();
52 test<forward_iterator<const int*>, forward_iterator<int*> >()
    [all...]
binary_transform.pass.cpp 26 test() function
43 test<input_iterator<const int*>, input_iterator<const int*>, output_iterator<int*> >();
44 test<input_iterator<const int*>, input_iterator<const int*>, input_iterator<int*> >();
45 test<input_iterator<const int*>, input_iterator<const int*>, forward_iterator<int*> >();
46 test<input_iterator<const int*>, input_iterator<const int*>, bidirectional_iterator<int*> >();
47 test<input_iterator<const int*>, input_iterator<const int*>, random_access_iterator<int*> >();
48 test<input_iterator<const int*>, input_iterator<const int*>, int*>();
50 test<input_iterator<const int*>, forward_iterator<const int*>, output_iterator<int*> >();
51 test<input_iterator<const int*>, forward_iterator<const int*>, input_iterator<int*> >();
52 test<input_iterator<const int*>, forward_iterator<const int*>, forward_iterator<int*> >()
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/strings/basic.string/string.modifiers/string_erase/
iter_iter.pass.cpp 19 test(S s, typename S::difference_type pos, typename S::difference_type n, S expected) function
32 test(S(""), 0, 0, S(""));
33 test(S("abcde"), 0, 0, S("abcde"));
34 test(S("abcde"), 0, 1, S("bcde"));
35 test(S("abcde"), 0, 2, S("cde"));
36 test(S("abcde"), 0, 4, S("e"));
37 test(S("abcde"), 0, 5, S(""));
38 test(S("abcde"), 1, 0, S("abcde"));
39 test(S("abcde"), 1, 1, S("acde"));
40 test(S("abcde"), 1, 2, S("ade"))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/strings/basic.string/string.modifiers/string_replace/
iter_iter_pointer.pass.cpp 24 test(S s, S::size_type pos1, S::size_type n1, const S::value_type* str, S expected) function
39 test(S(""), 0, 0, "", S(""));
40 test(S(""), 0, 0, "12345", S("12345"));
41 test(S(""), 0, 0, "1234567890", S("1234567890"));
42 test(S(""), 0, 0, "12345678901234567890", S("12345678901234567890"));
43 test(S("abcde"), 0, 0, "", S("abcde"));
44 test(S("abcde"), 0, 0, "12345", S("12345abcde"));
45 test(S("abcde"), 0, 0, "1234567890", S("1234567890abcde"));
46 test(S("abcde"), 0, 0, "12345678901234567890", S("12345678901234567890abcde"));
47 test(S("abcde"), 0, 1, "", S("bcde"))
    [all...]
iter_iter_size_char.pass.cpp 24 test(S s, S::size_type pos1, S::size_type n1, S::size_type n2, function
40 test(S(""), 0, 0, 0, '3', S(""));
41 test(S(""), 0, 0, 5, '3', S("33333"));
42 test(S(""), 0, 0, 10, '3', S("3333333333"));
43 test(S(""), 0, 0, 20, '3', S("33333333333333333333"));
44 test(S("abcde"), 0, 0, 0, '3', S("abcde"));
45 test(S("abcde"), 0, 0, 5, '3', S("33333abcde"));
46 test(S("abcde"), 0, 0, 10, '3', S("3333333333abcde"));
47 test(S("abcde"), 0, 0, 20, '3', S("33333333333333333333abcde"));
48 test(S("abcde"), 0, 1, 0, '3', S("bcde"))
    [all...]
iter_iter_pointer_size.pass.cpp 24 test(S s, S::size_type pos1, S::size_type n1, const S::value_type* str, function
40 test(S(""), 0, 0, "", 0, S(""));
41 test(S(""), 0, 0, "12345", 0, S(""));
42 test(S(""), 0, 0, "12345", 1, S("1"));
43 test(S(""), 0, 0, "12345", 2, S("12"));
44 test(S(""), 0, 0, "12345", 4, S("1234"));
45 test(S(""), 0, 0, "12345", 5, S("12345"));
46 test(S(""), 0, 0, "1234567890", 0, S(""));
47 test(S(""), 0, 0, "1234567890", 1, S("1"));
48 test(S(""), 0, 0, "1234567890", 5, S("12345"))
    [all...]
size_size_pointer.pass.cpp 25 test(S s, S::size_type pos, S::size_type n1, function
49 test(S(""), 0, 0, "", S(""));
50 test(S(""), 0, 0, "12345", S("12345"));
51 test(S(""), 0, 0, "1234567890", S("1234567890"));
52 test(S(""), 0, 0, "12345678901234567890", S("12345678901234567890"));
53 test(S(""), 0, 1, "", S(""));
54 test(S(""), 0, 1, "12345", S("12345"));
55 test(S(""), 0, 1, "1234567890", S("1234567890"));
56 test(S(""), 0, 1, "12345678901234567890", S("12345678901234567890"));
57 test(S(""), 1, 0, "", S("can't happen"))
    [all...]
size_size_size_char.pass.cpp 23 test(S s, S::size_type pos, S::size_type n1, function
48 test(S(""), 0, 0, 0, '2', S(""));
49 test(S(""), 0, 0, 5, '2', S("22222"));
50 test(S(""), 0, 0, 10, '2', S("2222222222"));
51 test(S(""), 0, 0, 20, '2', S("22222222222222222222"));
52 test(S(""), 0, 1, 0, '2', S(""));
53 test(S(""), 0, 1, 5, '2', S("22222"));
54 test(S(""), 0, 1, 10, '2', S("2222222222"));
55 test(S(""), 0, 1, 20, '2', S("22222222222222222222"));
56 test(S(""), 1, 0, 0, '2', S("can't happen"))
    [all...]
size_size_string.pass.cpp 25 test(S s, S::size_type pos1, 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...]
size_size_pointer_size.pass.cpp 25 test(S s, S::size_type pos, S::size_type n1, function
50 test(S(""), 0, 0, "", 0, S(""));
51 test(S(""), 0, 0, "12345", 0, S(""));
52 test(S(""), 0, 0, "12345", 1, S("1"));
53 test(S(""), 0, 0, "12345", 2, S("12"));
54 test(S(""), 0, 0, "12345", 4, S("1234"));
55 test(S(""), 0, 0, "12345", 5, S("12345"));
56 test(S(""), 0, 0, "1234567890", 0, S(""));
57 test(S(""), 0, 0, "1234567890", 1, S("1"));
58 test(S(""), 0, 0, "1234567890", 5, S("12345"))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.limits/limits/numeric.limits.members/
digits.pass.cpp 10 // test numeric_limits
19 test() function
21 static_assert(std::numeric_limits<T>::digits == expected, "digits test 1");
22 static_assert(std::numeric_limits<const T>::digits == expected, "digits test 2");
23 static_assert(std::numeric_limits<volatile T>::digits == expected, "digits test 3");
24 static_assert(std::numeric_limits<const volatile T>::digits == expected, "digits test 4");
29 test<bool, 1>();
30 test<char, std::numeric_limits<char>::is_signed ? 7 : 8>();
31 test<signed char, 7>();
32 test<unsigned char, 8>()
    [all...]
digits10.pass.cpp 10 // test numeric_limits
19 test() function
21 static_assert(std::numeric_limits<T>::digits10 == expected, "digits10 test 1");
22 static_assert(std::numeric_limits<T>::is_bounded, "digits10 test 5");
23 static_assert(std::numeric_limits<const T>::digits10 == expected, "digits10 test 2");
24 static_assert(std::numeric_limits<const T>::is_bounded, "digits10 test 6");
25 static_assert(std::numeric_limits<volatile T>::digits10 == expected, "digits10 test 3");
26 static_assert(std::numeric_limits<volatile T>::is_bounded, "digits10 test 7");
27 static_assert(std::numeric_limits<const volatile T>::digits10 == expected, "digits10 test 4");
28 static_assert(std::numeric_limits<const volatile T>::is_bounded, "digits10 test 8")
    [all...]
epsilon.pass.cpp 10 // test numeric_limits
20 test(T expected) function
30 test<bool>(false);
31 test<char>(0);
32 test<signed char>(0);
33 test<unsigned char>(0);
34 test<wchar_t>(0);
36 test<char16_t>(0);
37 test<char32_t>(0);
39 test<short>(0)
    [all...]
infinity.pass.cpp 10 // test numeric_limits
20 test(T expected) function
32 test<bool>(false);
33 test<char>(0);
34 test<signed char>(0);
35 test<unsigned char>(0);
36 test<wchar_t>(0);
38 test<char16_t>(0);
39 test<char32_t>(0);
41 test<short>(0)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/strings/basic.string/string.ops/string_compare/
size_size_string.pass.cpp 29 test(const S& s, typename S::size_type pos1, typename S::size_type n1, function
47 test(S(""), 0, 0, S(""), 0);
48 test(S(""), 0, 0, S("abcde"), -5);
49 test(S(""), 0, 0, S("abcdefghij"), -10);
50 test(S(""), 0, 0, S("abcdefghijklmnopqrst"), -20);
51 test(S(""), 0, 1, S(""), 0);
52 test(S(""), 0, 1, S("abcde"), -5);
53 test(S(""), 0, 1, S("abcdefghij"), -10);
54 test(S(""), 0, 1, S("abcdefghijklmnopqrst"), -20);
55 test(S(""), 1, 0, S(""), 0)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/atomics/atomics.types.operations/atomics.types.operations.req/
atomic_exchange.pass.cpp 26 test() function
51 test<A>();
52 test<char>();
53 test<signed char>();
54 test<unsigned char>();
55 test<short>();
56 test<unsigned short>();
57 test<int>();
58 test<unsigned int>();
59 test<long>()
    [all...]
atomic_exchange_explicit.pass.cpp 26 test() function
53 test<A>();
54 test<char>();
55 test<signed char>();
56 test<unsigned char>();
57 test<short>();
58 test<unsigned short>();
59 test<int>();
60 test<unsigned int>();
61 test<long>()
    [all...]
atomic_init.pass.cpp 26 test() function
49 test<A>();
50 test<char>();
51 test<signed char>();
52 test<unsigned char>();
53 test<short>();
54 test<unsigned short>();
55 test<int>();
56 test<unsigned int>();
57 test<long>()
    [all...]
atomic_load.pass.cpp 26 test() function
49 test<A>();
50 test<char>();
51 test<signed char>();
52 test<unsigned char>();
53 test<short>();
54 test<unsigned short>();
55 test<int>();
56 test<unsigned int>();
57 test<long>()
    [all...]
atomic_load_explicit.pass.cpp 26 test() function
49 test<A>();
50 test<char>();
51 test<signed char>();
52 test<unsigned char>();
53 test<short>();
54 test<unsigned short>();
55 test<int>();
56 test<unsigned int>();
57 test<long>()
    [all...]
atomic_store.pass.cpp 26 test() function
49 test<A>();
50 test<char>();
51 test<signed char>();
52 test<unsigned char>();
53 test<short>();
54 test<unsigned short>();
55 test<int>();
56 test<unsigned int>();
57 test<long>()
    [all...]
atomic_store_explicit.pass.cpp 26 test() function
49 test<A>();
50 test<char>();
51 test<signed char>();
52 test<unsigned char>();
53 test<short>();
54 test<unsigned short>();
55 test<int>();
56 test<unsigned int>();
57 test<long>()
    [all...]
  /dalvik/dx/tests/069-dex-source-position/
Blort.java 19 public static int test(int x) { method in class:Blort
24 x = test(x - 1); // line 10
28 x += test(x - 2); // line 14
  /external/clang/test/CodeGen/
2002-02-13-ReloadProblem.c 12 const char *rangematch(const char *pattern, int test, int c) {
14 if ((c <= test) | (tolower(c) <= tolower((unsigned char)test)))

Completed in 470 milliseconds

1 2 3 45 6 7 8 91011>>