HomeSort by relevance Sort by last modified time
    Searched defs:test (Results 776 - 800 of 4552) sorted by null

<<31323334353637383940>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.cons/
copy_alloc.pass.cpp 22 test(const C& x, const typename C::allocator_type& a) function
34 test(std::deque<int, test_allocator<int> >(ab, an, test_allocator<int>(3)),
40 test(std::deque<int, other_allocator<int> >(ab, an, other_allocator<int>(3)),
47 test(std::deque<int, min_allocator<int> >(ab, an, min_allocator<int>()),
default.pass.cpp 23 test() function
35 test<int, std::allocator<int> >();
36 test<NotConstructible, stack_allocator<NotConstructible, 1> >();
38 test<int, min_allocator<int> >();
39 test<NotConstructible, min_allocator<NotConstructible> >();
size_value.pass.cpp 22 test(unsigned n, const T& x) function
35 test<int, std::allocator<int> >(0, 5);
36 test<int, std::allocator<int> >(1, 10);
37 test<int, std::allocator<int> >(10, 11);
38 test<int, std::allocator<int> >(1023, -11);
39 test<int, std::allocator<int> >(1024, 25);
40 test<int, std::allocator<int> >(1025, 0);
41 test<int, std::allocator<int> >(2047, 110);
42 test<int, std::allocator<int> >(2048, -500);
43 test<int, std::allocator<int> >(2049, 654)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/
types.pass.cpp 12 // Test nested types and default template args:
42 test() function
71 test<int, test_allocator<int> >();
72 test<int*, std::allocator<int*> >();
73 test<Copyable, test_allocator<Copyable> >();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/dynarray/dynarray.cons/
alloc.pass.cpp 45 void test ( const std::initializer_list<T> &vals, const Allocator &alloc ) { function
56 void test ( const T &val, const Allocator &alloc1, const Allocator &alloc2 ) { function
77 // This test is waiting on the resolution of LWG issue #2235
81 // test ( nstr("fourteen"), Alloc(3), Alloc(4) );
82 // test ( { nstr("1"), nstr("1"), nstr("2"), nstr("3"), nstr("5"), nstr("8")}, Alloc(6));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/dynarray/dynarray.mutate/
default.pass.cpp 30 void test ( const T &val ) { function
41 test<int> ( 14 );
42 test<double> ( 14.0 );
43 test<std::complex<double>> ( std::complex<double> ( 14, 0 ));
44 test<std::string> ( "fourteen" );
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/dynarray/dynarray.overview/
capacity.pass.cpp 37 void test ( std::initializer_list<T> vals ) { function
46 test ( { 1, 1, 2, 3, 5, 8 } );
47 test ( { 1., 1., 2., 3., 5., 8. } );
48 test ( { std::string("1"), std::string("1"), std::string("2"), std::string("3"),
51 test<int> ( {} );
52 test<std::complex<double>> ( {} );
53 test<std::string> ( {} );
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/dynarray/dynarray.zero/
default.pass.cpp 33 void test ( ) { function
43 test<int> ();
44 test<double> ();
45 test<std::complex<double>> ();
46 test<std::string> ();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.ops/
reverse.pass.cpp 22 void test(int N) function
37 test<std::forward_list<int> >(i);
40 test<std::forward_list<int, min_allocator<int>> >(i);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/
types.pass.cpp 12 // Test nested types and default template args:
42 test() function
71 test<int, test_allocator<int> >();
72 test<int*, std::allocator<int*> >();
73 test<Copyable, test_allocator<Copyable> >();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.cons/
construct_iter_iter.pass.cpp 24 test(Iterator first, Iterator last) function
38 test<std::vector<int> >(input_iterator<const int*>(a), input_iterator<const int*>(an));
39 test<std::vector<int> >(forward_iterator<const int*>(a), forward_iterator<const int*>(an));
40 test<std::vector<int> >(bidirectional_iterator<const int*>(a), bidirectional_iterator<const int*>(an));
41 test<std::vector<int> >(random_access_iterator<const int*>(a), random_access_iterator<const int*>(an));
42 test<std::vector<int> >(a, an);
44 test<std::vector<int, stack_allocator<int, 63> > >(input_iterator<const int*>(a), input_iterator<const int*>(an));
45 test<std::vector<int, stack_allocator<int, 18> > >(forward_iterator<const int*>(a), forward_iterator<const int*>(an));
46 test<std::vector<int, stack_allocator<int, 18> > >(bidirectional_iterator<const int*>(a), bidirectional_iterator<const int*>(an));
47 test<std::vector<int, stack_allocator<int, 18> > >(random_access_iterator<const int*>(a), random_access (…)
    [all...]
construct_size.pass.cpp 56 test(typename C::size_type n) function
64 test<std::vector<int> >(50);
65 test<std::vector<DefaultOnly> >(500);
68 test<std::vector<int, min_allocator<int>> >(50);
69 test<std::vector<DefaultOnly, min_allocator<DefaultOnly>> >(500);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
construct_iter_iter.pass.cpp 23 test(Iterator first, Iterator last) function
36 test<std::vector<bool> >(input_iterator<const bool*>(a), input_iterator<const bool*>(an));
37 test<std::vector<bool> >(forward_iterator<const bool*>(a), forward_iterator<const bool*>(an));
38 test<std::vector<bool> >(bidirectional_iterator<const bool*>(a), bidirectional_iterator<const bool*>(an));
39 test<std::vector<bool> >(random_access_iterator<const bool*>(a), random_access_iterator<const bool*>(an));
40 test<std::vector<bool> >(a, an);
42 test<std::vector<bool, min_allocator<bool>> >(input_iterator<const bool*>(a), input_iterator<const bool*>(an));
43 test<std::vector<bool, min_allocator<bool>> >(forward_iterator<const bool*>(a), forward_iterator<const bool*>(an));
44 test<std::vector<bool, min_allocator<bool>> >(bidirectional_iterator<const bool*>(a), bidirectional_iterator<const bool*>(an));
45 test<std::vector<bool, min_allocator<bool>> >(random_access_iterator<const bool*>(a), random_access_ite (…)
    [all...]
construct_size.pass.cpp 51 test(typename C::size_type n) function
59 test<std::vector<bool> >(50);
61 test<std::vector<bool, min_allocator<bool>> >(50);
types.pass.cpp 12 // Test nested types and default template args:
40 test() function
65 test<test_allocator<bool> >();
66 test<std::allocator<bool> >();
70 test<min_allocator<bool> >();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.auto.ptr/auto.ptr/auto.ptr.cons/
convert.fail.cpp 22 test() function
39 test();
convert.pass.cpp 22 test() function
39 test();
copy.fail.cpp 22 test() function
37 test();
copy.pass.cpp 22 test() function
37 test();
explicit.fail.cpp 22 test() function
39 test();
pointer.pass.cpp 22 test() function
39 test();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/
assign_from_auto_ptr_ref.pass.cpp 22 test() function
39 test();
convert_from_auto_ptr_ref.pass.cpp 22 test() function
38 test();
convert_to_auto_ptr.pass.cpp 28 test() function
35 test();
convert_to_auto_ptr_ref.pass.cpp 22 test() function
32 test();

Completed in 599 milliseconds

<<31323334353637383940>>