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

1 2

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.nonmodifying/alg.adjacent.find/
adjacent_find.pass.cpp 15 // adjacent_find(Iter first, Iter last);
26 assert(std::adjacent_find(forward_iterator<const int*>(ia),
29 assert(std::adjacent_find(forward_iterator<const int*>(ia),
32 assert(std::adjacent_find(forward_iterator<const int*>(ia+3),
adjacent_find_pred.pass.cpp 15 // adjacent_find(Iter first, Iter last, Pred pred);
27 assert(std::adjacent_find(forward_iterator<const int*>(ia),
31 assert(std::adjacent_find(forward_iterator<const int*>(ia),
35 assert(std::adjacent_find(forward_iterator<const int*>(ia+3),
  /external/stlport/test/unit/
adj_test.cpp 46 int* location = adjacent_find((int*)numbers1, (int*)numbers1 + 5);
49 location = adjacent_find((int*)numbers2, (int*)numbers2 + 5);
60 location = adjacent_find(v.begin(), v.end());
63 location = adjacent_find(v.begin(), v.end());
77 location = adjacent_find(v.begin(), v.end(), equal_length);
  /ndk/tests/device/test-gnustl-full/unit/
adj_test.cpp 46 int* location = adjacent_find((int*)numbers1, (int*)numbers1 + 5);
49 location = adjacent_find((int*)numbers2, (int*)numbers2 + 5);
60 location = adjacent_find(v.begin(), v.end());
63 location = adjacent_find(v.begin(), v.end());
77 location = adjacent_find(v.begin(), v.end(), equal_length);
  /ndk/tests/device/test-stlport/unit/
adj_test.cpp 46 int* location = adjacent_find((int*)numbers1, (int*)numbers1 + 5);
49 location = adjacent_find((int*)numbers2, (int*)numbers2 + 5);
60 location = adjacent_find(v.begin(), v.end());
63 location = adjacent_find(v.begin(), v.end());
77 location = adjacent_find(v.begin(), v.end(), equal_length);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
find_selectors.h 110 RandomAccessIterator1 spot = adjacent_find(begin1, end1 + 1,
algorithmfwd.h 43 adjacent_find(_FIter, _FIter);
47 adjacent_find(_FIter, _FIter, __gnu_parallel::sequential_tag);
60 adjacent_find(_FIter, _FIter, _BiPredicate);
64 adjacent_find(_FIter, _FIter, _BiPredicate,
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/parallel/
find_selectors.h 110 _RAIter1 __spot = adjacent_find(__begin1, __end1 + 1,
  /external/chromium_org/base/
stl_util.h 203 return std::adjacent_find(cont.begin(), cont.end(),
  /external/stlport/stlport/stl/
_algo.h 78 // adjacent_find.
82 adjacent_find(_ForwardIter __first, _ForwardIter __last, function
98 adjacent_find(_ForwardIter __first, _ForwardIter __last) { function
99 return adjacent_find(__first, __last,
299 __first = adjacent_find(__first, __last);
306 __first = adjacent_find(__first, __last, __binary_pred);
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_algo.h 78 // adjacent_find.
82 adjacent_find(_ForwardIter __first, _ForwardIter __last, function
98 adjacent_find(_ForwardIter __first, _ForwardIter __last) { function
99 return adjacent_find(__first, __last,
299 __first = adjacent_find(__first, __last);
306 __first = adjacent_find(__first, __last, __binary_pred);
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_algo.h 78 // adjacent_find.
82 adjacent_find(_ForwardIter __first, _ForwardIter __last, function
98 adjacent_find(_ForwardIter __first, _ForwardIter __last) { function
99 return adjacent_find(__first, __last,
299 __first = adjacent_find(__first, __last);
306 __first = adjacent_find(__first, __last, __binary_pred);
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_algo.h 78 // adjacent_find.
82 adjacent_find(_ForwardIter __first, _ForwardIter __last, function
98 adjacent_find(_ForwardIter __first, _ForwardIter __last) { function
99 return adjacent_find(__first, __last,
299 __first = adjacent_find(__first, __last);
306 __first = adjacent_find(__first, __last, __binary_pred);
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_algo.h 78 // adjacent_find.
82 adjacent_find(_ForwardIter __first, _ForwardIter __last, function
98 adjacent_find(_ForwardIter __first, _ForwardIter __last) { function
99 return adjacent_find(__first, __last,
299 __first = adjacent_find(__first, __last);
306 __first = adjacent_find(__first, __last, __binary_pred);
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_algo.h 78 // adjacent_find.
82 adjacent_find(_ForwardIter __first, _ForwardIter __last, function
98 adjacent_find(_ForwardIter __first, _ForwardIter __last) { function
99 return adjacent_find(__first, __last,
299 __first = adjacent_find(__first, __last);
306 __first = adjacent_find(__first, __last, __binary_pred);
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_algo.h 78 // adjacent_find.
82 adjacent_find(_ForwardIter __first, _ForwardIter __last, function
98 adjacent_find(_ForwardIter __first, _ForwardIter __last) { function
99 return adjacent_find(__first, __last,
299 __first = adjacent_find(__first, __last);
306 __first = adjacent_find(__first, __last, __binary_pred);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
algorithmfwd.h 43 adjacent_find
186 // adjacent_find
577 adjacent_find(_FIter, _FIter);
581 adjacent_find(_FIter, _FIter, _BinaryPredicate);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
algorithmfwd.h 45 adjacent_find
189 // adjacent_find
588 adjacent_find(_FIter, _FIter);
592 adjacent_find(_FIter, _FIter, _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 45 adjacent_find
189 // adjacent_find
588 adjacent_find(_FIter, _FIter);
592 adjacent_find(_FIter, _FIter, _BinaryPredicate);
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
algorithmfwd.h 43 adjacent_find
186 // adjacent_find
577 adjacent_find(_FIter, _FIter);
581 adjacent_find(_FIter, _FIter, _BinaryPredicate);
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
algorithmfwd.h 43 adjacent_find
186 // adjacent_find
577 adjacent_find(_FIter, _FIter);
581 adjacent_find(_FIter, _FIter, _BinaryPredicate);
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
algorithmfwd.h 43 adjacent_find
186 // adjacent_find
577 adjacent_find(_FIter, _FIter);
581 adjacent_find(_FIter, _FIter, _BinaryPredicate);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
algorithmfwd.h 43 adjacent_find
186 // adjacent_find
577 adjacent_find(_FIter, _FIter);
581 adjacent_find(_FIter, _FIter, _BinaryPredicate);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
algorithmfwd.h 45 adjacent_find
189 // adjacent_find
588 adjacent_find(_FIter, _FIter);
592 adjacent_find(_FIter, _FIter, _BinaryPredicate);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
algorithmfwd.h 45 adjacent_find
189 // adjacent_find
588 adjacent_find(_FIter, _FIter);
592 adjacent_find(_FIter, _FIter, _BinaryPredicate);

Completed in 1038 milliseconds

1 2