/external/stlport/stlport/stl/ |
_algo.h | 65 // count_if 68 count_if(_InputIter __first, _InputIter __last, _Predicate __pred) { function 115 count_if(_InputIter __first, _InputIter __last, _Predicate __pred, _Size& __n) { function
|
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/ |
uctralgo.h | 111 /// Count_if finds the number of elements in [first, last) that satisfy the 112 /// predicate pred. More precisely, the first version of count_if returns the 117 inline size_t count_if (const Container& ctr, Predicate pred) function in namespace:ustl 119 return (count_if (ctr.begin(), ctr.end(), pred));
|
upredalgo.h | 88 /// Count_if finds the number of elements in [first, last) that satisfy the 89 /// predicate pred. More precisely, the first version of count_if returns the 95 inline size_t count_if (InputIterator first, InputIterator last, Predicate pred) function in namespace:ustl
|