HomeSort by relevance Sort by last modified time
    Searched defs:remove_copy (Results 1 - 3 of 3) sorted by null

  /external/stlport/stlport/stl/
_algo.h 235 // remove, remove_if, remove_copy, remove_copy_if
239 remove_copy(_InputIter __first, _InputIter __last,_OutputIter __result, const _Tp& __val) { function
272 return remove_copy(++__next, __last, __first, __val);
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
uctralgo.h 246 /// Remove_copy copies elements that are not equal to value from the range
254 inline OutputIterator remove_copy (const Container& ctr, OutputIterator result, const T& value) function in namespace:ustl
256 return (remove_copy (ctr.begin(), ctr.end(), result, value));
282 ctr.erase (remove_copy (ctr.begin(), ctr.end(), ctr.begin(), value), ctr.end());
296 ctr.erase (remove_copy (ctr.begin(), ctr.end(), ctr.begin(), rfirst, rlast), ctr.end());
ualgo.h 282 /// Remove_copy copies elements that are not equal to value from the range
290 OutputIterator remove_copy (InputIterator first, InputIterator last, OutputIterator result, const T& value) function in namespace:ustl
301 /// Remove_copy copies elements pointed to by iterators in [rfirst, rlast)
310 OutputIterator remove_copy (InputIterator first, InputIterator last, OutputIterator result, RInputIterator rfirst, RInputIterator rlast) function in namespace:ustl
335 return (remove_copy (first, last, first, value));

Completed in 34 milliseconds