Home
last modified time | relevance | path

Searched refs:unary_negate (Results 1 – 6 of 6) sorted by relevance

/external/libcxx/test/utilities/function.objects/negators/
DAndroid.mk23 test_name := utilities/function.objects/negators/unary_negate
24 test_src := unary_negate.pass.cpp
Dunary_negate.pass.cpp20 typedef std::unary_negate<std::logical_not<int> > F; in main()
/external/stlport/stlport/stl/
D_function.h136 class unary_negate
146 explicit unary_negate(const _Predicate& __x) : _M_pred(__x) {} in unary_negate() function
153 inline unary_negate<_Predicate>
155 return unary_negate<_Predicate>(__pred); in not1()
/external/stlport/test/unit/
Dunary_test.cpp48 int* p = find_if((int*)array, (int*)array + 3, unary_negate<odd>(odd())); in unegate1()
/external/libcxx/include/
Dfunctional186 class unary_negate
190 explicit unary_negate(const Predicate& pred);
194 template <class Predicate> unary_negate<Predicate> not1(const Predicate& pred);
936 class _LIBCPP_TYPE_VIS_ONLY unary_negate
942 explicit unary_negate(const _Predicate& __pred)
951 unary_negate<_Predicate>
952 not1(const _Predicate& __pred) {return unary_negate<_Predicate>(__pred);}
/external/eigen/Eigen/src/Core/
DFunctors.h940 struct functor_traits<std::unary_negate<T> >