Home
last modified time | relevance | path

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

/external/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()
DAndroid.mk23 test_name := algorithms/alg.nonmodifying/alg.adjacent.find/adjacent_find
24 test_src := adjacent_find.pass.cpp
/external/stlport/test/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()
/external/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()
/external/chromium_org/base/
Dstl_util.h206 return std::adjacent_find(cont.rbegin(), cont.rend(), in STLIsSorted()
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
Dstl_util.h211 return std::adjacent_find(cont.rbegin(), cont.rend(), in STLIsSorted()
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
Dwebrtcsessiondescriptionfactory.cc64 std::adjacent_find(sorted_streams.begin(), sorted_streams.end(), in ValidStreams()
/external/chromium_org/chrome/browser/history/
Dexpire_history_backend.cc218 std::adjacent_find( in ExpireHistoryForTimes()
/external/chromium_org/content/browser/web_contents/
Dweb_contents_impl_browsertest.cc515 if (std::adjacent_find(progresses.begin(), in IN_PROC_BROWSER_TEST_F()
/external/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>::…
/external/stlport/etc/
DChangeLog-5.17440 * _algo.h : adjacent_find() expressed with compare-function flavour