/external/stlport/stlport/stl/ |
_algo.h | 186 // replace_if, replace_copy, replace_copy_if 209 replace_copy_if(_Iterator __first, _Iterator __last, function
|
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/ |
uctralgo.h | 202 /// Replace_copy_if copies elements from the range [first, last) to the range 205 /// integer n such that 0 <= n < last-first, replace_copy_if performs the 211 inline OutputIterator replace_copy_if (const Container& ctr, OutputIterator result, Predicate pred, const T& new_value) function in namespace:ustl 213 return (replace_copy_if (ctr.begin(), ctr.end(), result, pred, new_value));
|
upredalgo.h | 118 /// Replace_copy_if copies elements from the range [first, last) to the range 121 /// integer n such that 0 <= n < last-first, replace_copy_if performs the 128 inline OutputIterator replace_copy_if (InputIterator first, InputIterator last, OutputIterator result, Predicate pred, const T& new_value) function in namespace:ustl
|