Searched refs:adjacent_find (Results 1 – 3 of 3) sorted by relevance
/ndk/tests/device/test-gnustl-full/unit/ |
D | adj_test.cpp | 46 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/ |
D | adj_test.cpp | 46 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.h | 82 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()
|