/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.nonmodifying/alg.is_permutation/ |
is_permutation.pass.cpp | 32 assert(std::is_permutation(forward_iterator<const int*>(ia), 33 forward_iterator<const int*>(ia + 0), 34 forward_iterator<const int*>(ib)) == true); 36 assert(std::is_permutation(forward_iterator<const int*>(ia), 37 forward_iterator<const int*>(ia + 0), 38 forward_iterator<const int*>(ib), 39 forward_iterator<const int*>(ib + 0)) == true); 41 assert(std::is_permutation(forward_iterator<const int*>(ia), 42 forward_iterator<const int*>(ia + sa), 43 forward_iterator<const int*>(ib)) == true) [all...] |
is_permutation_pred.pass.cpp | 41 assert(std::is_permutation(forward_iterator<const int*>(ia), 42 forward_iterator<const int*>(ia + 0), 43 forward_iterator<const int*>(ib), 45 assert(std::is_permutation(forward_iterator<const int*>(ia), 46 forward_iterator<const int*>(ia + sa), 47 forward_iterator<const int*>(ib), 50 assert(std::is_permutation(forward_iterator<const int*>(ia), 51 forward_iterator<const int*>(ia + sa), 52 forward_iterator<const int*>(ib), 53 forward_iterator<const int*>(ib + sa) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.transform/ |
binary_transform.pass.cpp | 45 test<input_iterator<const int*>, input_iterator<const int*>, forward_iterator<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*> >(); 53 test<input_iterator<const int*>, forward_iterator<const int*>, bidirectional_iterator<int*> >(); 54 test<input_iterator<const int*>, forward_iterator<const int*>, random_access_iterator<int*> >(); 55 test<input_iterator<const int*>, forward_iterator<const int*>, int*>(); 59 test<input_iterator<const int*>, bidirectional_iterator<const int*>, forward_iterator<int*> >(); 66 test<input_iterator<const int*>, random_access_iterator<const int*>, forward_iterator<int*> >() [all...] |
unary_transform.pass.cpp | 45 test<input_iterator<const int*>, forward_iterator<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*> >(); 53 test<forward_iterator<const int*>, bidirectional_iterator<int*> >(); 54 test<forward_iterator<const int*>, random_access_iterator<int*> >(); 55 test<forward_iterator<const int*>, int*>(); 59 test<bidirectional_iterator<const int*>, forward_iterator<int*> >(); 66 test<random_access_iterator<const int*>, forward_iterator<int*> >() [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.merge/ |
merge.pass.cpp | 74 test<input_iterator<const int*>, input_iterator<const int*>, forward_iterator<int*> >(); 79 test<input_iterator<const int*>, forward_iterator<const int*>, output_iterator<int*> >(); 80 test<input_iterator<const int*>, forward_iterator<const int*>, forward_iterator<int*> >(); 81 test<input_iterator<const int*>, forward_iterator<const int*>, bidirectional_iterator<int*> >(); 82 test<input_iterator<const int*>, forward_iterator<const int*>, random_access_iterator<int*> >(); 83 test<input_iterator<const int*>, forward_iterator<const int*>, int*>(); 86 test<input_iterator<const int*>, bidirectional_iterator<const int*>, forward_iterator<int*> >(); 92 test<input_iterator<const int*>, random_access_iterator<const int*>, forward_iterator<int*> >(); 98 test<input_iterator<const int*>, const int*, forward_iterator<int*> >() [all...] |
merge_comp.pass.cpp | 79 test<input_iterator<const int*>, input_iterator<const int*>, forward_iterator<int*> >(); 84 test<input_iterator<const int*>, forward_iterator<const int*>, output_iterator<int*> >(); 85 test<input_iterator<const int*>, forward_iterator<const int*>, forward_iterator<int*> >(); 86 test<input_iterator<const int*>, forward_iterator<const int*>, bidirectional_iterator<int*> >(); 87 test<input_iterator<const int*>, forward_iterator<const int*>, random_access_iterator<int*> >(); 88 test<input_iterator<const int*>, forward_iterator<const int*>, int*>(); 91 test<input_iterator<const int*>, bidirectional_iterator<const int*>, forward_iterator<int*> >(); 97 test<input_iterator<const int*>, random_access_iterator<const int*>, forward_iterator<int*> >(); 103 test<input_iterator<const int*>, const int*, forward_iterator<int*> >() [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.set.operations/set.difference/ |
set_difference.pass.cpp | 52 test<input_iterator<const int*>, input_iterator<const int*>, forward_iterator<int*> >(); 57 test<input_iterator<const int*>, forward_iterator<const int*>, output_iterator<int*> >(); 58 test<input_iterator<const int*>, forward_iterator<const int*>, forward_iterator<int*> >(); 59 test<input_iterator<const int*>, forward_iterator<const int*>, bidirectional_iterator<int*> >(); 60 test<input_iterator<const int*>, forward_iterator<const int*>, random_access_iterator<int*> >(); 61 test<input_iterator<const int*>, forward_iterator<const int*>, int*>(); 64 test<input_iterator<const int*>, bidirectional_iterator<const int*>, forward_iterator<int*> >(); 70 test<input_iterator<const int*>, random_access_iterator<const int*>, forward_iterator<int*> >(); 76 test<input_iterator<const int*>, const int*, forward_iterator<int*> >() [all...] |
set_difference_comp.pass.cpp | 54 test<input_iterator<const int*>, input_iterator<const int*>, forward_iterator<int*> >(); 59 test<input_iterator<const int*>, forward_iterator<const int*>, output_iterator<int*> >(); 60 test<input_iterator<const int*>, forward_iterator<const int*>, forward_iterator<int*> >(); 61 test<input_iterator<const int*>, forward_iterator<const int*>, bidirectional_iterator<int*> >(); 62 test<input_iterator<const int*>, forward_iterator<const int*>, random_access_iterator<int*> >(); 63 test<input_iterator<const int*>, forward_iterator<const int*>, int*>(); 66 test<input_iterator<const int*>, bidirectional_iterator<const int*>, forward_iterator<int*> >(); 72 test<input_iterator<const int*>, random_access_iterator<const int*>, forward_iterator<int*> >(); 78 test<input_iterator<const int*>, const int*, forward_iterator<int*> >() [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.set.operations/set.intersection/ |
set_intersection.pass.cpp | 50 test<input_iterator<const int*>, input_iterator<const int*>, forward_iterator<int*> >(); 55 test<input_iterator<const int*>, forward_iterator<const int*>, output_iterator<int*> >(); 56 test<input_iterator<const int*>, forward_iterator<const int*>, forward_iterator<int*> >(); 57 test<input_iterator<const int*>, forward_iterator<const int*>, bidirectional_iterator<int*> >(); 58 test<input_iterator<const int*>, forward_iterator<const int*>, random_access_iterator<int*> >(); 59 test<input_iterator<const int*>, forward_iterator<const int*>, int*>(); 62 test<input_iterator<const int*>, bidirectional_iterator<const int*>, forward_iterator<int*> >(); 68 test<input_iterator<const int*>, random_access_iterator<const int*>, forward_iterator<int*> >(); 74 test<input_iterator<const int*>, const int*, forward_iterator<int*> >() [all...] |
set_intersection_comp.pass.cpp | 52 test<input_iterator<const int*>, input_iterator<const int*>, forward_iterator<int*> >(); 57 test<input_iterator<const int*>, forward_iterator<const int*>, output_iterator<int*> >(); 58 test<input_iterator<const int*>, forward_iterator<const int*>, forward_iterator<int*> >(); 59 test<input_iterator<const int*>, forward_iterator<const int*>, bidirectional_iterator<int*> >(); 60 test<input_iterator<const int*>, forward_iterator<const int*>, random_access_iterator<int*> >(); 61 test<input_iterator<const int*>, forward_iterator<const int*>, int*>(); 64 test<input_iterator<const int*>, bidirectional_iterator<const int*>, forward_iterator<int*> >(); 70 test<input_iterator<const int*>, random_access_iterator<const int*>, forward_iterator<int*> >(); 76 test<input_iterator<const int*>, const int*, forward_iterator<int*> >() [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.set.operations/set.symmetric.difference/ |
set_symmetric_difference.pass.cpp | 51 test<input_iterator<const int*>, input_iterator<const int*>, forward_iterator<int*> >(); 56 test<input_iterator<const int*>, forward_iterator<const int*>, output_iterator<int*> >(); 57 test<input_iterator<const int*>, forward_iterator<const int*>, forward_iterator<int*> >(); 58 test<input_iterator<const int*>, forward_iterator<const int*>, bidirectional_iterator<int*> >(); 59 test<input_iterator<const int*>, forward_iterator<const int*>, random_access_iterator<int*> >(); 60 test<input_iterator<const int*>, forward_iterator<const int*>, int*>(); 63 test<input_iterator<const int*>, bidirectional_iterator<const int*>, forward_iterator<int*> >(); 69 test<input_iterator<const int*>, random_access_iterator<const int*>, forward_iterator<int*> >(); 75 test<input_iterator<const int*>, const int*, forward_iterator<int*> >() [all...] |
set_symmetric_difference_comp.pass.cpp | 55 test<input_iterator<const int*>, input_iterator<const int*>, forward_iterator<int*> >(); 60 test<input_iterator<const int*>, forward_iterator<const int*>, output_iterator<int*> >(); 61 test<input_iterator<const int*>, forward_iterator<const int*>, forward_iterator<int*> >(); 62 test<input_iterator<const int*>, forward_iterator<const int*>, bidirectional_iterator<int*> >(); 63 test<input_iterator<const int*>, forward_iterator<const int*>, random_access_iterator<int*> >(); 64 test<input_iterator<const int*>, forward_iterator<const int*>, int*>(); 67 test<input_iterator<const int*>, bidirectional_iterator<const int*>, forward_iterator<int*> >(); 73 test<input_iterator<const int*>, random_access_iterator<const int*>, forward_iterator<int*> >(); 79 test<input_iterator<const int*>, const int*, forward_iterator<int*> >() [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.set.operations/set.union/ |
set_union.pass.cpp | 50 test<input_iterator<const int*>, input_iterator<const int*>, forward_iterator<int*> >(); 55 test<input_iterator<const int*>, forward_iterator<const int*>, output_iterator<int*> >(); 56 test<input_iterator<const int*>, forward_iterator<const int*>, forward_iterator<int*> >(); 57 test<input_iterator<const int*>, forward_iterator<const int*>, bidirectional_iterator<int*> >(); 58 test<input_iterator<const int*>, forward_iterator<const int*>, random_access_iterator<int*> >(); 59 test<input_iterator<const int*>, forward_iterator<const int*>, int*>(); 62 test<input_iterator<const int*>, bidirectional_iterator<const int*>, forward_iterator<int*> >(); 68 test<input_iterator<const int*>, random_access_iterator<const int*>, forward_iterator<int*> >(); 74 test<input_iterator<const int*>, const int*, forward_iterator<int*> >() [all...] |
set_union_comp.pass.cpp | 52 test<input_iterator<const int*>, input_iterator<const int*>, forward_iterator<int*> >(); 57 test<input_iterator<const int*>, forward_iterator<const int*>, output_iterator<int*> >(); 58 test<input_iterator<const int*>, forward_iterator<const int*>, forward_iterator<int*> >(); 59 test<input_iterator<const int*>, forward_iterator<const int*>, bidirectional_iterator<int*> >(); 60 test<input_iterator<const int*>, forward_iterator<const int*>, random_access_iterator<int*> >(); 61 test<input_iterator<const int*>, forward_iterator<const int*>, int*>(); 64 test<input_iterator<const int*>, bidirectional_iterator<const int*>, forward_iterator<int*> >(); 70 test<input_iterator<const int*>, random_access_iterator<const int*>, forward_iterator<int*> >(); 76 test<input_iterator<const int*>, const int*, forward_iterator<int*> >() [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.partitions/ |
partition_point.pass.cpp | 30 assert(std::partition_point(forward_iterator<const int*>(std::begin(ia)), 31 forward_iterator<const int*>(std::end(ia)), 32 is_odd()) == forward_iterator<const int*>(ia)); 36 assert(std::partition_point(forward_iterator<const int*>(std::begin(ia)), 37 forward_iterator<const int*>(std::end(ia)), 38 is_odd()) == forward_iterator<const int*>(ia + 1)); 42 assert(std::partition_point(forward_iterator<const int*>(std::begin(ia)), 43 forward_iterator<const int*>(std::end(ia)), 44 is_odd()) == forward_iterator<const int*>(ia + 2)); 48 assert(std::partition_point(forward_iterator<const int*>(std::begin(ia)) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.nonmodifying/alg.adjacent.find/ |
adjacent_find.pass.cpp | 26 assert(std::adjacent_find(forward_iterator<const int*>(ia), 27 forward_iterator<const int*>(ia + sa)) == 28 forward_iterator<const int*>(ia+2)); 29 assert(std::adjacent_find(forward_iterator<const int*>(ia), 30 forward_iterator<const int*>(ia)) == 31 forward_iterator<const int*>(ia)); 32 assert(std::adjacent_find(forward_iterator<const int*>(ia+3), 33 forward_iterator<const int*>(ia + sa)) == 34 forward_iterator<const int*>(ia+sa));
|
adjacent_find_pred.pass.cpp | 27 assert(std::adjacent_find(forward_iterator<const int*>(ia), 28 forward_iterator<const int*>(ia + sa), 30 forward_iterator<const int*>(ia+2)); 31 assert(std::adjacent_find(forward_iterator<const int*>(ia), 32 forward_iterator<const int*>(ia), 34 forward_iterator<const int*>(ia)); 35 assert(std::adjacent_find(forward_iterator<const int*>(ia+3), 36 forward_iterator<const int*>(ia + sa), 38 forward_iterator<const int*>(ia+sa));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.copy/ |
copy.pass.cpp | 41 test<input_iterator<const int*>, forward_iterator<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*> >(); 49 test<forward_iterator<const int*>, bidirectional_iterator<int*> >(); 50 test<forward_iterator<const int*>, random_access_iterator<int*> >(); 51 test<forward_iterator<const int*>, int*>(); 55 test<bidirectional_iterator<const int*>, forward_iterator<int*> >(); 62 test<random_access_iterator<const int*>, forward_iterator<int*> >() [all...] |
copy_n.pass.cpp | 41 test<input_iterator<const int*>, forward_iterator<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*> >(); 49 test<forward_iterator<const int*>, bidirectional_iterator<int*> >(); 50 test<forward_iterator<const int*>, random_access_iterator<int*> >(); 51 test<forward_iterator<const int*>, int*>(); 55 test<bidirectional_iterator<const int*>, forward_iterator<int*> >(); 62 test<random_access_iterator<const int*>, forward_iterator<int*> >() [all...] |
copy_if.pass.cpp | 48 test<input_iterator<const int*>, forward_iterator<int*> >(); 53 test<forward_iterator<const int*>, output_iterator<int*> >(); 54 test<forward_iterator<const int*>, input_iterator<int*> >(); 55 test<forward_iterator<const int*>, forward_iterator<int*> >(); 56 test<forward_iterator<const int*>, bidirectional_iterator<int*> >(); 57 test<forward_iterator<const int*>, random_access_iterator<int*> >(); 58 test<forward_iterator<const int*>, int*>(); 62 test<bidirectional_iterator<const int*>, forward_iterator<int*> >(); 69 test<random_access_iterator<const int*>, forward_iterator<int*> >() [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.remove/ |
remove_copy.pass.cpp | 42 test<input_iterator<const int*>, forward_iterator<int*> >(); 47 test<forward_iterator<const int*>, output_iterator<int*> >(); 48 test<forward_iterator<const int*>, forward_iterator<int*> >(); 49 test<forward_iterator<const int*>, bidirectional_iterator<int*> >(); 50 test<forward_iterator<const int*>, random_access_iterator<int*> >(); 51 test<forward_iterator<const int*>, int*>(); 54 test<bidirectional_iterator<const int*>, forward_iterator<int*> >(); 60 test<random_access_iterator<const int*>, forward_iterator<int*> >(); 66 test<const int*, forward_iterator<int*> >() [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.move/ |
move.pass.cpp | 65 test<input_iterator<const int*>, forward_iterator<int*> >(); 70 test<forward_iterator<const int*>, output_iterator<int*> >(); 71 test<forward_iterator<const int*>, input_iterator<int*> >(); 72 test<forward_iterator<const int*>, forward_iterator<int*> >(); 73 test<forward_iterator<const int*>, bidirectional_iterator<int*> >(); 74 test<forward_iterator<const int*>, random_access_iterator<int*> >(); 75 test<forward_iterator<const int*>, int*>(); 79 test<bidirectional_iterator<const int*>, forward_iterator<int*> >(); 86 test<random_access_iterator<const int*>, forward_iterator<int*> >() [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.nonmodifying/alg.find.first.of/ |
find_first_of.pass.cpp | 30 forward_iterator<const int*>(ib), 31 forward_iterator<const int*>(ib + sb)) == 36 forward_iterator<const int*>(ic), 37 forward_iterator<const int*>(ic + 1)) == 41 forward_iterator<const int*>(ic), 42 forward_iterator<const int*>(ic)) == 46 forward_iterator<const int*>(ic), 47 forward_iterator<const int*>(ic+1)) ==
|
find_first_of_pred.pass.cpp | 32 forward_iterator<const int*>(ib), 33 forward_iterator<const int*>(ib + sb), 39 forward_iterator<const int*>(ic), 40 forward_iterator<const int*>(ic + 1), 45 forward_iterator<const int*>(ic), 46 forward_iterator<const int*>(ic), 51 forward_iterator<const int*>(ic), 52 forward_iterator<const int*>(ic+1),
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.swap/ |
swap_ranges.pass.cpp | 67 test<forward_iterator<int*>, forward_iterator<int*> >(); 68 test<forward_iterator<int*>, bidirectional_iterator<int*> >(); 69 test<forward_iterator<int*>, random_access_iterator<int*> >(); 70 test<forward_iterator<int*>, int*>(); 72 test<bidirectional_iterator<int*>, forward_iterator<int*> >(); 77 test<random_access_iterator<int*>, forward_iterator<int*> >(); 82 test<int*, forward_iterator<int*> >(); 89 test1<forward_iterator<std::unique_ptr<int>*>, forward_iterator<std::unique_ptr<int>*> >() [all...] |