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