OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_Predicate
(Results
1 - 12
of
12
) sorted by null
/external/stlport/stlport/stl/
_function.h
135
template <class
_Predicate
>
137
: public unary_function<typename __UNARY_ARG(
_Predicate
, argument_type), bool> {
138
typedef unary_function<typename __UNARY_ARG(
_Predicate
, argument_type), bool> _Base;
144
_Predicate
_M_pred;
146
explicit unary_negate(const
_Predicate
& __x) : _M_pred(__x) {}
152
template <class
_Predicate
>
153
inline unary_negate<
_Predicate
>
154
not1(const
_Predicate
& __pred) {
155
return unary_negate<
_Predicate
>(__pred);
158
template <class
_Predicate
>
[
all
...]
_algobase.c
158
template <class _RandomAccessIter, class
_Predicate
>
160
_Predicate
__pred,
202
template <class _InputIter, class
_Predicate
>
204
_Predicate
__pred,
213
template <class _InputIter, class
_Predicate
>
215
_Predicate
__pred) {
296
template <class _InputIter, class _ForwardIter, class _Tp2, class
_Predicate
>
299
_Tp2*,
_Predicate
__pred,
317
template <class _InputIter, class _ForwardIter, class _Tp2, class
_Predicate
>
320
_Tp2* /* __dummy */,
_Predicate
/* __pred */
[
all
...]
_algo.h
66
template <class _InputIter, class
_Predicate
>
68
count_if(_InputIter __first, _InputIter __last,
_Predicate
__pred) {
113
template <class _InputIter, class
_Predicate
, class _Size>
115
count_if(_InputIter __first, _InputIter __last,
_Predicate
__pred, _Size& __n) {
188
template <class _ForwardIter, class
_Predicate
, class _Tp>
190
replace_if(_ForwardIter __first, _ForwardIter __last,
_Predicate
__pred, const _Tp& __new_value) {
207
template <class _Iterator, class _OutputIter, class
_Predicate
, class _Tp>
211
_Predicate
__pred, const _Tp& __new_value) {
250
template <class _InputIter, class _OutputIter, class
_Predicate
>
252
remove_copy_if(_InputIter __first, _InputIter __last, _OutputIter __result,
_Predicate
__pred)
[
all
...]
_algo.c
675
template <class _ForwardIter, class
_Predicate
>
678
_Predicate
__pred,
696
template <class _BidirectionalIter, class
_Predicate
>
699
_Predicate
__pred,
725
template <class _BidirectionalIter, class
_Predicate
>
729
_Predicate
__pred,
737
template <class _ForwardIter, class
_Predicate
>
738
_ForwardIter partition(_ForwardIter __first, _ForwardIter __last,
_Predicate
__pred) {
751
template <class _ForwardIter, class
_Predicate
, class _Distance>
754
_Predicate
__pred, _Distance __len
[
all
...]
_list.c
138
template <class _Tp, class _Alloc, class
_Predicate
>
139
void _S_remove_if(list<_Tp, _Alloc>& __that,
_Predicate
__pred) {
_list.h
235
template <class _Tp, class _Alloc, class
_Predicate
>
236
void _S_remove_if(list<_Tp, _Alloc>& __that,
_Predicate
__pred);
664
template <class
_Predicate
>
665
void remove_if(
_Predicate
__pred)
_algobase.h
669
template <class _InputIter, class
_Predicate
>
670
_InputIter find_if(_InputIter __first, _InputIter __last,
_Predicate
__pred);
_slist.h
793
template <class
_Predicate
>
794
void remove_if(
_Predicate
__pred) {
/external/stlport/stlport/stl/pointers/
_list.h
309
template <class
_Predicate
>
310
void remove_if(
_Predicate
__pred)
311
{ _M_impl.remove_if(_STLP_PRIV _UnaryPredWrapper<_StorageType, _Tp,
_Predicate
>(__pred)); }
_slist.h
389
template <class
_Predicate
>
390
void remove_if(
_Predicate
__pred)
391
{ _M_impl.remove_if(_STLP_PRIV _UnaryPredWrapper<_StorageType, _Tp,
_Predicate
>(__pred)); }
/external/stlport/stlport/stl/debug/
_list.h
434
template <class
_Predicate
>
435
void remove_if(
_Predicate
__pred) {
_slist.h
550
template <class
_Predicate
>
551
void remove_if(
_Predicate
__pred) {
Completed in 423 milliseconds