Home
last modified time | relevance | path

Searched refs:pred (Results 1 – 18 of 18) sorted by relevance

/ndk/sources/third_party/googletest/googletest/include/gtest/
Dgtest_pred_impl.h89 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/
Dalgorithm.hpp65 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/b16355858/jni/
Dsample.c9 const unsigned pred = kPredictorsC[0](left, top + 1); in main() local
11 top[0], top[1], left, pred); in main()
12 if (pred == left) in main()
Dsample_lib.c19 const unsigned pred = Select(top[0], left, top[-1]); in Predictor11() local
20 return pred; in Predictor11()
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/range/algorithm/
Dequal.hpp70 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/
Ddefinitions-utils.mk144 $(eval -local-pred = $$(call seq,foo,$$1))\
145 $(call test-expect,,$(call find-first,,-local-pred))\
146 $(call test-expect,,$(call find-first,bar,-local-pred))
149 $(eval -local-pred = $$(call seq,foo,$$1))\
150 $(call test-expect,foo,$(call find-first,foo,-local-pred))\
151 $(call test-expect,foo,$(call find-first,aaa foo bar,-local-pred))\
152 $(call test-expect,foo,$(call find-first,aaa foo foo bar,-local-pred))
Ddefinitions-graph.mk105 $(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/
Dfloating_point_comparison.hpp231 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/
Dremove_if.pass.cpp45 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/
Dcondition_variable36 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);
Dalgorithm24 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 …]
Dfunctional190 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);
Dforward_list126 template <class Predicate> void remove_if(Predicate pred);
Dlist135 template <class Pred> void remove_if(Pred pred);
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
Dassert.hpp217 #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/
Dauto_rec.hpp25 # 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/
Dwhile.hpp28 # define BOOST_PP_WHILE(pred, op, state)
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/repetition/
Dfor.hpp24 # define BOOST_PP_FOR(state, pred, op, macro)