Searched refs:partial_sort_copy (Results 1 – 7 of 7) sorted by relevance
/external/libcxx/test/algorithms/alg.sorting/alg.sort/partial.sort.copy/ |
D | Android.mk | 19 test_name := algorithms/alg.sorting/alg.sort/partial.sort.copy/partial_sort_copy 20 test_src := partial_sort_copy.pass.cpp
|
D | partial_sort_copy.pass.cpp | 34 int* r = std::partial_sort_copy(Iter(input), Iter(input+N), output, output+M); in test_larger_sorts() 79 std::partial_sort_copy(&i, &i, &i, &i+5); in main()
|
D | partial_sort_copy_comp.pass.cpp | 37 int* r = std::partial_sort_copy(Iter(input), Iter(input+N), output, output+M, in test_larger_sorts() 83 std::partial_sort_copy(&i, &i, &i, &i+5); in main()
|
/external/stlport/test/unit/ |
D | partial_test.cpp | 128 partial_sort_copy((int*)numbers, (int*)numbers + 6, (int*)result, (int*)result + 3); in parsrtc0() 145 partial_sort_copy(v1.begin(), v1.end(), result.begin(), result.end()); in parsrtc1() 162 partial_sort_copy(v1.begin(), v1.end(), result.begin(), result.end(), str_compare); in parsrtc2() 190 partial_sort_copy(numbers, numbers + s, result.begin(), result.end(), less_equal<int>()); in bad_predicate_detected()
|
/external/stlport/stlport/stl/ |
D | _algo.h | 443 partial_sort_copy(_InputIter __first, _InputIter __last, 448 partial_sort_copy(_InputIter __first, _InputIter __last,
|
D | _algo.c | 1287 partial_sort_copy(_InputIter __first, _InputIter __last, in partial_sort_copy() function 1299 partial_sort_copy(_InputIter __first, _InputIter __last, in partial_sort_copy() function
|
/external/libcxx/include/ |
D | algorithm | 360 partial_sort_copy(InputIterator first, InputIterator last, 365 partial_sort_copy(InputIterator first, InputIterator last, 5034 // partial_sort_copy 5062 partial_sort_copy(_InputIterator __first, _InputIterator __last, 5078 partial_sort_copy(_InputIterator __first, _InputIterator __last, 5081 return _VSTD::partial_sort_copy(__first, __last, __result_first, __result_last,
|