HomeSort by relevance Sort by last modified time
    Searched refs:_M_pred (Results 1 - 20 of 20) sorted by null

  /external/stlport/stlport/stl/pointers/
_tools.h 437 _UnaryPredWrapper (_UnaryPredicate const& __pred) : _M_pred(__pred) {}
440 { return _M_pred(cast_traits::to_value_type_cref(__ref)); }
443 _UnaryPredicate _M_pred;
451 _BinaryPredWrapper (_BinaryPredicate const& __pred) : _M_pred(__pred) {}
453 _BinaryPredicate get_pred() const { return _M_pred; }
456 { return _M_pred(cast_traits::to_value_type_cref(__fst), cast_traits::to_value_type_cref(__snd)); }
461 { return _M_pred; }
464 _BinaryPredicate _M_pred;
  /ndk/sources/cxx-stl/stlport/stlport/stl/pointers/
_tools.h 437 _UnaryPredWrapper (_UnaryPredicate const& __pred) : _M_pred(__pred) {}
440 { return _M_pred(cast_traits::to_value_type_cref(__ref)); }
443 _UnaryPredicate _M_pred;
451 _BinaryPredWrapper (_BinaryPredicate const& __pred) : _M_pred(__pred) {}
453 _BinaryPredicate get_pred() const { return _M_pred; }
456 { return _M_pred(cast_traits::to_value_type_cref(__fst), cast_traits::to_value_type_cref(__snd)); }
461 { return _M_pred; }
464 _BinaryPredicate _M_pred;
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/pointers/
_tools.h 437 _UnaryPredWrapper (_UnaryPredicate const& __pred) : _M_pred(__pred) {}
440 { return _M_pred(cast_traits::to_value_type_cref(__ref)); }
443 _UnaryPredicate _M_pred;
451 _BinaryPredWrapper (_BinaryPredicate const& __pred) : _M_pred(__pred) {}
453 _BinaryPredicate get_pred() const { return _M_pred; }
456 { return _M_pred(cast_traits::to_value_type_cref(__fst), cast_traits::to_value_type_cref(__snd)); }
461 { return _M_pred; }
464 _BinaryPredicate _M_pred;
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/pointers/
_tools.h 437 _UnaryPredWrapper (_UnaryPredicate const& __pred) : _M_pred(__pred) {}
440 { return _M_pred(cast_traits::to_value_type_cref(__ref)); }
443 _UnaryPredicate _M_pred;
451 _BinaryPredWrapper (_BinaryPredicate const& __pred) : _M_pred(__pred) {}
453 _BinaryPredicate get_pred() const { return _M_pred; }
456 { return _M_pred(cast_traits::to_value_type_cref(__fst), cast_traits::to_value_type_cref(__snd)); }
461 { return _M_pred; }
464 _BinaryPredicate _M_pred;
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/pointers/
_tools.h 437 _UnaryPredWrapper (_UnaryPredicate const& __pred) : _M_pred(__pred) {}
440 { return _M_pred(cast_traits::to_value_type_cref(__ref)); }
443 _UnaryPredicate _M_pred;
451 _BinaryPredWrapper (_BinaryPredicate const& __pred) : _M_pred(__pred) {}
453 _BinaryPredicate get_pred() const { return _M_pred; }
456 { return _M_pred(cast_traits::to_value_type_cref(__fst), cast_traits::to_value_type_cref(__snd)); }
461 { return _M_pred; }
464 _BinaryPredicate _M_pred;
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/pointers/
_tools.h 437 _UnaryPredWrapper (_UnaryPredicate const& __pred) : _M_pred(__pred) {}
440 { return _M_pred(cast_traits::to_value_type_cref(__ref)); }
443 _UnaryPredicate _M_pred;
451 _BinaryPredWrapper (_BinaryPredicate const& __pred) : _M_pred(__pred) {}
453 _BinaryPredicate get_pred() const { return _M_pred; }
456 { return _M_pred(cast_traits::to_value_type_cref(__fst), cast_traits::to_value_type_cref(__snd)); }
461 { return _M_pred; }
464 _BinaryPredicate _M_pred;
  /external/stlport/stlport/stl/
