Home
last modified time | relevance | path

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/
Dunique_copy.pass.cpp32 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()
Dunique_copy_pred.pass.cpp44 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/
Dunique_test.cpp73 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/
Dunique_test.cpp73 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.h291 _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.c348 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/
Dalgorithm260 unique_copy(InputIterator first, InputIterator last, OutputIterator result);
264unique_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/
DAndroid.mk176 $(call gen-test, algorithms/alg.modifying.operations/alg.unique/unique_copy)
/ndk/tests/device/test-libc++-shared-full/jni/
DAndroid.mk185 $(call gen-test, algorithms/alg.modifying.operations/alg.unique/unique_copy)