Home
last modified time | relevance | path

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

/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/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/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()