Home
last modified time | relevance | path

Searched refs:adjacent_find (Results 1 – 8 of 8) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.nonmodifying/alg.adjacent.find/
Dadjacent_find.pass.cpp26 assert(std::adjacent_find(forward_iterator<const int*>(ia), in main()
29 assert(std::adjacent_find(forward_iterator<const int*>(ia), in main()
32 assert(std::adjacent_find(forward_iterator<const int*>(ia+3), in main()
Dadjacent_find_pred.pass.cpp27 assert(std::adjacent_find(forward_iterator<const int*>(ia), in main()
31 assert(std::adjacent_find(forward_iterator<const int*>(ia), in main()
35 assert(std::adjacent_find(forward_iterator<const int*>(ia+3), in main()
/ndk/tests/device/test-stlport/unit/
Dadj_test.cpp46 int* location = adjacent_find((int*)numbers1, (int*)numbers1 + 5); in adjfind0()
49 location = adjacent_find((int*)numbers2, (int*)numbers2 + 5); in adjfind0()
60 location = adjacent_find(v.begin(), v.end()); in adjfind1()
63 location = adjacent_find(v.begin(), v.end()); in adjfind1()
77 location = adjacent_find(v.begin(), v.end(), equal_length); in adjfind2()
/ndk/tests/device/test-gnustl-full/unit/
Dadj_test.cpp46 int* location = adjacent_find((int*)numbers1, (int*)numbers1 + 5); in adjfind0()
49 location = adjacent_find((int*)numbers2, (int*)numbers2 + 5); in adjfind0()
60 location = adjacent_find(v.begin(), v.end()); in adjfind1()
63 location = adjacent_find(v.begin(), v.end()); in adjfind1()
77 location = adjacent_find(v.begin(), v.end(), equal_length); in adjfind2()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_algo.h82 adjacent_find(_ForwardIter __first, _ForwardIter __last, in adjacent_find() function
98 adjacent_find(_ForwardIter __first, _ForwardIter __last) { in adjacent_find() function
99 return adjacent_find(__first, __last, in adjacent_find()
299 __first = adjacent_find(__first, __last); in unique()
306 __first = adjacent_find(__first, __last, __binary_pred); in unique()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dalgorithm72 adjacent_find(ForwardIterator first, ForwardIterator last);
76 adjacent_find(ForwardIterator first, ForwardIterator last, BinaryPredicate pred);
1066 // adjacent_find
1071 adjacent_find(_ForwardIterator __first, _ForwardIterator __last, _BinaryPredicate __pred)
1089 adjacent_find(_ForwardIterator __first, _ForwardIterator __last)
1092 return _VSTD::adjacent_find(__first, __last, __equal_to<__v>());
2186 …__first = _VSTD::adjacent_find<_ForwardIterator, typename add_lvalue_reference<_BinaryPredicate>::…
/ndk/tests/device/test-libc++-static-full/jni/
DAndroid.mk181 $(call gen-test, algorithms/alg.nonmodifying/alg.adjacent.find/adjacent_find)
/ndk/tests/device/test-libc++-shared-full/jni/
DAndroid.mk190 $(call gen-test, algorithms/alg.nonmodifying/alg.adjacent.find/adjacent_find)