Home
last modified time | relevance | path

Searched refs:not1 (Results 1 – 8 of 8) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/test/utilities/function.objects/negators/
Dnot1.pass.cpp20 assert(std::not1(F())(36)); in main()
21 assert(!std::not1(F())(0)); in main()
/ndk/tests/device/test-stlport/unit/
Dunary_test.cpp55 int* p = find_if((int*)array, (int*)array + 3, not1(odd())); in unegate2()
67 int* p = find_if((int*)array, (int*)array + 3, not1(ptr_fun(test_func))); in unegate3()
/ndk/tests/device/test-gnustl-full/unit/
Dunary_test.cpp55 int* p = find_if((int*)array, (int*)array + 3, not1(odd())); in unegate2()
67 int* p = find_if((int*)array, (int*)array + 3, not1(ptr_fun(test_func))); in unegate3()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_function.h154 not1(const _Predicate& __pred) { in not1() function
D_string.c102 { return __find_first_of_aux2(__first1, __last1, __first2, __last2, __first2, not1(_Identity<bool>(… in __str_find_first_not_of_aux3()
/ndk/sources/cxx-stl/stlport/src/
Dctype.cpp421 return find_if(low, high, not1(_Ctype_w_is_mask(m, ctype<char>::classic_table()))); in do_scan_not()
Dfacets_byname.cpp156 { return find_if(low, high, not1(_STLP_PRIV _Ctype_byname_w_is_mask(m, _M_ctype))); } in do_scan_not()
/ndk/sources/cxx-stl/llvm-libc++/include/
Dfunctional170 template <class Predicate> unary_negate<Predicate> not1(const Predicate& pred);
612 not1(const _Predicate& __pred) {return unary_negate<_Predicate>(__pred);}