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

<<11121314151617181920>>

  /external/libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/
atomic_fetch_or.pass.cpp 28 test() function
48 test<char>();
49 test<signed char>();
50 test<unsigned char>();
51 test<short>();
52 test<unsigned short>();
53 test<int>();
54 test<unsigned int>();
55 test<long>();
56 test<unsigned long>()
    [all...]
atomic_fetch_or_explicit.pass.cpp 28 test() function
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>();
58 test<unsigned long>()
    [all...]
atomic_fetch_xor.pass.cpp 28 test() function
48 test<char>();
49 test<signed char>();
50 test<unsigned char>();
51 test<short>();
52 test<unsigned short>();
53 test<int>();
54 test<unsigned int>();
55 test<long>();
56 test<unsigned long>()
    [all...]
atomic_fetch_xor_explicit.pass.cpp 28 test() function
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>();
58 test<unsigned long>()
    [all...]
  /external/libcxx/test/std/containers/container.adaptors/queue/queue.cons.alloc/
ctor_alloc.pass.cpp 20 struct test struct in inherits:std::queue
25 explicit test(const test_allocator<int>& a) : base(a) {} function in struct:test
26 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {} function in struct:test
28 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {} function in struct:test
29 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} function in struct:test
36 test q(test_allocator<int>(3));
  /external/libcxx/test/std/containers/container.adaptors/stack/stack.cons.alloc/
ctor_alloc.pass.cpp 20 struct test struct in inherits:std::stack
25 explicit test(const test_allocator<int>& a) : base(a) {} function in struct:test
26 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {} function in struct:test
28 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {} function in struct:test
29 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} function in struct:test
36 test q(test_allocator<int>(3));
  /external/libcxx/test/std/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...]
  /external/libcxx/test/std/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> >();
  /external/libcxx/test/std/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));
  /external/libcxx/test/std/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" );
  /external/libcxx/test/std/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> ( {} );
  /external/libcxx/test/std/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> ();
  /external/libcxx/test/std/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);
  /external/libcxx/test/std/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);
  /external/libcxx/test/std/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> >();
  /external/libcxx/test/std/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();

Completed in 257 milliseconds

<<11121314151617181920>>