Home
last modified time | relevance | path

Searched refs:requires (Results 1 – 25 of 1432) sorted by relevance

12345678910>>...58

/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
Diterator_concepts.h74 template<typename _Tp> requires is_object_v<_Tp> in _GLIBCXX_VISIBILITY()
86 concept __can_reference = requires { typename __with_ref<_Tp>; }; in _GLIBCXX_VISIBILITY()
89 concept __dereferenceable = requires(_Tp& __t) in _GLIBCXX_VISIBILITY()
107 && requires(_Tp&& __t) { iter_move(static_cast<_Tp&&>(__t)); }; in _GLIBCXX_VISIBILITY()
117 requires __adl_imove<_Tp> in _GLIBCXX_VISIBILITY()
122 requires (!__adl_imove<_Tp>) in _GLIBCXX_VISIBILITY()
165 requires __detail:: in _GLIBCXX_VISIBILITY()
172 template<typename _Tp> requires is_object_v<_Tp> in _GLIBCXX_VISIBILITY()
180 template<typename _Tp> requires requires { typename _Tp::difference_type; } in _GLIBCXX_VISIBILITY()
185 requires (!requires { typename _Tp::difference_type; } in _GLIBCXX_VISIBILITY()
[all …]
Dranges_util.h54 && (is_pointer_v<_It> || requires(_It __it) { __it.operator->(); }); in _GLIBCXX_VISIBILITY()
63 requires is_class_v<_Derived> && same_as<_Derived, remove_cv_t<_Derived>> in _GLIBCXX_VISIBILITY()
100 requires forward_range<_Derived> in _GLIBCXX_VISIBILITY()
106 requires forward_range<const _Derived> in _GLIBCXX_VISIBILITY()
111 requires requires { ranges::empty(_M_derived()); } in _GLIBCXX_VISIBILITY()
116 requires requires { ranges::empty(_M_derived()); } in _GLIBCXX_VISIBILITY()
121 requires contiguous_iterator<iterator_t<_Derived>> in _GLIBCXX_VISIBILITY()
126 requires range<const _Derived> in _GLIBCXX_VISIBILITY()
132 requires forward_range<_Derived> in _GLIBCXX_VISIBILITY()
138 requires forward_range<const _Derived> in _GLIBCXX_VISIBILITY()
[all …]
Dranges_base.h111 requires is_array_v<remove_reference_t<_Tp>> || __member_begin<_Tp> in _GLIBCXX_VISIBILITY()
129 concept __member_end = requires(_Tp& __t) in _GLIBCXX_VISIBILITY()
140 && requires(_Tp& __t) in _GLIBCXX_VISIBILITY()
162 requires is_bounded_array_v<remove_reference_t<_Tp>> in _GLIBCXX_VISIBILITY()
199 requires requires { _Begin{}(__cust_access::__as_const<_Tp>(__e)); } in _GLIBCXX_VISIBILITY()
212 requires requires { _End{}(__cust_access::__as_const<_Tp>(__e)); } in _GLIBCXX_VISIBILITY()
219 concept __member_rbegin = requires(_Tp& __t) in _GLIBCXX_VISIBILITY()
229 && requires(_Tp& __t) in _GLIBCXX_VISIBILITY()
235 concept __reversable = requires(_Tp& __t) in _GLIBCXX_VISIBILITY()
267 requires __member_rbegin<_Tp> || __adl_rbegin<_Tp> || __reversable<_Tp> in _GLIBCXX_VISIBILITY()
[all …]
Dstl_iterator.h215 requires __convertible<_Iter> in _GLIBCXX_VISIBILITY()
226 requires __convertible<_Iter> in _GLIBCXX_VISIBILITY()
275 requires is_pointer_v<_Iterator> in _GLIBCXX_VISIBILITY()
276 || requires(const _Iterator __i) { __i.operator->(); } in _GLIBCXX_VISIBILITY()
532 requires requires { { __x.base() == __y.base() } -> convertible_to<bool>; } in _GLIBCXX_VISIBILITY()
540 requires requires { { __x.base() != __y.base() } -> convertible_to<bool>; } in _GLIBCXX_VISIBILITY()
548 requires requires { { __x.base() > __y.base() } -> convertible_to<bool>; } in _GLIBCXX_VISIBILITY()
556 requires requires { { __x.base() < __y.base() } -> convertible_to<bool>; } in _GLIBCXX_VISIBILITY()
564 requires requires { { __x.base() >= __y.base() } -> convertible_to<bool>; } in _GLIBCXX_VISIBILITY()
572 requires requires { { __x.base() <= __y.base() } -> convertible_to<bool>; } in _GLIBCXX_VISIBILITY()
[all …]
Dranges_uninitialized.h85 requires destructible<iter_value_t<_Iter>> in _GLIBCXX_VISIBILITY()
90 requires destructible<range_value_t<_Range>> in _GLIBCXX_VISIBILITY()
100 requires destructible<iter_value_t<_Iter>> in _GLIBCXX_VISIBILITY()
125 requires destructible<iter_value_t<_Iter>> in _GLIBCXX_VISIBILITY()
143 requires default_initializable<iter_value_t<_Iter>> in _GLIBCXX_VISIBILITY()
161 requires default_initializable<range_value_t<_Range>> in _GLIBCXX_VISIBILITY()
175 requires default_initializable<iter_value_t<_Iter>> in _GLIBCXX_VISIBILITY()
200 requires default_initializable<iter_value_t<_Iter>> in _GLIBCXX_VISIBILITY()
219 requires default_initializable<range_value_t<_Range>> in _GLIBCXX_VISIBILITY()
233 requires default_initializable<iter_value_t<_Iter>> in _GLIBCXX_VISIBILITY()
[all …]
Dranges_cmp.h71 = requires (_Tp&& __t, _Up&& __u) { { __t < __u } -> same_as<bool>; } in _GLIBCXX_VISIBILITY()
74 && (! requires(_Tp&& __t, _Up&& __u) in _GLIBCXX_VISIBILITY()
76 && ! requires(_Tp&& __t, _Up&& __u) in _GLIBCXX_VISIBILITY()
89 requires equality_comparable_with<_Tp, _Up> in _GLIBCXX_VISIBILITY()
102 requires equality_comparable_with<_Tp, _Up> in _GLIBCXX_VISIBILITY()
115 requires totally_ordered_with<_Tp, _Up> in _GLIBCXX_VISIBILITY()
142 requires totally_ordered_with<_Tp, _Up> in _GLIBCXX_VISIBILITY()
155 requires totally_ordered_with<_Tp, _Up> in _GLIBCXX_VISIBILITY()
168 requires totally_ordered_with<_Tp, _Up> in _GLIBCXX_VISIBILITY()
Dmax_size_type.h64 template<typename _Tp> requires integral<_Tp> || __is_int128<_Tp> in _GLIBCXX_VISIBILITY()
73 template<typename _Tp> requires integral<_Tp> || __is_int128<_Tp> in _GLIBCXX_VISIBILITY()
259 template<typename _Tp> requires integral<_Tp> || __is_int128<_Tp> in _GLIBCXX_VISIBILITY()
264 template<typename _Tp> requires integral<_Tp> || __is_int128<_Tp> in _GLIBCXX_VISIBILITY()
269 template<typename _Tp> requires integral<_Tp> || __is_int128<_Tp> in _GLIBCXX_VISIBILITY()
274 template<typename _Tp> requires integral<_Tp> || __is_int128<_Tp> in _GLIBCXX_VISIBILITY()
279 template<typename _Tp> requires integral<_Tp> || __is_int128<_Tp> in _GLIBCXX_VISIBILITY()
284 template<typename _Tp> requires integral<_Tp> || __is_int128<_Tp> in _GLIBCXX_VISIBILITY()
289 template<typename _Tp> requires integral<_Tp> || __is_int128<_Tp> in _GLIBCXX_VISIBILITY()
294 template<typename _Tp> requires integral<_Tp> || __is_int128<_Tp> in _GLIBCXX_VISIBILITY()
[all …]
Dranges_algo.h162 requires convertible_to<const _Iter&, _Iter2> in _GLIBCXX_VISIBILITY()
169 requires convertible_to<_Iter, _Iter2> && convertible_to<_Fp, _F2p> in _GLIBCXX_VISIBILITY()
245 requires indirectly_comparable<_Iter1, _Iter2, _Pred, _Proj1, _Proj2> in _GLIBCXX_VISIBILITY()
263 requires indirectly_comparable<iterator_t<_Range1>, iterator_t<_Range2>, in _GLIBCXX_VISIBILITY()
282 requires indirect_binary_predicate<ranges::equal_to, in _GLIBCXX_VISIBILITY()
297 requires indirect_binary_predicate<ranges::equal_to, in _GLIBCXX_VISIBILITY()
346 requires indirectly_comparable<_Iter, const _Tp*, _Pred, _Proj> in _GLIBCXX_VISIBILITY()
418 requires indirectly_comparable<iterator_t<_Range>, const _Tp*, in _GLIBCXX_VISIBILITY()
438 requires indirectly_comparable<_Iter1, _Iter2, _Pred, _Proj1, _Proj2> in _GLIBCXX_VISIBILITY()
494 requires indirectly_comparable<iterator_t<_Range1>, iterator_t<_Range2>, in _GLIBCXX_VISIBILITY()
[all …]
Dranges_algobase.h80 requires indirectly_comparable<_Iter1, _Iter2, _Pred, _Proj1, _Proj2> in _GLIBCXX_VISIBILITY()
146 requires indirectly_comparable<iterator_t<_Range1>, iterator_t<_Range2>, in _GLIBCXX_VISIBILITY()
168 requires convertible_to<const _Iter&, _Iter2> in _GLIBCXX_VISIBILITY()
175 requires convertible_to<_Iter, _Iter2> in _GLIBCXX_VISIBILITY()
197 requires (_IsMove in _GLIBCXX_VISIBILITY()
208 requires (_IsMove in _GLIBCXX_VISIBILITY()
300 requires indirectly_copyable<_Iter, _Out> in _GLIBCXX_VISIBILITY()
310 requires indirectly_copyable<iterator_t<_Range>, _Out> in _GLIBCXX_VISIBILITY()
325 requires indirectly_movable<_Iter, _Out> in _GLIBCXX_VISIBILITY()
335 requires indirectly_movable<iterator_t<_Range>, _Out> in _GLIBCXX_VISIBILITY()
[all …]
Dmofunc_impl.h96 requires (!is_same_v<_Vt, move_only_function>) in _GLIBCXX_VISIBILITY()
113 requires is_constructible_v<_Tp, _Args...> in _GLIBCXX_VISIBILITY()
126 requires is_constructible_v<_Tp, initializer_list<_Up>&, _Args...> in _GLIBCXX_VISIBILITY()
158 requires is_constructible_v<move_only_function, _Fn> in _GLIBCXX_VISIBILITY()
Dptr_traits.h83 template<typename _Ptr> requires requires { typename _Ptr::element_type; } in _GLIBCXX_VISIBILITY()
113 requires requires { in _GLIBCXX_VISIBILITY()
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/std/
Dranges73 template<typename _Tp> requires is_object_v<_Tp>
101 requires default_initializable<_Tp>
116 requires (!copyable<_Tp>)
131 requires (!movable<_Tp>)
149 requires copyable<_Tp> || (is_nothrow_move_constructible_v<_Tp>
157 __box() requires default_initializable<_Tp> = default;
172 requires constructible_from<_Tp, _Args...>
181 __box& operator=(const __box&) requires copyable<_Tp> = default;
182 __box& operator=(__box&&) requires copyable<_Tp> = default;
234 template<copy_constructible _Tp> requires is_object_v<_Tp>
[all …]
Dexpected172 requires (!is_same_v<remove_cvref_t<_Err>, unexpected>)
182 requires is_constructible_v<_Er, _Args...>
190 requires is_constructible_v<_Er, initializer_list<_Up>&, _Args...>
220 requires is_swappable_v<_Er>
234 requires is_swappable_v<_Er>
348 requires is_default_constructible_v<_Tp>
358 requires is_copy_constructible_v<_Tp> && is_copy_constructible_v<_Er>
375 requires is_move_constructible_v<_Tp> && is_move_constructible_v<_Er>
389 requires is_constructible_v<_Tp, const _Up&>
405 requires is_constructible_v<_Tp, _Up>
[all …]
Dconcepts73 && requires { static_cast<_To>(std::declval<_From>()); };
86 && requires {
126 && requires(_Lhs __lhs, _Rhs&& __rhs) {
142 && requires
173 && requires(_Tp&& __t, _Up&& __u) {
193 requires __adl_swap<_Tp, _Up>
212 requires requires(const _Swap& __swap, _Tp& __e1, _Up& __e2) {
233 = requires(_Tp& __a, _Tp& __b) { ranges::swap(__a, __b); };
237 && requires(_Tp&& __t, _Up&& __u) {
269 && requires(_Tp&& __t)
[all …]
Dspan121 requires (_Extent == dynamic_extent || _ArrayExtent == _Extent)
148 requires ((_Extent + 1u) <= 1u)
153 requires __is_compatible_ref<iter_reference_t<_It>>::value
167 requires __is_compatible_ref<iter_reference_t<_It>>::value
183 requires (_Extent == dynamic_extent || _ArrayExtent == _Extent)
190 requires __is_compatible_array<_Tp, _ArrayExtent>::value
197 requires __is_compatible_array<const _Tp, _ArrayExtent>::value
204 requires (!__detail::__is_span<remove_cvref_t<_Range>>)
226 requires (_Extent == dynamic_extent || _OExtent == dynamic_extent
430 requires (!is_const_v<_Type>)
/netbsd/src/external/ibm-public/postfix/dist/src/util/
Dsurrogate.ref1 ./dict_open: error: cidr:/xx map requires O_RDONLY access mode
4 ./dict_open: warning: cidr:/xx is unavailable. cidr:/xx map requires O_RDONLY access mode
11 ./dict_open: error: pcre:/xx map requires O_RDONLY access mode
14 ./dict_open: warning: pcre:/xx is unavailable. pcre:/xx map requires O_RDONLY access mode
21 ./dict_open: error: regexp:/xx map requires O_RDONLY access mode
24 ./dict_open: warning: regexp:/xx is unavailable. regexp:/xx map requires O_RDONLY access mode
31 ./dict_open: error: unix:xx map requires O_RDONLY access mode
34 ./dict_open: warning: unix:xx is unavailable. unix:xx map requires O_RDONLY access mode
41 ./dict_open: error: texthash:/xx map requires O_RDONLY access mode
44 ./dict_open: warning: texthash:/xx is unavailable. texthash:/xx map requires O_RDONLY access mode
/netbsd/src/external/ibm-public/postfix/dist/src/global/
Dsurrogate.ref1 ./mail_dict: error: ldap:/xx map requires O_RDONLY access mode
3 ./mail_dict: warning: ldap:/xx is unavailable. ldap:/xx map requires O_RDONLY access mode
9 ./mail_dict: error: mysql:/xx map requires O_RDONLY access mode
11 ./mail_dict: warning: mysql:/xx is unavailable. mysql:/xx map requires O_RDONLY access mode
17 ./mail_dict: error: pgsql:/xx map requires O_RDONLY access mode
19 ./mail_dict: warning: pgsql:/xx is unavailable. pgsql:/xx map requires O_RDONLY access mode
25 ./mail_dict: error: sqlite:/xx map requires O_RDONLY access mode
27 ./mail_dict: warning: sqlite:/xx is unavailable. sqlite:/xx map requires O_RDONLY access mode
/netbsd/src/crypto/external/bsd/libsaslc/dist/ref/
Dindex.txt8 GSSAPI (RFC 2222, RFC 4752, requires GSS, Heimdal or MIT Kerberos)
13 GS2-KRB5 (RFC 5801, no CB, requires GSS, Heimdal, or MIT Kerberos)
14 KERBEROS_V5 (experimental, requires Shishi)
15 NTLM (non-standard, client only, requires Libntlm)
/netbsd/src/usr.bin/make/unit-tests/
Dcond-cmp-string.exp5 make: cond-cmp-string.mk:118: Comparison with '<' requires both operands 'string' and 'string' to b…
6 make: cond-cmp-string.mk:126: Comparison with '<=' requires both operands 'string' and 'string' to …
7 make: cond-cmp-string.mk:134: Comparison with '>' requires both operands 'string' and 'string' to b…
8 make: cond-cmp-string.mk:142: Comparison with '>=' requires both operands 'string' and 'string' to …
Dcond-cmp-numeric.exp2 make: cond-cmp-numeric.mk:15: Comparison with '>' requires both operands 'INF' and '1e100' to be nu…
4 make: cond-cmp-numeric.mk:21: Comparison with '>' requires both operands 'NaN' and 'NaN' to be nume…
12 make: cond-cmp-numeric.mk:54: Comparison with '<' requires both operands '123 ' and '124' to be num…
/netbsd/src/crypto/external/bsd/heimdal/dist/lib/kadm5/
Dkadm5_err.et12 error_code AUTH_GET, "Operation requires `get' privilege"
13 error_code AUTH_ADD, "Operation requires `add' privilege"
14 error_code AUTH_MODIFY, "Operation requires `modify' privilege"
15 error_code AUTH_DELETE, "Operation requires `delete' privilege"
55 error_code AUTH_LIST, "Operation requires `list' privilege"
56 error_code AUTH_CHANGEPW, "Operation requires `change-password' privilege"
65 error_code AUTH_GET_KEYS, "Operation requires `get-keys' privilege"
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/doc/doxygen/
Duser.cfg.in153 # This tag requires that the tag FULL_PATH_NAMES is set to YES.
332 # This tag requires that the tag MARKDOWN_SUPPORT is set to YES.
756 # extension is automatically appended if omitted. This requires the bibtex tool
1199 # This tag requires that the tag FILTER_SOURCE_FILES is set to YES.
1262 # This tag requires that the tag SOURCE_BROWSER is set to YES.
1284 # This tag requires that the tag SOURCE_BROWSER is set to YES.
1311 # This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
1328 # This tag requires that the tag GENERATE_HTML is set to YES.
1335 # This tag requires that the tag GENERATE_HTML is set to YES.
1355 # This tag requires that the tag GENERATE_HTML is set to YES.
[all …]
/netbsd/src/crypto/external/cpl/tpm-tools/dist/man/man8/
Dtpm_nvdefine.pod87 Reading requires NVRAM area authorization.
91 Writing requires NVRAM area authorization.
95 Reading requires physical presence.
99 Writing requires physical presence.
103 Reading requires owner authorization.
107 Writing requires owner authorization.
/netbsd/src/crypto/external/bsd/heimdal/dist/po/heim_com_err43787520/
Dheim_com_err43787520.pot25 msgid "Operation requires `get' privilege"
30 msgid "Operation requires `add' privilege"
35 msgid "Operation requires `modify' privilege"
40 msgid "Operation requires `delete' privilege"
241 msgid "Operation requires `list' privilege"
246 msgid "Operation requires `change-password' privilege"
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/
Dcompare466 && requires(const remove_reference_t<_Tp>& __a,
483 && requires(const remove_reference_t<_Tp>& __t,
506 requires requires { typename __cmp3way_res_t<__cref<_Tp>, __cref<_Up>>; }
532 = requires(_Tp&& __t, _Up&& __u)
536 && ! requires(_Tp&& __t, _Up&& __u)
538 && ! requires(_Tp&& __t, _Up&& __u)
549 requires three_way_comparable_with<_Tp, _Up>
616 concept __adl_strong = requires(_Tp&& __t, _Up&& __u)
623 concept __adl_weak = requires(_Tp&& __t, _Up&& __u)
630 concept __adl_partial = requires(_Tp&& __t, _Up&& __u)
[all …]

12345678910>>...58