Home
last modified time | relevance | path

Searched refs:indirect_less (Results 1 – 9 of 9) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.heap.operations/sort.heap/
Dsort_heap_comp.pass.cpp23 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/
Dpop_heap_comp.pass.cpp23 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/
Dinplace_merge_comp.pass.cpp24 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/
Dsort_comp.pass.cpp25 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/
Dmake_heap_comp.pass.cpp23 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/
Dpush_heap_comp.pass.cpp24 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/
Dstable_sort_comp.pass.cpp25 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/
Dpartial_sort_comp.pass.cpp25 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/
Dnth_element_comp.pass.cpp25 struct indirect_less struct
82 std::nth_element(v.begin(), v.begin() + v.size()/2, v.end(), indirect_less()); in main()