HomeSort by relevance Sort by last modified time
    Searched refs:unique_copy (Results 1 - 25 of 49) sorted by null

1 2

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.unique/
unique_copy.pass.cpp 18 // unique_copy(InIter first, InIter last, OutIter result);
32 OutIter r = std::unique_copy(InIter(ia), InIter(ia+sa), OutIter(ja));
39 r = std::unique_copy(InIter(ib), InIter(ib+sb), OutIter(jb));
47 r = std::unique_copy(InIter(ic), InIter(ic+sc), OutIter(jc));
54 r = std::unique_copy(InIter(id), InIter(id+sd), OutIter(jd));
62 r = std::unique_copy(InIter(ie), InIter(ie+se), OutIter(je));
71 r = std::unique_copy(InIter(ig), InIter(ig+sg), OutIter(jg));
79 r = std::unique_copy(InIter(ih), InIter(ih+sh), OutIter(jh));
87 r = std::unique_copy(InIter(ii), InIter(ii+si), OutIter(ji));
unique_copy_pred.pass.cpp 19 // unique_copy(InIter first, InIter last, OutIter result, Pred pred);
44 OutIter r = std::unique_copy(InIter(ia), InIter(ia+sa), OutIter(ja), count_equal());
53 r = std::unique_copy(InIter(ib), InIter(ib+sb), OutIter(jb), count_equal());
63 r = std::unique_copy(InIter(ic), InIter(ic+sc), OutIter(jc), count_equal());
72 r = std::unique_copy(InIter(id), InIter(id+sd), OutIter(jd), count_equal());
82 r = std::unique_copy(InIter(ie), InIter(ie+se), OutIter(je), count_equal());
93 r = std::unique_copy(InIter(ig), InIter(ig+sg), OutIter(jg), count_equal());
103 r = std::unique_copy(InIter(ih), InIter(ih+sh), OutIter(jh), count_equal());
113 r = std::unique_copy(InIter(ii), InIter(ii+si), OutIter(ji), count_equal());
  /external/stlport/test/unit/
unique_test.cpp 73 unique_copy((int*)numbers, (int*)numbers + 8, (int*)result);
96 unique_copy(plabels, plabels + count, puCopy, str_equal);
  /ndk/tests/device/test-gnustl-full/unit/
unique_test.cpp 73 unique_copy((int*)numbers, (int*)numbers + 8, (int*)result);
96 unique_copy(plabels, plabels + count, puCopy, str_equal);
  /ndk/tests/device/test-stlport/unit/
unique_test.cpp 73 unique_copy((int*)numbers, (int*)numbers + 8, (int*)result);
96 unique_copy(plabels, plabels + count, puCopy, str_equal);
  /external/stlport/stlport/stl/
