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

<<31323334353637383940>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.replace/
replace.pass.cpp 26 test() function
40 test<forward_iterator<int*> >();
41 test<bidirectional_iterator<int*> >();
42 test<random_access_iterator<int*> >();
43 test<int*>();
replace_if.pass.cpp 27 test() function
41 test<forward_iterator<int*> >();
42 test<bidirectional_iterator<int*> >();
43 test<random_access_iterator<int*> >();
44 test<int*>();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.heap.operations/make.heap/
make_heap.pass.cpp 20 void test(unsigned N) function
33 test(0);
34 test(1);
35 test(2);
36 test(3);
37 test(10);
38 test(1000);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.heap.operations/pop.heap/
pop_heap.pass.cpp 20 void test(unsigned N) function
38 test(1000);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.heap.operations/push.heap/
push_heap.pass.cpp 21 void test(unsigned N) function
37 test(1000);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.heap.operations/sort.heap/
sort_heap.pass.cpp 20 void test(unsigned N) function
34 test(0);
35 test(1);
36 test(2);
37 test(3);
38 test(10);
39 test(1000);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.merge/
inplace_merge.pass.cpp 46 test(unsigned N) function
57 test() function
69 test<Iter>(4);
70 test<Iter>(100);
71 test<Iter>(1000);
76 test<bidirectional_iterator<int*> >();
77 test<random_access_iterator<int*> >();
78 test<int*>();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.min.max/
max.pass.cpp 21 test(const T& a, const T& b, const T& x) function
31 test(x, y, x);
32 test(y, x, y);
37 test(x, y, y);
38 test(y, x, y);
43 test(x, y, x);
44 test(y, x, x);
max_comp.pass.cpp 23 test(const T& a, const T& b, C c, const T& x) function
33 test(x, y, std::greater<int>(), x);
34 test(y, x, std::greater<int>(), y);
39 test(x, y, std::greater<int>(), x);
40 test(y, x, std::greater<int>(), x);
45 test(x, y, std::greater<int>(), y);
46 test(y, x, std::greater<int>(), y);
max_element.pass.cpp 24 test(Iter first, Iter last) function
38 test(unsigned N) function
44 test(Iter(a), Iter(a+N));
50 test() function
52 test<Iter>(0);
53 test<Iter>(1);
54 test<Iter>(2);
55 test<Iter>(3);
56 test<Iter>(10);
57 test<Iter>(1000)
    [all...]
min.pass.cpp 21 test(const T& a, const T& b, const T& x) function
31 test(x, y, x);
32 test(y, x, y);
37 test(x, y, x);
38 test(y, x, x);
43 test(x, y, y);
44 test(y, x, y);
min_comp.pass.cpp 23 test(const T& a, const T& b, C c, const T& x) function
33 test(x, y, std::greater<int>(), x);
34 test(y, x, std::greater<int>(), y);
39 test(x, y, std::greater<int>(), y);
40 test(y, x, std::greater<int>(), y);
45 test(x, y, std::greater<int>(), x);
46 test(y, x, std::greater<int>(), x);
min_element.pass.cpp 24 test(Iter first, Iter last) function
38 test(unsigned N) function
44 test(Iter(a), Iter(a+N));
50 test() function
52 test<Iter>(0);
53 test<Iter>(1);
54 test<Iter>(2);
55 test<Iter>(3);
56 test<Iter>(10);
57 test<Iter>(1000)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.sort/is.sorted/
is_sorted.pass.cpp 24 test() function
179 test<forward_iterator<const int*> >();
180 test<bidirectional_iterator<const int*> >();
181 test<random_access_iterator<const int*> >();
182 test<const int*>();
is_sorted_comp.pass.cpp 25 test() function
180 test<forward_iterator<const int*> >();
181 test<bidirectional_iterator<const int*> >();
182 test<random_access_iterator<const int*> >();
183 test<const int*>();
is_sorted_until.pass.cpp 24 test() function
179 test<forward_iterator<const int*> >();
180 test<bidirectional_iterator<const int*> >();
181 test<random_access_iterator<const int*> >();
182 test<const int*>();
is_sorted_until_comp.pass.cpp 25 test() function
180 test<forward_iterator<const int*> >();
181 test<bidirectional_iterator<const int*> >();
182 test<random_access_iterator<const int*> >();
183 test<const int*>();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/atomics/atomics.types.operations/atomics.types.operations.req/
atomic_fetch_and.pass.cpp 26 test() function
46 test<char>();
47 test<signed char>();
48 test<unsigned char>();
49 test<short>();
50 test<unsigned short>();
51 test<int>();
52 test<unsigned int>();
53 test<long>();
54 test<unsigned long>()
    [all...]
atomic_fetch_and_explicit.pass.cpp 26 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.pass.cpp 26 test() function
46 test<char>();
47 test<signed char>();
48 test<unsigned char>();
49 test<short>();
50 test<unsigned short>();
51 test<int>();
52 test<unsigned int>();
53 test<long>();
54 test<unsigned long>()
    [all...]
atomic_fetch_or_explicit.pass.cpp 26 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.pass.cpp 26 test() function
46 test<char>();
47 test<signed char>();
48 test<unsigned char>();
49 test<short>();
50 test<unsigned short>();
51 test<int>();
52 test<unsigned int>();
53 test<long>();
54 test<unsigned long>()
    [all...]
atomic_fetch_xor_explicit.pass.cpp 26 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...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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));

Completed in 580 milliseconds

<<31323334353637383940>>