/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.heap.operations/pop.heap/ |
pop_heap_comp.pass.cpp | 23 struct indirect_less struct 59 std::make_heap(ia, ia+N, indirect_less()); 62 std::pop_heap(ia, ia+i, indirect_less()); 63 assert(std::is_heap(ia, ia+i-1, indirect_less()));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.heap.operations/sort.heap/ |
sort_heap_comp.pass.cpp | 23 struct indirect_less struct 60 std::make_heap(ia, ia+N, indirect_less()); 61 std::sort_heap(ia, ia+N, indirect_less()); 62 assert(std::is_sorted(ia, ia+N, indirect_less()));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.merge/ |
inplace_merge_comp.pass.cpp | 24 struct indirect_less struct 100 std::sort(ia, ia+M, indirect_less()); 101 std::sort(ia+M, ia+N, indirect_less()); 102 std::inplace_merge(ia, ia+M, ia+N, indirect_less()); 107 assert(std::is_sorted(ia, ia+N, indirect_less()));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.heap.operations/make.heap/ |
make_heap_comp.pass.cpp | 23 struct indirect_less struct 59 std::make_heap(ia, ia+N, indirect_less()); 60 assert(std::is_heap(ia, ia+N, indirect_less()));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.heap.operations/push.heap/ |
push_heap_comp.pass.cpp | 24 struct indirect_less struct 60 std::push_heap(ia, ia+i, indirect_less()); 61 assert(std::is_heap(ia, ia+i, indirect_less()));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.sort/sort/ |
sort_comp.pass.cpp | 25 struct indirect_less struct 50 std::sort(v.begin(), v.end(), indirect_less()); 51 assert(std::is_sorted(v.begin(), v.end(), indirect_less()));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.sort/stable.sort/ |
stable_sort_comp.pass.cpp | 25 struct indirect_less struct 76 std::stable_sort(v.begin(), v.end(), indirect_less()); 77 assert(std::is_sorted(v.begin(), v.end(), indirect_less()));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.nth.element/ |
nth_element_comp.pass.cpp | 25 struct indirect_less struct 81 std::nth_element(v.begin(), v.begin() + v.size()/2, v.end(), indirect_less());
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.sort/partial.sort/ |
partial_sort_comp.pass.cpp | 25 struct indirect_less struct 82 std::partial_sort(v.begin(), v.begin() + v.size()/2, v.end(), indirect_less());
|