_algo.h 289 // unique and unique_copy
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);
307 return unique_copy(__first, __last, __first, __binary_pred);
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_algo.h 289 // unique and unique_copy
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);
307 return unique_copy(__first, __last, __first, __binary_pred);
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_algo.h 289 // unique and unique_copy
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);
307 return unique_copy(__first, __last, __first, __binary_pred);
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_algo.h 289 // unique and unique_copy
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);
307 return unique_copy(__first, __last, __first, __binary_pred);
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_algo.h 289 // unique and unique_copy
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);
307 return unique_copy(__first, __last, __first, __binary_pred);
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_algo.h 289 // unique and unique_copy
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);
307 return unique_copy(__first, __last, __first, __binary_pred);
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_algo.h 289 // unique and unique_copy
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);
307 return unique_copy(__first, __last, __first, __binary_pred);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
algorithmfwd.h 122 unique_copy
561 // unique_copy
792 unique_copy(_IIter, _IIter, _OIter);
796 unique_copy(_IIter, _IIter, _OIter, _BinaryPredicate);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
algorithmfwd.h 125 unique_copy
572 // unique_copy
801 unique_copy(_IIter, _IIter, _OIter);
805 unique_copy(_IIter, _IIter, _OIter, _BinaryPredicate);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
algorithmfwd.h 125 unique_copy
572 // unique_copy
801 unique_copy(_IIter, _IIter, _OIter);
805 unique_copy(_IIter, _IIter, _OIter, _BinaryPredicate);
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
algorithmfwd.h 122 unique_copy
561 // unique_copy
792 unique_copy(_IIter, _IIter, _OIter);
796 unique_copy(_IIter, _IIter, _OIter, _BinaryPredicate);
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
algorithmfwd.h 122 unique_copy
561 // unique_copy
792 unique_copy(_IIter, _IIter, _OIter);
796 unique_copy(_IIter, _IIter, _OIter, _BinaryPredicate);
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
algorithmfwd.h 122 unique_copy
561 // unique_copy
792 unique_copy(_IIter, _IIter, _OIter);
796 unique_copy(_IIter, _IIter, _OIter, _BinaryPredicate);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
algorithmfwd.h 122 unique_copy
561 // unique_copy
792 unique_copy(_IIter, _IIter, _OIter);
796 unique_copy(_IIter, _IIter, _OIter, _BinaryPredicate);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
algorithmfwd.h 125 unique_copy
572 // unique_copy
801 unique_copy(_IIter, _IIter, _OIter);
805 unique_copy(_IIter, _IIter, _OIter, _BinaryPredicate);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
algorithmfwd.h 125 unique_copy
572 // unique_copy
801 unique_copy(_IIter, _IIter, _OIter);
805 unique_copy(_IIter, _IIter, _OIter, _BinaryPredicate);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
algorithmfwd.h 870 unique_copy(_IIter, _IIter, _OIter, __gnu_parallel::sequential_tag);
874 unique_copy(_IIter, _IIter, _OIter, _Predicate,
879 unique_copy(_IIter, _IIter, _OIter);
883 unique_copy(_IIter, _IIter, _OIter, _Predicate);
algo.h 58 #include <parallel/unique_copy.h>
299 unique_copy(InputIterator begin1, InputIterator end1, OutputIterator out, function in namespace:std::__parallel
301 { return _GLIBCXX_STD_P::unique_copy(begin1, end1, out); }
307 unique_copy(InputIterator begin1, InputIterator end1, OutputIterator out, function in namespace:std::__parallel
309 { return _GLIBCXX_STD_P::unique_copy(begin1, end1, out, pred); }
318 { return _GLIBCXX_STD_P::unique_copy(begin, last, out, pred); }
320 // Parallel unique_copy for random access iterators
333 return _GLIBCXX_STD_P::unique_copy(begin, last, out, pred);
339 unique_copy(InputIterator begin1, InputIterator end1, OutputIterator out) function in namespace:std::__parallel
354 unique_copy(InputIterator begin1, InputIterator end1, OutputIterator out function in namespace:std::__parallel
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/parallel/
algorithmfwd.h 880 unique_copy(_IIter, _IIter, _OIter, __gnu_parallel::sequential_tag);
884 unique_copy(_IIter, _IIter, _OIter, _Predicate,
889 unique_copy(_IIter, _IIter, _OIter);
893 unique_copy(_IIter, _IIter, _OIter, _Predicate);
algo.h 58 #include <parallel/unique_copy.h>
302 unique_copy(_IIter __begin1, _IIter __end1, _OutputIterator __out, function in namespace:__parallel
304 { return _GLIBCXX_STD_A::unique_copy(__begin1, __end1, __out); }
310 unique_copy(_IIter __begin1, _IIter __end1, _OutputIterator __out, function in namespace:__parallel
312 { return _GLIBCXX_STD_A::unique_copy(__begin1, __end1, __out, __pred); }
321 { return _GLIBCXX_STD_A::unique_copy(__begin, __last, __out, __pred); }
323 // Parallel unique_copy for random access iterators
337 return _GLIBCXX_STD_A::unique_copy(__begin, __last, __out, __pred);
343 unique_copy(_IIter __begin1, _IIter __end1, _OutputIterator __out) function in namespace:__parallel
359 unique_copy(_IIter __begin1, _IIter __end1, _OutputIterator __out function in namespace:__parallel
    [all...]

Completed in 310 milliseconds

1 2