Home
last modified time | relevance | path

Searched refs:Pred (Results 1 – 21 of 21) sorted by relevance

/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
Dassert.hpp153 template< typename Pred >
154 failed ************ (Pred::************
155 assert_arg( void (*)(Pred), typename assert_arg_pred<Pred>::type )
158 template< typename Pred >
159 failed ************ (boost::mpl::not_<Pred>::************
160 assert_not_arg( void (*)(Pred), typename assert_arg_pred_not<Pred>::type )
163 template< typename Pred >
165 assert_arg( void (*)(Pred), typename assert_arg_pred_not<Pred>::type );
167 template< typename Pred >
169 assert_not_arg( void (*)(Pred), typename assert_arg_pred<Pred>::type );
[all …]
Dremove_if.hpp31 template< typename Pred, typename InsertOp > struct remove_if_helper
36 typename apply1<Pred,U>::type
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.condition/thread.condition.condvar/
Dwait_pred.pass.cpp29 class Pred class
33 explicit Pred(int& i) : i_(i) {} in Pred() function in Pred
44 cv.wait(lk, Pred(test2)); in f()
Dwait_for_pred.pass.cpp26 class Pred class
30 explicit Pred(int& i) : i_(i) {} in Pred() function in Pred
52 bool r = cv.wait_for(lk, milliseconds(250), Pred(test2)); in f()
Dwait_until_pred.pass.cpp43 class Pred class
47 explicit Pred(int& i) : i_(i) {} in Pred() function in Pred
68 bool r = cv.wait_until(lk, t, Pred(test2)); in f()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.condition/thread.condition.condvarany/
Dwait_pred.pass.cpp33 class Pred class
37 explicit Pred(int& i) : i_(i) {} in Pred() function in Pred
48 cv.wait(lk, Pred(test2)); in f()
Dwait_for_pred.pass.cpp25 class Pred class
29 explicit Pred(int& i) : i_(i) {} in Pred() function in Pred
55 bool r = cv.wait_for(lk, milliseconds(250), Pred(test2)); in f()
Dwait_until_pred.pass.cpp43 class Pred class
47 explicit Pred(int& i) : i_(i) {} in Pred() function in Pred
72 bool r = cv.wait_until(lk, t, Pred(test2)); in f()
/ndk/sources/third_party/googletest/googletest/include/gtest/
Dgtest_pred_impl.h85 template <typename Pred,
89 Pred pred, in AssertPred1Helper()
126 template <typename Pred,
132 Pred pred, in AssertPred2Helper()
174 template <typename Pred,
182 Pred pred, in AssertPred3Helper()
229 template <typename Pred,
239 Pred pred, in AssertPred4Helper()
291 template <typename Pred,
303 Pred pred, in AssertPred5Helper()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ext/
Dhash_set21 template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
30 typedef Pred key_equal;
93 template <class Value, class Hash, class Pred, class Alloc>
94 void swap(hash_set<Value, Hash, Pred, Alloc>& x,
95 hash_set<Value, Hash, Pred, Alloc>& y);
97 template <class Value, class Hash, class Pred, class Alloc>
99 operator==(const hash_set<Value, Hash, Pred, Alloc>& x,
100 const hash_set<Value, Hash, Pred, Alloc>& y);
102 template <class Value, class Hash, class Pred, class Alloc>
104 operator!=(const hash_set<Value, Hash, Pred, Alloc>& x,
[all …]
Dhash_map21 template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
30 typedef Pred key_equal;
96 template <class Key, class T, class Hash, class Pred, class Alloc>
97 void swap(hash_map<Key, T, Hash, Pred, Alloc>& x,
98 hash_map<Key, T, Hash, Pred, Alloc>& y);
100 template <class Key, class T, class Hash, class Pred, class Alloc>
102 operator==(const hash_map<Key, T, Hash, Pred, Alloc>& x,
103 const hash_map<Key, T, Hash, Pred, Alloc>& y);
105 template <class Key, class T, class Hash, class Pred, class Alloc>
107 operator!=(const hash_map<Key, T, Hash, Pred, Alloc>& x,
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.min.max/
Dmax_element_comp.pass.cpp61 template <class Iter, class Pred>
62 void test_eq0(Iter first, Iter last, Pred p) in test_eq0()
Dmin_element_comp.pass.cpp61 template <class Iter, class Pred>
62 void test_eq0(Iter first, Iter last, Pred p) in test_eq0()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.copy/
Dcopy_if.pass.cpp23 struct Pred struct
38 OutIter r = std::copy_if(InIter(ia), InIter(ia+N), OutIter(ib), Pred()); in test() argument
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/
Dfinder.hpp219 PredicateT Pred, in token_finder() argument
222 return detail::token_finderF<PredicateT>( Pred, eCompress ); in token_finder()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dunordered_set23 template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
32 typedef Pred key_equal;
157 template <class Value, class Hash, class Pred, class Alloc>
158 void swap(unordered_set<Value, Hash, Pred, Alloc>& x,
159 unordered_set<Value, Hash, Pred, Alloc>& y)
162 template <class Value, class Hash, class Pred, class Alloc>
164 operator==(const unordered_set<Value, Hash, Pred, Alloc>& x,
165 const unordered_set<Value, Hash, Pred, Alloc>& y);
167 template <class Value, class Hash, class Pred, class Alloc>
169 operator!=(const unordered_set<Value, Hash, Pred, Alloc>& x,
[all …]
Dunordered_map23 template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
32 typedef Pred key_equal;
172 template <class Key, class T, class Hash, class Pred, class Alloc>
173 void swap(unordered_map<Key, T, Hash, Pred, Alloc>& x,
174 unordered_map<Key, T, Hash, Pred, Alloc>& y)
177 template <class Key, class T, class Hash, class Pred, class Alloc>
179 operator==(const unordered_map<Key, T, Hash, Pred, Alloc>& x,
180 const unordered_map<Key, T, Hash, Pred, Alloc>& y);
182 template <class Key, class T, class Hash, class Pred, class Alloc>
184 operator!=(const unordered_map<Key, T, Hash, Pred, Alloc>& x,
[all …]
Dlist135 template <class Pred> void remove_if(Pred pred);
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/
Dfinder.hpp557 PredicateT Pred, in token_finderF()
559 m_Pred(Pred), m_eCompress(eCompress) {} in token_finderF()
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
Dtest_tools.hpp501 template<typename Pred \
504 check_frwd( Pred P, unit_test::lazy_ostream const& check_descr, \
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/policies/
Dpolicy.hpp270 template <class Seq, class Pred, class DefaultType>
274 typedef typename mpl::find_if<Seq, Pred>::type iter;