/external/stlport/stlport/stl/ |
_algo.h | 235 // remove, remove_if, remove_copy, remove_copy_if 252 remove_copy_if(_InputIter __first, _InputIter __last, _OutputIter __result, _Predicate __pred) { function 285 return remove_copy_if(++__next, __last, __first, __pred);
|
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/ |
uctralgo.h | 259 /// Remove_copy_if copies elements from the range [first, last) to a range 267 inline OutputIterator remove_copy_if (const Container& ctr, OutputIterator result, Predicate pred) function in namespace:ustl 269 return (remove_copy_if (ctr.begin(), ctr.end(), result, pred)); 311 ctr.erase (remove_copy_if (ctr.begin(), ctr.end(), ctr.begin(), pred), ctr.end());
|
upredalgo.h | 134 /// Remove_copy_if copies elements from the range [first, last) to a range 143 inline OutputIterator remove_copy_if (InputIterator first, InputIterator last, OutputIterator result, Predicate pred) function in namespace:ustl 164 return (remove_copy_if (first, last, first, pred));
|