HomeSort by relevance Sort by last modified time
    Searched defs:test (Results 326 - 350 of 9198) sorted by null

<<11121314151617181920>>

  /prebuilts/go/linux-x86/test/
linkx_run.go 8 // Run the linkx test.
21 // test(" ") // old deprecated & removed syntax
22 test("=") // new syntax
25 func test(sep string) { func
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/algorithms/alg.sorting/alg.binary.search/equal.range/
equal_range.pass.cpp 27 test(Iter first, Iter last, const T& value) function
42 test()
56 test(Iter(v.data()), Iter(v.data()+v.size()), x);
64 test(d, e, x);
66 test<forward_iterator<const int*> >();
67 test<bidirectional_iterator<const int*> >();
68 test<random_access_iterator<const int*> >();
69 test<const int*>();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/algorithms/alg.sorting/alg.binary.search/lower.bound/
lower_bound.pass.cpp 26 test(Iter first, Iter last, const T& value) function
37 test()
51 test(Iter(v.data()), Iter(v.data()+v.size()), x);
59 test(d, e, x);
61 test<forward_iterator<const int*> >();
62 test<bidirectional_iterator<const int*> >();
63 test<random_access_iterator<const int*> >();
64 test<const int*>();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/algorithms/alg.sorting/alg.binary.search/upper.bound/
upper_bound.pass.cpp 26 test(Iter first, Iter last, const T& value) function
37 test()
51 test(Iter(v.data()), Iter(v.data()+v.size()), x);
59 test(d, e, x);
61 test<forward_iterator<const int*> >();
62 test<bidirectional_iterator<const int*> >();
63 test<random_access_iterator<const int*> >();
64 test<const int*>();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/deque/deque.cons/
alloc.pass.cpp 23 test(const Allocator& a) function
32 test<int>(std::allocator<int>());
33 test<NotConstructible>(test_allocator<NotConstructible>(3));
35 test<int>(min_allocator<int>());
36 test<NotConstructible>(min_allocator<NotConstructible>{});
37 test<int>(explicit_allocator<int>());
38 test<NotConstructible>(explicit_allocator<NotConstructible>{});
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/vector/vector.cons/
construct_size_value.pass.cpp 24 test(typename C::size_type n, const typename C::value_type& x) function
36 test<std::vector<int> >(50, 3);
38 test<std::vector<int, limited_allocator<int, 50 + 1> > >(50, 5);
40 test<std::vector<int, min_allocator<int>> >(50, 3);
construct_size_value_alloc.pass.cpp 23 test(typename C::size_type n, const typename C::value_type& x, function
37 test<std::vector<int> >(50, 3, std::allocator<int>());
39 test<std::vector<int, min_allocator<int>> >(50, 3, min_allocator<int>());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/vector.bool/
construct_size_value.pass.cpp 23 test(typename C::size_type n, const typename C::value_type& x) function
34 test<std::vector<bool> >(50, true);
36 test<std::vector<bool, min_allocator<bool>> >(50, true);
construct_size_value_alloc.pass.cpp 23 test(typename C::size_type n, const typename C::value_type& x, function
36 test<std::vector<bool> >(50, true, std::allocator<bool>());
38 test<std::vector<bool, min_allocator<bool>> >(50, true, min_allocator<bool>());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/optional/optional.inplace/
in_place_t.pass.cpp 25 test(const in_place_t&) function
35 static_assert(test(in_place) == 3, "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/optional/optional.nullopt/
nullopt_t.pass.cpp 25 test(const nullopt_t&) function
37 static_assert(test(nullopt) == 3, "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/optional/optional.object/
types.pass.cpp 27 test() function
34 test<optional<int>, int>();
35 test<optional<const int>, const int>();
36 test<optional<double>, double>();
37 test<optional<const double>, const double>();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/string.view/string.view.access/
at.pass.cpp 26 void test ( const CharT *s, size_t len ) { function
41 test ( "ABCDE", 5 );
42 test ( "a", 1 );
44 test ( L"ABCDE", 5 );
45 test ( L"a", 1 );
48 test ( u"ABCDE", 5 );
49 test ( u"a", 1 );
51 test ( U"ABCDE", 5 );
52 test ( U"a", 1 );
back.pass.cpp 21 bool test ( const CharT *s, size_t len ) { function
29 assert ( test ( "ABCDE", 5 ));
30 assert ( test ( "a", 1 ));
32 assert ( test ( L"ABCDE", 5 ));
33 assert ( test ( L"a", 1 ));
36 assert ( test ( u"ABCDE", 5 ));
37 assert ( test ( u"a", 1 ));
39 assert ( test ( U"ABCDE", 5 ));
40 assert ( test ( U"a", 1 ));
front.pass.cpp 21 bool test ( const CharT *s, size_t len ) { function
29 assert ( test ( "ABCDE", 5 ));
30 assert ( test ( "a", 1 ));
32 assert ( test ( L"ABCDE", 5 ));
33 assert ( test ( L"a", 1 ));
36 assert ( test ( u"ABCDE", 5 ));
37 assert ( test ( u"a", 1 ));
39 assert ( test ( U"ABCDE", 5 ));
40 assert ( test ( U"a", 1 ));
index.pass.cpp 21 void test ( const CharT *s, size_t len ) { function
31 test ( "ABCDE", 5 );
32 test ( "a", 1 );
34 test ( L"ABCDE", 5 );
35 test ( L"a", 1 );
38 test ( u"ABCDE", 5 );
39 test ( u"a", 1 );
41 test ( U"ABCDE", 5 );
42 test ( U"a", 1 );
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/utilities/time/header.chrono.synop/
treat_as_floating_point_v.pass.cpp 23 void test() function
42 test<int, false>();
43 test<unsigned, false>();
44 test<char, false>();
45 test<bool, false>();
46 test<float, true>();
47 test<double, true>();
48 test<long double, true>();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/utilities/tuple/
tuple_size_v.pass.cpp 23 void test() function
34 test<std::tuple<>, 0>();
36 test<std::tuple<int>, 1>();
37 test<std::array<int, 1>, 1>();
39 test<std::tuple<int, int>, 2>();
40 test<std::pair<int, int>, 2>();
41 test<std::array<int, 2>, 2>();
43 test<std::tuple<int, int, int>, 3>();
44 test<std::array<int, 3>, 3>();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.cons/
container.pass.cpp 22 test(C c) function
29 test(std::vector<int>());
30 test(nasty_vector<int>());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op=/
rv_value.pass.cpp 28 test(C c) function
37 test(std::vector<std::unique_ptr<int> >());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.cons/
container.pass.cpp 22 test(C c) function
29 test(std::list<int>());
30 test(nasty_list<int>());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op=/
rv_value.pass.cpp 26 test(C c) function
35 test(std::list<std::unique_ptr<int> >());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.cons/
test.pass.cpp 22 test(C c) function
29 test(std::vector<int>());
30 test(nasty_vector<int>());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/language.support/support.limits/limits/
is_specialized.pass.cpp 10 // test numeric_limits
25 // More convenient to test it here.
31 void test() function
45 test<bool>();
46 test<char>();
47 test<wchar_t>();
49 test<char16_t>();
50 test<char32_t>();
52 test<signed char>();
53 test<unsigned char>()
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/language.support/support.limits/limits/numeric.limits.members/
denorm_min.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...]

Completed in 1043 milliseconds

<<11121314151617181920>>