/ndk/sources/third_party/googletest/googletest/include/gtest/ |
D | gtest_pred_impl.h | 89 Pred pred, in AssertPred1Helper() argument 91 if (pred(v1)) return AssertionSuccess(); in AssertPred1Helper() 106 #define GTEST_PRED1_(pred, v1, on_failure)\ argument 107 GTEST_ASSERT_(::testing::AssertPred1Helper(#pred, \ 109 pred, \ 115 #define EXPECT_PRED1(pred, v1) \ argument 116 GTEST_PRED1_(pred, v1, GTEST_NONFATAL_FAILURE_) 119 #define ASSERT_PRED1(pred, v1) \ argument 120 GTEST_PRED1_(pred, v1, GTEST_FATAL_FAILURE_) 132 Pred pred, in AssertPred2Helper() argument [all …]
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/ |
D | algorithm.hpp | 65 Predicate pred ) in mismatch() argument 67 while( first1 != last1 && first2 != last2 && pred( *first1, *first2 ) ) { in mismatch() 111 Predicate pred ) in find_first_not_of() argument 114 if( std::find_if( first2, last2, std::bind1st( pred, *first1 ) ) == last2 ) in find_first_not_of() 158 Predicate pred ) in find_last_of() argument 164 … while( --it1 != first1 && std::find_if( first2, last2, std::bind1st( pred, *it1 ) ) == last2 ) {} in find_last_of() 166 …return it1 == first1 && std::find_if( first2, last2, std::bind1st( pred, *it1 ) ) == last2 ? last1… in find_last_of() 205 Predicate pred ) in find_last_not_of() argument 211 … while( --it1 != first1 && std::find_if( first2, last2, std::bind1st( pred, *it1 ) ) != last2 ) {} in find_last_not_of() 213 …return it1 == first1 && std::find_if( first2, last2, std::bind1st( pred, *it1 ) ) == last2 ? last1… in find_last_not_of()
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/range/algorithm/ |
D | equal.hpp | 70 BinaryPredicate pred, in equal_impl() argument 89 if (!pred(*first1, *first2)) in equal_impl() 123 BinaryPredicate pred ) in equal_impl() argument 126 && std::equal(first1, last1, first2, pred); in equal_impl() 149 BinaryPredicate pred ) in equal() argument 154 return equal_impl(first1, last1, first2, last2, pred, tag1, tag2); in equal() 183 BinaryPredicate pred ) in equal() argument 191 pred); in equal()
|
/ndk/build/core/ |
D | definitions-utils.mk | 137 $(eval -local-pred = $$(call seq,foo,$$1))\ 138 $(call test-expect,,$(call find-first,,-local-pred))\ 139 $(call test-expect,,$(call find-first,bar,-local-pred)) 142 $(eval -local-pred = $$(call seq,foo,$$1))\ 143 $(call test-expect,foo,$(call find-first,foo,-local-pred))\ 144 $(call test-expect,foo,$(call find-first,aaa foo bar,-local-pred))\ 145 $(call test-expect,foo,$(call find-first,aaa foo foo bar,-local-pred))
|
D | definitions-graph.mk | 105 $(eval -local-pred = $$(call seq,foo,$$1))\ 106 $(call test-expect,,$(call -ndk-mod-find-first,,-local-pred))\ 107 $(call test-expect,,$(call -ndk-mod-find-first,bar,-local-pred)) 110 $(eval -local-pred = $$(call seq,foo,$$1))\ 111 $(call test-expect,foo,$(call -ndk-mod-find-first,foo,-local-pred))\ 112 $(call test-expect,foo,$(call -ndk-mod-find-first,aaa foo bar,-local-pred))\ 113 $(call test-expect,foo,$(call -ndk-mod-find-first,aaa foo foo bar,-local-pred))
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/ |
D | floating_point_comparison.hpp | 231 close_at_tolerance<FPT> pred( tolerance, fpc_type ); in operator ()() local 233 return pred( left, right ); in operator ()() 244 close_at_tolerance<FPT> pred( tolerance, fpc_type ); in operator ()() local 246 return pred( left, right ); in operator ()()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.remove/ |
D | remove_if.pass.cpp | 45 struct pred struct 65 Iter r = std::remove_if(Iter(ia), Iter(ia+sa), pred()); in test1() argument
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | condition_variable | 36 void wait(unique_lock<mutex>& lock, Predicate pred); 47 Predicate pred); 58 Predicate pred); 81 void wait(Lock& lock, Predicate pred); 92 Predicate pred); 103 Predicate pred);
|
D | algorithm | 24 all_of(InputIterator first, InputIterator last, Predicate pred); 28 any_of(InputIterator first, InputIterator last, Predicate pred); 32 none_of(InputIterator first, InputIterator last, Predicate pred); 44 find_if(InputIterator first, InputIterator last, Predicate pred); 48 find_if_not(InputIterator first, InputIterator last, Predicate pred); 58 ForwardIterator2 first2, ForwardIterator2 last2, BinaryPredicate pred); 68 ForwardIterator2 first2, ForwardIterator2 last2, BinaryPredicate pred); 76 adjacent_find(ForwardIterator first, ForwardIterator last, BinaryPredicate pred); 84 count_if(InputIterator first, InputIterator last, Predicate pred); 98 InputIterator2 first2, BinaryPredicate pred); [all …]
|
D | functional | 190 explicit unary_negate(const Predicate& pred); 194 template <class Predicate> unary_negate<Predicate> not1(const Predicate& pred); 203 explicit binary_negate(const Predicate& pred); 208 template <class Predicate> binary_negate<Predicate> not2(const Predicate& pred);
|
D | forward_list | 126 template <class Predicate> void remove_if(Predicate pred);
|
D | list | 135 template <class Pred> void remove_if(Pred pred);
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/ |
D | assert.hpp | 217 #define BOOST_MPL_ASSERT(pred) \ argument 222 boost::mpl::assert_arg( (void (*) pred)0, 1 ) \ 231 # define BOOST_MPL_ASSERT_NOT(pred) \ argument 235 boost::mpl::assert_not_arg( (void (*) pred)0, 1 ) \ 241 # define BOOST_MPL_ASSERT_NOT(pred) \ 246 boost::mpl::assert_not_arg( (void (*) pred)0, 1 ) \
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/detail/ |
D | auto_rec.hpp | 25 # define BOOST_PP_AUTO_REC(pred, n) BOOST_PP_NODE_ENTRY_ ## n(pred) argument
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/control/ |
D | while.hpp | 28 # define BOOST_PP_WHILE(pred, op, state)
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/repetition/ |
D | for.hpp | 24 # define BOOST_PP_FOR(state, pred, op, macro)
|