Searched refs:unique_copy (Results 1 – 9 of 9) sorted by relevance
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.unique/ |
D | unique_copy.pass.cpp | 32 OutIter r = std::unique_copy(InIter(ia), InIter(ia+sa), OutIter(ja)); in test() 39 r = std::unique_copy(InIter(ib), InIter(ib+sb), OutIter(jb)); in test() 47 r = std::unique_copy(InIter(ic), InIter(ic+sc), OutIter(jc)); in test() 54 r = std::unique_copy(InIter(id), InIter(id+sd), OutIter(jd)); in test() 62 r = std::unique_copy(InIter(ie), InIter(ie+se), OutIter(je)); in test() 71 r = std::unique_copy(InIter(ig), InIter(ig+sg), OutIter(jg)); in test() 79 r = std::unique_copy(InIter(ih), InIter(ih+sh), OutIter(jh)); in test() 87 r = std::unique_copy(InIter(ii), InIter(ii+si), OutIter(ji)); in test()
|
D | unique_copy_pred.pass.cpp | 44 OutIter r = std::unique_copy(InIter(ia), InIter(ia+sa), OutIter(ja), count_equal()); in test() 53 r = std::unique_copy(InIter(ib), InIter(ib+sb), OutIter(jb), count_equal()); in test() 63 r = std::unique_copy(InIter(ic), InIter(ic+sc), OutIter(jc), count_equal()); in test() 72 r = std::unique_copy(InIter(id), InIter(id+sd), OutIter(jd), count_equal()); in test() 82 r = std::unique_copy(InIter(ie), InIter(ie+se), OutIter(je), count_equal()); in test() 93 r = std::unique_copy(InIter(ig), InIter(ig+sg), OutIter(jg), count_equal()); in test() 103 r = std::unique_copy(InIter(ih), InIter(ih+sh), OutIter(jh), count_equal()); in test() 113 r = std::unique_copy(InIter(ii), InIter(ii+si), OutIter(ji), count_equal()); in test()
|
/ndk/tests/device/test-stlport/unit/ |
D | unique_test.cpp | 73 unique_copy((int*)numbers, (int*)numbers + 8, (int*)result); in uniqcpy1() 96 unique_copy(plabels, plabels + count, puCopy, str_equal); in uniqcpy2()
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | unique_test.cpp | 73 unique_copy((int*)numbers, (int*)numbers + 8, (int*)result); in uniqcpy1() 96 unique_copy(plabels, plabels + count, puCopy, str_equal); in uniqcpy2()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _algo.h | 291 _OutputIter unique_copy(_InputIter __first, _InputIter __last, _OutputIter __result); 294 _OutputIter unique_copy(_InputIter __first, _InputIter __last,_OutputIter __result, 300 return unique_copy(__first, __last, __first); in unique() 307 return unique_copy(__first, __last, __first, __binary_pred); in unique()
|
D | _algo.c | 348 unique_copy(_InputIter __first, _InputIter __last, _OutputIter __result) { in unique_copy() function 358 unique_copy(_InputIter __first, _InputIter __last,_OutputIter __result, in unique_copy() function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | algorithm | 260 unique_copy(InputIterator first, InputIterator last, OutputIterator result); 264 … unique_copy(InputIterator first, InputIterator last, OutputIterator result, BinaryPredicate pred); 2210 // unique_copy 2277 unique_copy(_InputIterator __first, _InputIterator __last, _OutputIterator __result, _BinaryPredica… 2288 unique_copy(_InputIterator __first, _InputIterator __last, _OutputIterator __result) 2291 return _VSTD::unique_copy(__first, __last, __result, __equal_to<__v>());
|
/ndk/tests/device/test-libc++-static-full/jni/ |
D | Android.mk | 176 $(call gen-test, algorithms/alg.modifying.operations/alg.unique/unique_copy)
|
/ndk/tests/device/test-libc++-shared-full/jni/ |
D | Android.mk | 185 $(call gen-test, algorithms/alg.modifying.operations/alg.unique/unique_copy)
|