_function.h 144 _Predicate _M_pred;
146 explicit unary_negate(const _Predicate& __x) : _M_pred(__x) {}
148 return !_M_pred(__x);
173 _Predicate _M_pred;
175 explicit binary_negate(const _Predicate& __x) : _M_pred(__x) {}
177 return !_M_pred(__x, __y);
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_function.h 144 _Predicate _M_pred;
146 explicit unary_negate(const _Predicate& __x) : _M_pred(__x) {}
148 return !_M_pred(__x);
173 _Predicate _M_pred;
175 explicit binary_negate(const _Predicate& __x) : _M_pred(__x) {}
177 return !_M_pred(__x, __y);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stl_function.h 350 _Predicate _M_pred;
354 unary_negate(const _Predicate& __x) : _M_pred(__x) { }
358 { return !_M_pred(__x); }
374 _Predicate _M_pred;
378 binary_negate(const _Predicate& __x) : _M_pred(__x) { }
383 { return !_M_pred(__x, __y); }
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
stl_function.h 356 _Predicate _M_pred;
360 unary_negate(const _Predicate& __x) : _M_pred(__x) { }
364 { return !_M_pred(__x); }
380 _Predicate _M_pred;
384 binary_negate(const _Predicate& __x) : _M_pred(__x) { }
389 { return !_M_pred(__x, __y); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
stl_function.h 356 _Predicate _M_pred;
360 unary_negate(const _Predicate& __x) : _M_pred(__x) { }
364 { return !_M_pred(__x); }
380 _Predicate _M_pred;
384 binary_negate(const _Predicate& __x) : _M_pred(__x) { }
389 { return !_M_pred(__x, __y); }
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_function.h 350 _Predicate _M_pred;
354 unary_negate(const _Predicate& __x) : _M_pred(__x) { }
358 { return !_M_pred(__x); }
374 _Predicate _M_pred;
378 binary_negate(const _Predicate& __x) : _M_pred(__x) { }
383 { return !_M_pred(__x, __y); }
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_function.h 144 _Predicate _M_pred;
146 explicit unary_negate(const _Predicate& __x) : _M_pred(__x) {}
148 return !_M_pred(__x);
173 _Predicate _M_pred;
175 explicit binary_negate(const _Predicate& __x) : _M_pred(__x) {}
177 return !_M_pred(__x, __y);
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_function.h 350 _Predicate _M_pred;
354 unary_negate(const _Predicate& __x) : _M_pred(__x) { }
358 { return !_M_pred(__x); }
374 _Predicate _M_pred;
378 binary_negate(const _Predicate& __x) : _M_pred(__x) { }
383 { return !_M_pred(__x, __y); }
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_function.h 144 _Predicate _M_pred;
146 explicit unary_negate(const _Predicate& __x) : _M_pred(__x) {}
148 return !_M_pred(__x);
173 _Predicate _M_pred;
175 explicit binary_negate(const _Predicate& __x) : _M_pred(__x) {}
177 return !_M_pred(__x, __y);
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_function.h 350 _Predicate _M_pred;
354 unary_negate(const _Predicate& __x) : _M_pred(__x) { }
358 { return !_M_pred(__x); }
374 _Predicate _M_pred;
378 binary_negate(const _Predicate& __x) : _M_pred(__x) { }
383 { return !_M_pred(__x, __y); }
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_function.h 144 _Predicate _M_pred;
146 explicit unary_negate(const _Predicate& __x) : _M_pred(__x) {}
148 return !_M_pred(__x);
173 _Predicate _M_pred;
175 explicit binary_negate(const _Predicate& __x) : _M_pred(__x) {}
177 return !_M_pred(__x, __y);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_function.h 350 _Predicate _M_pred;
354 unary_negate(const _Predicate& __x) : _M_pred(__x) { }
358 { return !_M_pred(__x); }
374 _Predicate _M_pred;
378 binary_negate(const _Predicate& __x) : _M_pred(__x) { }
383 { return !_M_pred(__x, __y); }
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_function.h 144 _Predicate _M_pred;
146 explicit unary_negate(const _Predicate& __x) : _M_pred(__x) {}
148 return !_M_pred(__x);
173 _Predicate _M_pred;
175 explicit binary_negate(const _Predicate& __x) : _M_pred(__x) {}
177 return !_M_pred(__x, __y);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
base.h 181 _Predicate _M_pred;
185 unary_negate(const _Predicate& __x) : _M_pred(__x) { }
189 { return !_M_pred(__x); }

Completed in 274 milliseconds