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

  /external/stlport/stlport/stl/
_algo.h 186 // replace_if, replace_copy, replace_copy_if
199 replace_copy(_InputIter __first, _InputIter __last,_OutputIter __result, function
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
uctralgo.h 188 /// Replace_copy copies elements from the range [first, last) to the range
191 /// integer n such that 0 <= n < last-first, replace_copy performs the
197 inline OutputIterator replace_copy (const Container& ctr, OutputIterator result, const T& old_value, const T& new_value) function in namespace:ustl
199 return (replace_copy (ctr.begin(), ctr.end(), result, old_value, new_value));
ualgo.h 151 /// Replace_copy copies elements from the range [first, last) to the range
154 /// integer n such that 0 <= n < last-first, replace_copy performs the
160 inline OutputIterator replace_copy (InputIterator first, InputIterator last, OutputIterator result, const T& old_value, const T& new_value) function in namespace:ustl

Completed in 12 milliseconds