Home
last modified time | relevance | path

Searched refs:__pred (Results 1 – 25 of 127) sorted by relevance

123456

/freebsd/contrib/llvm-project/libcxx/include/__algorithm/
H A Dstable_partition.h40 _Predicate __pred, in __stable_partition_impl() argument
52 if (__pred(*++__m)) { in __stable_partition_impl()
70 if (__pred(*__i)) { in __stable_partition_impl()
96 … std::__stable_partition_impl<_AlgPolicy, _Predicate&>(__first, __m, __pred, __len2, __p, __fit); in __stable_partition_impl()
103 while (__pred(*__m1)) { in __stable_partition_impl()
110 …__second_false = std::__stable_partition_impl<_AlgPolicy, _Predicate&>(__m1, __last, __pred, __len… in __stable_partition_impl()
121 __stable_partition_impl(_ForwardIterator __first, _ForwardIterator __last, _Predicate __pred, forwa… in __stable_partition_impl() argument
130 if (!__pred(*__first)) in __stable_partition_impl()
145 std::move(__first), std::move(__last), __pred, __len, __p, forward_iterator_tag()); in __stable_partition_impl()
152 _Predicate __pred, in __stable_partition_impl() argument
[all …]
H A Dranges_find_last.h42 __find_last_impl(_Iter __first, _Sent __last, _Pred __pred, _Proj& __proj) { in __find_last_impl() argument
50 if (__pred(std::invoke(__proj, *__it))) { in __find_last_impl()
54 if (__pred(std::invoke(__proj, *__first))) { in __find_last_impl()
62 if (__pred(std::invoke(__proj, *__first))) { in __find_last_impl()
104 _Pred& __pred; member
107 return std::invoke(__pred, std::forward<_Elem>(__elem)); in decltype()
116 operator()(_Iter __first, _Sent __last, _Pred __pred, _Proj __proj = {}) { in operator()
117 …return ranges::__find_last_impl(std::move(__first), std::move(__last), __op<_Pred>{__pred}, __proj…
124 operator()(_Range&& __range, _Pred __pred, _Proj __proj = {}) { in operator()
125 …anges::__find_last_impl(ranges::begin(__range), ranges::end(__range), __op<_Pred>{__pred}, __proj);
[all …]
H A Dpartition.h30 __partition_impl(_ForwardIterator __first, _Sentinel __last, _Predicate __pred, forward_iterator_ta… in __partition_impl() argument
34 if (!__pred(*__first)) in __partition_impl()
41 if (__pred(*__p)) { in __partition_impl()
51 __partition_impl(_BidirectionalIterator __first, _Sentinel __sentinel, _Predicate __pred, bidirecti… in __partition_impl() argument
59 if (!__pred(*__first)) in __partition_impl()
66 } while (!__pred(*__last)); in __partition_impl()
74 __partition(_ForwardIterator __first, _Sentinel __last, _Predicate&& __pred, _IterCategory __iter_c… in __partition() argument
76 std::move(__first), std::move(__last), __pred, __iter_category); in __partition()
81 partition(_ForwardIterator __first, _ForwardIterator __last, _Predicate __pred) { in partition() argument
83 …auto __result = std::__partition<_ClassicAlgPolicy>(std::move(__first), std::move(__last), __pred,… in partition()
H A Dis_permutation.h78 _Pred&& __pred,
87 if (std::__invoke(__pred, std::__invoke(__proj1, *__match), std::__invoke(__proj1, *__i)))
95 if (std::__invoke(__pred, std::__invoke(__proj1, *__i), std::__invoke(__proj2, *__j)))
104 if (std::__invoke(__pred, std::__invoke(__proj1, *__i), std::__invoke(__proj1, *__j)))
118 …ardIterator1 __first1, _Sentinel1 __last1, _ForwardIterator2 __first2, _BinaryPredicate&& __pred) {
121 if (!__pred(*__first1, *__first2))
140 __pred,
159 _Pred&& __pred,
165 … if (!std::__invoke(__pred, std::__invoke(__proj1, *__first1), std::__invoke(__proj2, *__first2)))
185 …std::move(__first1), std::move(__last1), std::move(__first2), std::move(__last2), __pred, __proj1,…
[all …]
H A Dsearch_n.h36 … _Iter __first, _Sent __last, _SizeT __count, const _Type& __value, _Pred& __pred, _Proj& __proj) { in __search_n_forward_impl() argument
46 if (std::__invoke(__pred, std::__invoke(__proj, *__first), __value)) in __search_n_forward_impl()
62 if (!std::__invoke(__pred, std::__invoke(__proj, *__m), __value)) { in __search_n_forward_impl()
73 …_Iter __first, _Sent __last, _SizeT __count, const _Type& __value, _Pred& __pred, _Proj& __proj, _… in __search_n_random_access_impl() argument
90 if (std::__invoke(__pred, std::__invoke(__proj, *__first), __value)) in __search_n_random_access_impl()
103 if (!std::__invoke(__pred, std::__invoke(__proj, *__m), __value)) { in __search_n_random_access_impl()
120 __search_n_impl(_Iter __first, _Sent __last, _DiffT __count, const _Type& __value, _Pred& __pred, _… in __search_n_impl() argument
122 __first, __last, __count, __value, __pred, __proj, __last - __first); in __search_n_impl()
135 __search_n_impl(_Iter1 __first, _Sent1 __last, _DiffT __count, const _Type& __value, _Pred& __pred,… in __search_n_impl() argument
136 …return std::__search_n_forward_impl<_ClassicAlgPolicy>(__first, __last, __count, __value, __pred, … in __search_n_impl()
[all …]
H A Dranges_ends_with.h47 _Pred& __pred, in __ends_with_fn_impl_bidirectional()
55 … __rbegin1, __rend1, __rbegin2, __rend2, std::ref(__pred), std::ref(__proj1), std::ref(__proj2)); in __ends_with_fn_impl_bidirectional()
64 _Pred& __pred, in __ends_with_fn_impl()
69 …return __ends_with_fn_impl_bidirectional(__first1, __last1, __first2, __last2, __pred, __proj1, __… in __ends_with_fn_impl()
84 __pred, in __ends_with_fn_impl()
104 _Pred& __pred, in __ends_with_fn_impl_with_offset()
111 …std::move(__first1), std::move(__last1), std::move(__first2), std::move(__last2), __pred, __proj1,… in __ends_with_fn_impl_with_offset()
120 std::ref(__pred), in __ends_with_fn_impl_with_offset()
141 _Pred __pred = {}, in operator()
145 …std::move(__first1), std::move(__last1), std::move(__first2), std::move(__last2), __pred, __proj1,…
[all …]
H A Dranges_is_partitioned.h37 __is_partitioned_impl(_Iter __first, _Sent __last, _Pred& __pred, _Proj& __proj) { in __is_partitioned_impl()
39 if (!std::invoke(__pred, std::invoke(__proj, *__first))) in __is_partitioned_impl()
48 if (std::invoke(__pred, std::invoke(__proj, *__first))) in __is_partitioned_impl()
60 operator()(_Iter __first, _Sent __last, _Pred __pred, _Proj __proj = {}) const { in operator()
61 return __is_partitioned_impl(std::move(__first), std::move(__last), __pred, __proj);
68 operator()(_Range&& __range, _Pred __pred, _Proj __proj = {}) const { in operator()
69 return __is_partitioned_impl(ranges::begin(__range), ranges::end(__range), __pred, __proj);
H A Dsearch.h40 …_Iter1 __first1, _Sent1 __last1, _Iter2 __first2, _Sent2 __last2, _Pred& __pred, _Proj1& __proj1, … in __search_forward_impl() argument
50 … if (std::__invoke(__pred, std::__invoke(__proj1, *__first1), std::__invoke(__proj2, *__first2))) in __search_forward_impl()
65 if (!std::__invoke(__pred, std::__invoke(__proj1, *__m1), std::__invoke(__proj2, *__m2))) { in __search_forward_impl()
88 _Pred& __pred, in __search_random_access_impl() argument
101 … if (std::__invoke(__pred, std::__invoke(__proj1, *__first1), std::__invoke(__proj2, *__first2))) in __search_random_access_impl()
112 if (!std::__invoke(__pred, std::__invoke(__proj1, *__m1), std::__invoke(__proj2, *__m2))) { in __search_random_access_impl()
131 …_Iter1 __first1, _Sent1 __last1, _Iter2 __first2, _Sent2 __last2, _Pred& __pred, _Proj1& __proj1, … in __search_impl() argument
142 __first1, __last1, __first2, __last2, __pred, __proj1, __proj2, __size1, __size2); in __search_impl()
158 …_Iter1 __first1, _Sent1 __last1, _Iter2 __first2, _Sent2 __last2, _Pred& __pred, _Proj1& __proj1, … in __search_impl() argument
159 …return std::__search_forward_impl<_ClassicAlgPolicy>(__first1, __last1, __first2, __last2, __pred,… in __search_impl()
[all …]
H A Dmake_projected.h30 _Pred& __pred; // Can be a unary or a binary predicate. member
34 : __pred(__pred_arg), __proj(__proj_arg) {} in _ProjectedPred()
40 return std::__invoke(__pred, std::__invoke(__proj, std::forward<_Tp>(__v))); in operator()
50__pred, std::__invoke(__proj, std::forward<_T1>(__lhs)), std::__invoke(__proj, std::forward<_T2>(_… in operator()
58 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR _ProjectedPred<_Pred, _Proj> __make_projected(_Pred& __pred in __make_projected() argument
59 return _ProjectedPred<_Pred, _Proj>(__pred, __proj); in __make_projected()
69 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR _Pred& __make_projected(_Pred& __pred, _Proj&) { in __make_projected() argument
70 return __pred; in __make_projected()
H A Dranges_remove_if.h41 __remove_if_impl(_Iter __first, _Sent __last, _Pred& __pred, _Proj& __proj) { in __remove_if_impl() argument
42 auto __new_end = ranges::__find_if_impl(__first, __last, __pred, __proj); in __remove_if_impl()
48 if (!std::invoke(__pred, std::invoke(__proj, *__i))) { in __remove_if_impl()
62 operator()(_Iter __first, _Sent __last, _Pred __pred, _Proj __proj = {}) const { in operator()
63 return ranges::__remove_if_impl(std::move(__first), std::move(__last), __pred, __proj);
71 operator()(_Range&& __range, _Pred __pred, _Proj __proj = {}) const { in operator()
72 return ranges::__remove_if_impl(ranges::begin(__range), ranges::end(__range), __pred, __proj);
H A Dmismatch.h42 __mismatch_loop(_Iter1 __first1, _Sent1 __last1, _Iter2 __first2, _Pred& __pred, _Proj1& __proj1, _… in __mismatch_loop() argument
44 … if (!std::__invoke(__pred, std::__invoke(__proj1, *__first1), std::__invoke(__proj2, *__first2))) in __mismatch_loop()
54 __mismatch(_Iter1 __first1, _Sent1 __last1, _Iter2 __first2, _Pred& __pred, _Proj1& __proj1, _Proj2… in __mismatch() argument
55 return std::__mismatch_loop(__first1, __last1, __first2, __pred, __proj1, __proj2); in __mismatch()
116 __equal_to __pred; in __mismatch_vectorized() local
118 return std::__mismatch_loop(__first1, __last1, __first2, __pred, __proj, __proj); in __mismatch_vectorized()
142 __mismatch(_Tp* __first1, _Tp* __last1, _Tp* __first2, _Pred& __pred, _Proj1& __proj1, _Proj2& __pr… in __mismatch() argument
144 return std::__mismatch_loop(__first1, __last1, __first2, __pred, __proj1, __proj2); in __mismatch()
155 …utIterator1 __first1, _InputIterator1 __last1, _InputIterator2 __first2, _BinaryPredicate __pred) { in mismatch() argument
158 …iter(__first1), std::__unwrap_iter(__last1), std::__unwrap_iter(__first2), __pred, __proj, __proj); in mismatch()
[all …]
H A Dranges_none_of.h36 __none_of_impl(_Iter __first, _Sent __last, _Pred& __pred, _Proj& __proj) { in __none_of_impl()
38 if (std::invoke(__pred, std::invoke(__proj, *__first))) in __none_of_impl()
49 operator()(_Iter __first, _Sent __last, _Pred __pred = {}, _Proj __proj = {}) const { in operator()
50 return __none_of_impl(std::move(__first), std::move(__last), __pred, __proj);
57 operator()(_Range&& __range, _Pred __pred, _Proj __proj = {}) const { in operator()
58 return __none_of_impl(ranges::begin(__range), ranges::end(__range), __pred, __proj);
H A Dranges_find_if.h37 _LIBCPP_HIDE_FROM_ABI constexpr _Ip __find_if_impl(_Ip __first, _Sp __last, _Pred& __pred, _Proj& _… in __find_if_impl() argument
39 if (std::invoke(__pred, std::invoke(__proj, *__first))) in __find_if_impl()
51 operator()(_Ip __first, _Sp __last, _Pred __pred, _Proj __proj = {}) const { in operator()
52 return ranges::__find_if_impl(std::move(__first), std::move(__last), __pred, __proj);
57 operator()(_Rp&& __r, _Pred __pred, _Proj __proj = {}) const { in operator()
58 return ranges::__find_if_impl(ranges::begin(__r), ranges::end(__r), __pred, __proj);
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/__algorithm/
H A Dstable_partition.h38 _Predicate __pred, in __stable_partition_impl() argument
50 if (__pred(*++__m)) { in __stable_partition_impl()
68 if (__pred(*__i)) { in __stable_partition_impl()
94 … std::__stable_partition_impl<_AlgPolicy, _Predicate&>(__first, __m, __pred, __len2, __p, __fit); in __stable_partition_impl()
101 while (__pred(*__m1)) { in __stable_partition_impl()
108 …__second_false = std::__stable_partition_impl<_AlgPolicy, _Predicate&>(__m1, __last, __pred, __len… in __stable_partition_impl()
119 __stable_partition_impl(_ForwardIterator __first, _ForwardIterator __last, _Predicate __pred, forwa… in __stable_partition_impl() argument
128 if (!__pred(*__first)) in __stable_partition_impl()
145 std::move(__first), std::move(__last), __pred, __len, __p, forward_iterator_tag()); in __stable_partition_impl()
152 _Predicate __pred, in __stable_partition_impl() argument
[all …]
H A Dpartition.h29 __partition_impl(_ForwardIterator __first, _Sentinel __last, _Predicate __pred, forward_iterator_ta… in __partition_impl() argument
33 if (!__pred(*__first)) in __partition_impl()
40 if (__pred(*__p)) { in __partition_impl()
50 __partition_impl(_BidirectionalIterator __first, _Sentinel __sentinel, _Predicate __pred, bidirecti… in __partition_impl() argument
58 if (!__pred(*__first)) in __partition_impl()
65 } while (!__pred(*__last)); in __partition_impl()
73 __partition(_ForwardIterator __first, _Sentinel __last, _Predicate&& __pred, _IterCategory __iter_c… in __partition() argument
75 std::move(__first), std::move(__last), __pred, __iter_category); in __partition()
80 partition(_ForwardIterator __first, _ForwardIterator __last, _Predicate __pred) { in partition() argument
82 …auto __result = std::__partition<_ClassicAlgPolicy>(std::move(__first), std::move(__last), __pred,… in partition()
H A Dis_permutation.h62 _Pred&& __pred,
71 if (std::__invoke(__pred, std::__invoke(__proj1, *__match), std::__invoke(__proj1, *__i)))
79 if (std::__invoke(__pred, std::__invoke(__proj1, *__i), std::__invoke(__proj2, *__j)))
88 if (std::__invoke(__pred, std::__invoke(__proj1, *__i), std::__invoke(__proj1, *__j)))
102 …ardIterator1 __first1, _Sentinel1 __last1, _ForwardIterator2 __first2, _BinaryPredicate&& __pred) {
105 if (!__pred(*__first1, *__first2))
124 __pred,
143 _Pred&& __pred,
149 … if (!std::__invoke(__pred, std::__invoke(__proj1, *__first1), std::__invoke(__proj2, *__first2)))
169 …std::move(__first1), std::move(__last1), std::move(__first2), std::move(__last2), __pred, __proj1,…
[all …]
H A Dsearch_n.h33 … _Iter __first, _Sent __last, _SizeT __count, const _Type& __value, _Pred& __pred, _Proj& __proj) { in __search_n_forward_impl() argument
43 if (std::__invoke(__pred, std::__invoke(__proj, *__first), __value)) in __search_n_forward_impl()
59 if (!std::__invoke(__pred, std::__invoke(__proj, *__m), __value)) { in __search_n_forward_impl()
70 …_Iter __first, _Sent __last, _SizeT __count, const _Type& __value, _Pred& __pred, _Proj& __proj, _… in __search_n_random_access_impl() argument
87 if (std::__invoke(__pred, std::__invoke(__proj, *__first), __value)) in __search_n_random_access_impl()
100 if (!std::__invoke(__pred, std::__invoke(__proj, *__m), __value)) { in __search_n_random_access_impl()
117 __search_n_impl(_Iter __first, _Sent __last, _DiffT __count, const _Type& __value, _Pred& __pred, _… in __search_n_impl() argument
119 __first, __last, __count, __value, __pred, __proj, __last - __first); in __search_n_impl()
132 __search_n_impl(_Iter1 __first, _Sent1 __last, _DiffT __count, const _Type& __value, _Pred& __pred,… in __search_n_impl() argument
133 …return std::__search_n_forward_impl<_ClassicAlgPolicy>(__first, __last, __count, __value, __pred, … in __search_n_impl()
[all …]
H A Dmake_projected.h31 _Pred& __pred; // Can be a unary or a binary predicate. member
34 …_LIBCPP_HIDE_FROM_ABI _ProjectedPred(_Pred& __pred_arg, _Proj& __proj_arg) : __pred(__pred_arg), _… in _ProjectedPred()
40 return std::__invoke(__pred, std::__invoke(__proj, std::forward<_Tp>(__v))); in operator()
49__pred, std::__invoke(__proj, std::forward<_T1>(__lhs)), std::__invoke(__proj, std::forward<_T2>(_… in operator()
57 _LIBCPP_HIDE_FROM_ABI _ProjectedPred<_Pred, _Proj> __make_projected(_Pred& __pred, _Proj& __proj) { in __make_projected() argument
58 return _ProjectedPred<_Pred, _Proj>(__pred, __proj); in __make_projected()
68 _LIBCPP_HIDE_FROM_ABI _Pred& __make_projected(_Pred& __pred, _Proj&) { in __make_projected() argument
69 return __pred; in __make_projected()
H A Dfind_end.h44 _Pred& __pred, in __find_end_impl() argument
58 … if (std::__invoke(__pred, std::__invoke(__proj1, *__first1), std::__invoke(__proj2, *__first2))) in __find_end_impl()
75 if (!std::__invoke(__pred, std::__invoke(__proj1, *__m1), std::__invoke(__proj2, *__m2))) { in __find_end_impl()
96 _Pred& __pred, in __find_end() argument
114 if (std::__invoke(__pred, std::__invoke(__proj1, *--__l1), std::__invoke(__proj2, *__l2))) in __find_end()
127 … if (!std::__invoke(__pred, std::__invoke(__proj1, *--__m1), std::__invoke(__proj2, *--__m2))) { in __find_end()
147 _Pred& __pred, in __find_end() argument
170 if (std::__invoke(__pred, std::__invoke(__proj1, *--__l1), std::__invoke(__proj2, *__l2))) in __find_end()
179 if (!std::__invoke(__pred, std::__invoke(__proj1, *--__m1), std::__invoke(*--__m2))) { in __find_end()
192 _BinaryPredicate& __pred) { in __find_end_classic() argument
[all …]
H A Dsearch.h39 …_Iter1 __first1, _Sent1 __last1, _Iter2 __first2, _Sent2 __last2, _Pred& __pred, _Proj1& __proj1, … in __search_forward_impl() argument
49 … if (std::__invoke(__pred, std::__invoke(__proj1, *__first1), std::__invoke(__proj2, *__first2))) in __search_forward_impl()
64 if (!std::__invoke(__pred, std::__invoke(__proj1, *__m1), std::__invoke(__proj2, *__m2))) { in __search_forward_impl()
87 _Pred& __pred, in __search_random_access_impl() argument
100 … if (std::__invoke(__pred, std::__invoke(__proj1, *__first1), std::__invoke(__proj2, *__first2))) in __search_random_access_impl()
111 if (!std::__invoke(__pred, std::__invoke(__proj1, *__m1), std::__invoke(__proj2, *__m2))) { in __search_random_access_impl()
130 …_Iter1 __first1, _Sent1 __last1, _Iter2 __first2, _Sent2 __last2, _Pred& __pred, _Proj1& __proj1, … in __search_impl() argument
141 __first1, __last1, __first2, __last2, __pred, __proj1, __proj2, __size1, __size2); in __search_impl()
157 …_Iter1 __first1, _Sent1 __last1, _Iter2 __first2, _Sent2 __last2, _Pred& __pred, _Proj1& __proj1, … in __search_impl() argument
158 …return std::__search_forward_impl<_ClassicAlgPolicy>(__first1, __last1, __first2, __last2, __pred,… in __search_impl()
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/
H A Dalgorithm_impl.h
H A Dunseq_backend_simd.h
/freebsd/contrib/llvm-project/libcxx/include/__ranges/
H A Dtake_while_view.h61 …PP_HIDE_FROM_ABI constexpr _LIBCPP_EXPLICIT_SINCE_CXX23 take_while_view(_View __base, _Pred __pred) in take_while_view() argument
62 : __base_(std::move(__base)), __pred_(std::in_place, std::move(__pred)) {} in take_while_view()
116 _LIBCPP_HIDE_FROM_ABI constexpr explicit __sentinel(sentinel_t<_Base> __end, const _Pred* __pred) in __sentinel() argument
117 : __end_(std::move(__end)), __pred_(__pred) {} in __sentinel()
142 …[[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr auto operator()(_Range&& __range, _Pred&& __pred) co…
143 …oexcept(noexcept(/**/ take_while_view(std::forward<_Range>(__range), std::forward<_Pred>(__pred))))
144 … -> decltype(/*--*/ take_while_view(std::forward<_Range>(__range), std::forward<_Pred>(__pred))) {
145 …turn /*-------------*/ take_while_view(std::forward<_Range>(__range), std::forward<_Pred>(__pred));
150 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr auto operator()(_Pred&& __pred) const in operator()
152 return __pipeable(std::__bind_back(*this, std::forward<_Pred>(__pred))); in operator()
H A Ddrop_while_view.h57 …PP_HIDE_FROM_ABI constexpr _LIBCPP_EXPLICIT_SINCE_CXX23 drop_while_view(_View __base, _Pred __pred) in drop_while_view() argument
58 : __base_(std::move(__base)), __pred_(std::in_place, std::move(__pred)) {} in drop_while_view()
108 …[[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr auto operator()(_Range&& __range, _Pred&& __pred) co…
109 …oexcept(noexcept(/**/ drop_while_view(std::forward<_Range>(__range), std::forward<_Pred>(__pred))))
110 … -> decltype(/*--*/ drop_while_view(std::forward<_Range>(__range), std::forward<_Pred>(__pred))) {
111 …turn /*-------------*/ drop_while_view(std::forward<_Range>(__range), std::forward<_Pred>(__pred));
116 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr auto operator()(_Pred&& __pred) const in operator()
118 return __pipeable(std::__bind_back(*this, std::forward<_Pred>(__pred))); in operator()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dcondition_variable185 _LIBCPP_HIDE_FROM_ABI void wait(_Lock& __lock, _Predicate __pred);
198 wait_until(_Lock& __lock, const chrono::time_point<_Clock, _Duration>& __t, _Predicate __pred);
204 …DE_FROM_ABI wait_for(_Lock& __lock, const chrono::duration<_Rep, _Period>& __d, _Predicate __pred);
209 …BILITY_SYNC _LIBCPP_HIDE_FROM_ABI bool wait(_Lock& __lock, stop_token __stoken, _Predicate __pred);
213 …, stop_token __stoken, const chrono::time_point<_Clock, _Duration>& __abs_time, _Predicate __pred);
217 …__lock, stop_token __stoken, const chrono::duration<_Rep, _Period>& __rel_time, _Predicate __pred);
235 inline void condition_variable_any::wait(_Lock& __lock, _Predicate __pred) {
236 while (!__pred())
242 …y::wait_until(_Lock& __lock, const chrono::time_point<_Clock, _Duration>& __t, _Predicate __pred) {
243 while (!__pred())
[all …]

123456