Home
last modified time | relevance | path

Searched refs:remove_copy_if (Results 1 – 6 of 6) sorted by relevance

/external/libcxx/test/algorithms/alg.modifying.operations/alg.remove/
DAndroid.mk19 test_name := algorithms/alg.modifying.operations/alg.remove/remove_copy_if
20 test_src := remove_copy_if.pass.cpp
Dremove_copy_if.pass.cpp31 OutIter r = std::remove_copy_if(InIter(ia), InIter(ia+sa), OutIter(ib), in test()
/external/stlport/test/unit/
Drm_cp_test.cpp236 remove_copy_if((int*)numbers, (int*)numbers + 6, (int*)result, odd); in remcpif1()
/external/stlport/stlport/stl/
D_algo.h252 remove_copy_if(_InputIter __first, _InputIter __last, _OutputIter __result, _Predicate __pred) { in remove_copy_if() function
285 return remove_copy_if(++__next, __last, __first, __pred); in remove_if()
/external/clang/lib/Lex/
DLiteralSupport.cpp976 std::remove_copy_if(Str.begin(), Str.end(), std::back_inserter(Buffer), in GetFloatValue()
/external/libcxx/include/
Dalgorithm248 remove_copy_if(InputIterator first, InputIterator last, OutputIterator result, Predicate pred);
2162 // remove_copy_if
2167 remove_copy_if(_InputIterator __first, _InputIterator __last, _OutputIterator __result, _Predicate …