Searched refs:remove_copy_if (Results 1 – 6 of 6) sorted by relevance
/external/libcxx/test/algorithms/alg.modifying.operations/alg.remove/ |
D | Android.mk | 19 test_name := algorithms/alg.modifying.operations/alg.remove/remove_copy_if 20 test_src := remove_copy_if.pass.cpp
|
D | remove_copy_if.pass.cpp | 31 OutIter r = std::remove_copy_if(InIter(ia), InIter(ia+sa), OutIter(ib), in test()
|
/external/stlport/test/unit/ |
D | rm_cp_test.cpp | 236 remove_copy_if((int*)numbers, (int*)numbers + 6, (int*)result, odd); in remcpif1()
|
/external/stlport/stlport/stl/ |
D | _algo.h | 252 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/ |
D | LiteralSupport.cpp | 976 std::remove_copy_if(Str.begin(), Str.end(), std::back_inserter(Buffer), in GetFloatValue()
|
/external/libcxx/include/ |
D | algorithm | 248 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 …
|