Home
last modified time | relevance | path

Searched refs:forward (Results 1 – 25 of 1526) sorted by relevance

12345678910>>...62

/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dstl_function.h236 noexcept(noexcept(std::forward<_Tp>(__t) + std::forward<_Up>(__u))) in _GLIBCXX_VISIBILITY()
237 -> decltype(std::forward<_Tp>(__t) + std::forward<_Up>(__u)) in _GLIBCXX_VISIBILITY()
238 { return std::forward<_Tp>(__t) + std::forward<_Up>(__u); } in _GLIBCXX_VISIBILITY()
251 noexcept(noexcept(std::forward<_Tp>(__t) - std::forward<_Up>(__u))) in _GLIBCXX_VISIBILITY()
252 -> decltype(std::forward<_Tp>(__t) - std::forward<_Up>(__u)) in _GLIBCXX_VISIBILITY()
253 { return std::forward<_Tp>(__t) - std::forward<_Up>(__u); } in _GLIBCXX_VISIBILITY()
266 noexcept(noexcept(std::forward<_Tp>(__t) * std::forward<_Up>(__u))) in _GLIBCXX_VISIBILITY()
267 -> decltype(std::forward<_Tp>(__t) * std::forward<_Up>(__u)) in _GLIBCXX_VISIBILITY()
268 { return std::forward<_Tp>(__t) * std::forward<_Up>(__u); } in _GLIBCXX_VISIBILITY()
281 noexcept(noexcept(std::forward<_Tp>(__t) / std::forward<_Up>(__u))) in _GLIBCXX_VISIBILITY()
[all …]
H A Drange_cmp.h52 { return std::forward<_Tp>(__t); } in _GLIBCXX_VISIBILITY()
74 { operator<(std::forward<_Tp>(__t), std::forward<_Up>(__u)); } in _GLIBCXX_VISIBILITY()
76 { std::forward<_Tp>(__t).operator<(std::forward<_Up>(__u)); }); in _GLIBCXX_VISIBILITY()
92 { return std::forward<_Tp>(__t) == std::forward<_Up>(__u); } in _GLIBCXX_VISIBILITY()
105 { return !equal_to{}(std::forward<_Tp>(__t), std::forward<_Up>(__u)); } in _GLIBCXX_VISIBILITY()
126 static_cast<const volatile void*>(std::forward<_Tp>(__t))); in _GLIBCXX_VISIBILITY()
128 static_cast<const volatile void*>(std::forward<_Up>(__u))); in _GLIBCXX_VISIBILITY()
132 return std::forward<_Tp>(__t) < std::forward<_Up>(__u); in _GLIBCXX_VISIBILITY()
146 { return less{}(std::forward<_Up>(__u), std::forward<_Tp>(__t)); } in _GLIBCXX_VISIBILITY()
159 { return !less{}(std::forward<_Tp>(__t), std::forward<_Up>(__u)); } in _GLIBCXX_VISIBILITY()
[all …]
H A Dinvoke.h60 { return std::forward<_Fn>(__f)(std::forward<_Args>(__args)...); } in _GLIBCXX_VISIBILITY()
66 { return (__invfwd<_Tp>(__t).*__f)(std::forward<_Args>(__args)...); } in _GLIBCXX_VISIBILITY()
73 return ((*std::forward<_Tp>(__t)).*__f)(std::forward<_Args>(__args)...); in _GLIBCXX_VISIBILITY()
84 { return (*std::forward<_Tp>(__t)).*__f; } in _GLIBCXX_VISIBILITY()
95 return std::__invoke_impl<__type>(__tag{}, std::forward<_Callable>(__fn), in _GLIBCXX_VISIBILITY()
96 std::forward<_Args>(__args)...); in _GLIBCXX_VISIBILITY()
110 std::__invoke_impl<__type>(__tag{}, std::forward<_Callable>(__fn), in _GLIBCXX_VISIBILITY()
111 std::forward<_Args>(__args)...); in _GLIBCXX_VISIBILITY()
114 std::forward<_Callable>(__fn), in _GLIBCXX_VISIBILITY()
115 std::forward<_Args>(__args)...); in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dstl_function.h255 noexcept(noexcept(std::forward<_Tp>(__t) + std::forward<_Up>(__u))) in _GLIBCXX_VISIBILITY()
256 -> decltype(std::forward<_Tp>(__t) + std::forward<_Up>(__u)) in _GLIBCXX_VISIBILITY()
257 { return std::forward<_Tp>(__t) + std::forward<_Up>(__u); } in _GLIBCXX_VISIBILITY()
270 noexcept(noexcept(std::forward<_Tp>(__t) - std::forward<_Up>(__u))) in _GLIBCXX_VISIBILITY()
271 -> decltype(std::forward<_Tp>(__t) - std::forward<_Up>(__u)) in _GLIBCXX_VISIBILITY()
272 { return std::forward<_Tp>(__t) - std::forward<_Up>(__u); } in _GLIBCXX_VISIBILITY()
285 noexcept(noexcept(std::forward<_Tp>(__t) * std::forward<_Up>(__u))) in _GLIBCXX_VISIBILITY()
286 -> decltype(std::forward<_Tp>(__t) * std::forward<_Up>(__u)) in _GLIBCXX_VISIBILITY()
287 { return std::forward<_Tp>(__t) * std::forward<_Up>(__u); } in _GLIBCXX_VISIBILITY()
300 noexcept(noexcept(std::forward<_Tp>(__t) / std::forward<_Up>(__u))) in _GLIBCXX_VISIBILITY()
[all …]
H A Dranges_cmp.h53 { return std::forward<_Tp>(__t); } in _GLIBCXX_VISIBILITY()
75 { operator<(std::forward<_Tp>(__t), std::forward<_Up>(__u)); } in _GLIBCXX_VISIBILITY()
77 { std::forward<_Tp>(__t).operator<(std::forward<_Up>(__u)); }); in _GLIBCXX_VISIBILITY()
93 { return std::forward<_Tp>(__t) == std::forward<_Up>(__u); } in _GLIBCXX_VISIBILITY()
106 { return !equal_to{}(std::forward<_Tp>(__t), std::forward<_Up>(__u)); } in _GLIBCXX_VISIBILITY()
126 static_cast<const volatile void*>(std::forward<_Tp>(__t))); in _GLIBCXX_VISIBILITY()
128 static_cast<const volatile void*>(std::forward<_Up>(__u))); in _GLIBCXX_VISIBILITY()
132 return std::forward<_Tp>(__t) < std::forward<_Up>(__u); in _GLIBCXX_VISIBILITY()
146 { return less{}(std::forward<_Up>(__u), std::forward<_Tp>(__t)); } in _GLIBCXX_VISIBILITY()
159 { return !less{}(std::forward<_Tp>(__t), std::forward<_Up>(__u)); } in _GLIBCXX_VISIBILITY()
[all …]
H A Dinvoke.h61 { return std::forward<_Fn>(__f)(std::forward<_Args>(__args)...); } in _GLIBCXX_VISIBILITY()
67 { return (__invfwd<_Tp>(__t).*__f)(std::forward<_Args>(__args)...); } in _GLIBCXX_VISIBILITY()
74 return ((*std::forward<_Tp>(__t)).*__f)(std::forward<_Args>(__args)...); in _GLIBCXX_VISIBILITY()
85 { return (*std::forward<_Tp>(__t)).*__f; } in _GLIBCXX_VISIBILITY()
96 return std::__invoke_impl<__type>(__tag{}, std::forward<_Callable>(__fn), in _GLIBCXX_VISIBILITY()
97 std::forward<_Args>(__args)...); in _GLIBCXX_VISIBILITY()
111 std::__invoke_impl<__type>(__tag{}, std::forward<_Callable>(__fn), in _GLIBCXX_VISIBILITY()
112 std::forward<_Args>(__args)...); in _GLIBCXX_VISIBILITY()
115 std::forward<_Callable>(__fn), in _GLIBCXX_VISIBILITY()
116 std::forward<_Args>(__args)...); in _GLIBCXX_VISIBILITY()
[all …]
H A Duses_allocator_args.h68 allocator_arg, __a, std::forward<_Args>(__args)...); in _GLIBCXX_VISIBILITY()
77 std::forward<_Args>(__args)..., __a); in _GLIBCXX_VISIBILITY()
84 return tuple<_Args&&...>(std::forward<_Args>(__args)...); in _GLIBCXX_VISIBILITY()
121 __a, std::forward<decltype(__args1)>(__args1)...); in _GLIBCXX_VISIBILITY()
122 }, std::forward<_Tuple1>(__x)), in _GLIBCXX_VISIBILITY()
125 __a, std::forward<decltype(__args2)>(__args2)...); in _GLIBCXX_VISIBILITY()
126 }, std::forward<_Tuple2>(__y))); in _GLIBCXX_VISIBILITY()
151 std::forward<_Up>(__u)), in _GLIBCXX_VISIBILITY()
153 std::forward<_Vp>(__v))); in _GLIBCXX_VISIBILITY()
193 std::forward<_Args>(__args)...)); in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DNonTrivialTypeVisitor.h24 std::forward<Ts>(Args)...); in visit()
32 return asDerived().visitARCStrong(FT, std::forward<Ts>(Args)...); in visitWithKind()
34 return asDerived().visitStruct(FT, std::forward<Ts>(Args)...); in visitWithKind()
36 return asDerived().visitTrivial(FT, std::forward<Ts>(Args)...); in visitWithKind()
38 return asDerived().visitCXXDestructor(FT, std::forward<Ts>(Args)...); in visitWithKind()
40 return asDerived().visitARCWeak(FT, std::forward<Ts>(Args)...); in visitWithKind()
54 std::forward<Ts>(Args)...); in visit()
62 return asDerived().visitARCStrong(FT, std::forward<Ts>(Args)...); in visitWithKind()
64 return asDerived().visitARCWeak(FT, std::forward<Ts>(Args)...); in visitWithKind()
66 return asDerived().visitStruct(FT, std::forward<Ts>(Args)...); in visitWithKind()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/pstl/
H A Dglue_algorithm_impl.h31 std::forward<_ExecutionPolicy>(__exec), __first, __last, __pred, in any_of()
42 return !std::any_of(std::forward<_ExecutionPolicy>(__exec), __first, __last, in all_of()
52 return !std::any_of(std::forward<_ExecutionPolicy>(__exec), __first, __last, __pred); in none_of()
62 __internal::__pattern_walk1(std::forward<_ExecutionPolicy>(__exec), __first, __last, __f, in for_each()
73 std::forward<_ExecutionPolicy>(__exec), __first, __n, __f, in for_each_n()
86 std::forward<_ExecutionPolicy>(__exec), __first, __last, __pred, in find_if()
95 return std::find_if(std::forward<_ExecutionPolicy>(__exec), __first, __last, in find_if_not()
103 return std::find_if(std::forward<_ExecutionPolicy>(__exec), __first, __last, in find()
115 std::forward<_ExecutionPolicy>(__exec), __first, __last, __s_first, __s_last, __pred, in find_end()
125 … return std::find_end(std::forward<_ExecutionPolicy>(__exec), __first, __last, __s_first, __s_last, in find_end()
[all …]
H A Dutils.h86 return std::forward<_Tp>(__a); in operator()
103 return !_M_pred(std::forward<_Args>(__args)...); in operator()
119 return _M_pred(std::forward<_STp>(__b), std::forward<_FTp>(__a)); in operator()
135 return std::forward<_Xp>(__x) == std::forward<_Yp>(__y); in operator()
149 return std::forward<_Xp>(__x) < std::forward<_Yp>(__y); in operator()
167 return _M_pred(std::forward<_Arg>(__arg), _M_value); in operator()
184 return std::forward<_Arg>(__arg) == _M_value; in operator()
201 return !(std::forward<_Arg>(__arg) == _M_value); in operator()
H A Dglue_numeric_impl.h28 …return transform_reduce(std::forward<_ExecutionPolicy>(__exec), __first, __last, __init, __binary_… in reduce()
36 …return transform_reduce(std::forward<_ExecutionPolicy>(__exec), __first, __last, __init, std::plus… in reduce()
46 return transform_reduce(std::forward<_ExecutionPolicy>(__exec), __first, __last, _ValueType{}, in reduce()
60 …std::forward<_ExecutionPolicy>(__exec), __first1, __last1, __first2, __init, std::plus<_InputType>… in transform_reduce()
74 …std::forward<_ExecutionPolicy>(__exec), __first1, __last1, __first2, __init, __binary_op1, __binar… in transform_reduce()
86 std::forward<_ExecutionPolicy>(__exec), __first, __last, __init, __binary_op, __unary_op, in transform_reduce()
98 …return transform_exclusive_scan(std::forward<_ExecutionPolicy>(__exec), __first, __last, __result,… in exclusive_scan()
107 …return transform_exclusive_scan(std::forward<_ExecutionPolicy>(__exec), __first, __last, __result,… in exclusive_scan()
119 … return transform_inclusive_scan(std::forward<_ExecutionPolicy>(__exec), __first, __last, __result, in inclusive_scan()
128 …return transform_inclusive_scan(std::forward<_ExecutionPolicy>(__exec), __first, __last, __result,… in inclusive_scan()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dgraphds.cc122 dfs_edge_src (struct graph_edge *e, bool forward) in dfs_edge_src() argument
124 return forward ? e->src : e->dest; in dfs_edge_src()
131 dfs_edge_dest (struct graph_edge *e, bool forward) in dfs_edge_dest() argument
133 return forward ? e->dest : e->src; in dfs_edge_dest()
142 foll_in_subgraph (struct graph_edge *e, bool forward, bitmap subgraph, in foll_in_subgraph() argument
155 d = dfs_edge_dest (e, forward); in foll_in_subgraph()
161 e = forward ? e->succ_next : e->pred_next; in foll_in_subgraph()
173 dfs_fst_edge (struct graph *g, int v, bool forward, bitmap subgraph, in dfs_fst_edge() argument
178 e = (forward ? g->vertices[v].succ : g->vertices[v].pred); in dfs_fst_edge()
179 return foll_in_subgraph (e, forward, subgraph, skip_edge_p); in dfs_fst_edge()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dgraphds.c122 dfs_edge_src (struct graph_edge *e, bool forward) in dfs_edge_src() argument
124 return forward ? e->src : e->dest; in dfs_edge_src()
131 dfs_edge_dest (struct graph_edge *e, bool forward) in dfs_edge_dest() argument
133 return forward ? e->dest : e->src; in dfs_edge_dest()
142 foll_in_subgraph (struct graph_edge *e, bool forward, bitmap subgraph, in foll_in_subgraph() argument
155 d = dfs_edge_dest (e, forward); in foll_in_subgraph()
161 e = forward ? e->succ_next : e->pred_next; in foll_in_subgraph()
173 dfs_fst_edge (struct graph *g, int v, bool forward, bitmap subgraph, in dfs_fst_edge() argument
178 e = (forward ? g->vertices[v].succ : g->vertices[v].pred); in dfs_fst_edge()
179 return foll_in_subgraph (e, forward, subgraph, skip_edge_p); in dfs_fst_edge()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/pstl/
H A Dglue_algorithm_impl.h30 std::forward<_ExecutionPolicy>(__exec), __first, __last, __pred, in any_of()
41 … return !std::any_of(std::forward<_ExecutionPolicy>(__exec), __first, __last, std::not_fn(__pred)); in all_of()
50 return !std::any_of(std::forward<_ExecutionPolicy>(__exec), __first, __last, __pred); in none_of()
60 std::forward<_ExecutionPolicy>(__exec), __first, __last, __f, in for_each()
70 std::forward<_ExecutionPolicy>(__exec), __first, __n, __f, in for_each_n()
82 std::forward<_ExecutionPolicy>(__exec), __first, __last, __pred, in find_if()
91 … return std::find_if(std::forward<_ExecutionPolicy>(__exec), __first, __last, std::not_fn(__pred)); in find_if_not()
98 return std::find_if(std::forward<_ExecutionPolicy>(__exec), __first, __last, in find()
109 std::forward<_ExecutionPolicy>(__exec), __first, __last, __s_first, __s_last, __pred, in find_end()
121 … return std::find_end(std::forward<_ExecutionPolicy>(__exec), __first, __last, __s_first, __s_last, in find_end()
[all …]
H A Dutils.h86 return std::forward<_Tp>(__a); in operator()
103 return !_M_pred(std::forward<_Args>(__args)...); in operator()
119 return _M_pred(std::forward<_STp>(__b), std::forward<_FTp>(__a)); in operator()
135 return std::forward<_Xp>(__x) == std::forward<_Yp>(__y); in operator()
149 return std::forward<_Xp>(__x) < std::forward<_Yp>(__y); in operator()
167 return _M_pred(std::forward<_Arg>(__arg), _M_value); in operator()
184 return std::forward<_Arg>(__arg) == _M_value; in operator()
201 return !(std::forward<_Arg>(__arg) == _M_value); in operator()
H A Dglue_numeric_impl.h28 …return transform_reduce(std::forward<_ExecutionPolicy>(__exec), __first, __last, __init, __binary_… in reduce()
36 …return transform_reduce(std::forward<_ExecutionPolicy>(__exec), __first, __last, __init, std::plus… in reduce()
46 return transform_reduce(std::forward<_ExecutionPolicy>(__exec), __first, __last, _ValueType{}, in reduce()
59 …std::forward<_ExecutionPolicy>(__exec), __first1, __last1, __first2, __init, std::plus<_InputType>… in transform_reduce()
74 …std::forward<_ExecutionPolicy>(__exec), __first1, __last1, __first2, __init, __binary_op1, __binar… in transform_reduce()
87 std::forward<_ExecutionPolicy>(__exec), __first, __last, __init, __binary_op, __unary_op, in transform_reduce()
101 …std::forward<_ExecutionPolicy>(__exec), __first, __last, __result, __pstl::__internal::__no_op(), … in exclusive_scan()
114 …std::forward<_ExecutionPolicy>(__exec), __first, __last, __result, __pstl::__internal::__no_op(), … in exclusive_scan()
128 … return transform_inclusive_scan(std::forward<_ExecutionPolicy>(__exec), __first, __last, __result, in inclusive_scan()
137 …return transform_inclusive_scan(std::forward<_ExecutionPolicy>(__exec), __first, __last, __result,… in inclusive_scan()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/
H A Dgmock-generated-function-mockers.h171 Method).Invoke(::std::forward<GMOCK_ARG_(tn, 1, \
198 Method).Invoke(::std::forward<GMOCK_ARG_(tn, 1, \
200 ::std::forward<GMOCK_ARG_(tn, 2, __VA_ARGS__)>(gmock_a2)); \
229 Method).Invoke(::std::forward<GMOCK_ARG_(tn, 1, \
231 ::std::forward<GMOCK_ARG_(tn, 2, __VA_ARGS__)>(gmock_a2), \
232 ::std::forward<GMOCK_ARG_(tn, 3, __VA_ARGS__)>(gmock_a3)); \
264 Method).Invoke(::std::forward<GMOCK_ARG_(tn, 1, \
266 ::std::forward<GMOCK_ARG_(tn, 2, __VA_ARGS__)>(gmock_a2), \
267 ::std::forward<GMOCK_ARG_(tn, 3, __VA_ARGS__)>(gmock_a3), \
268 ::std::forward<GMOCK_ARG_(tn, 4, __VA_ARGS__)>(gmock_a4)); \
[all …]
H A Dgmock-nice-strict.h87 explicit NiceMock(A&& arg) : MockClass(std::forward<A>(arg)) { in NiceMock()
94 : MockClass(std::forward<A1>(arg1), std::forward<A2>(arg2), in NiceMock()
95 std::forward<An>(args)...) { in NiceMock()
125 explicit NaggyMock(A&& arg) : MockClass(std::forward<A>(arg)) { in NaggyMock()
132 : MockClass(std::forward<A1>(arg1), std::forward<A2>(arg2), in NaggyMock()
133 std::forward<An>(args)...) { in NaggyMock()
163 explicit StrictMock(A&& arg) : MockClass(std::forward<A>(arg)) { in StrictMock()
170 : MockClass(std::forward<A1>(arg1), std::forward<A2>(arg2), in StrictMock()
171 std::forward<An>(args)...) { in StrictMock()
/netbsd-src/external/bsd/unbound/dist/testdata/ede.tdir/
H A Dede.conf36 forward-zone:
38 forward-addr: 127.0.0.1@@PORT2@
40 forward-zone:
42 forward-addr: 127.0.0.1@@PORT2@
44 forward-zone:
46 forward-addr: 127.0.0.1@@PORT2@
48 forward-zone:
50 forward-addr: 127.0.0.1@@PORT2@
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/
H A Dlifetime.d3 import core.lifetime : forward;
28 Args.length == 1 && is(typeof({T t = forward!(args[0]);})) /* conversions */ in emplaceRef()
30 is(typeof(T(forward!args))) /* general constructors */) in emplaceRef()
37 static if (__traits(compiles, payload = forward!args)) in emplaceRef()
38 payload = forward!args; in emplaceRef()
40 payload = T(forward!args); in emplaceRef()
45 static if (__traits(compiles, chunk = T(forward!args))) in emplaceRef()
46 chunk = T(forward!args); in emplaceRef()
47 else static if (args.length == 1 && __traits(compiles, chunk = forward!(args[0]))) in emplaceRef()
48 chunk = forward!(args[0]); in emplaceRef()
[all …]
/netbsd-src/external/apache2/llvm/dist/libcxx/include/__iterator/
H A Diter_move.h35 iter_move(_VSTD::forward<_Ip>(__i)); in requires()
49 noexcept(noexcept(iter_move(_VSTD::forward<_Ip>(__i)))) in decltype()
51 return iter_move(_VSTD::forward<_Ip>(__i)); in decltype()
60 requires(_Ip&& __i) { *_VSTD::forward<_Ip>(__i); } in requires()
62 noexcept(noexcept(*_VSTD::forward<_Ip>(__i))) in decltype()
64 if constexpr (is_lvalue_reference_v<decltype(*_VSTD::forward<_Ip>(__i))>) { in decltype()
65 return _VSTD::move(*_VSTD::forward<_Ip>(__i)); in decltype()
67 return *_VSTD::forward<_Ip>(__i); in decltype()
/netbsd-src/external/bsd/unbound/dist/testdata/fwd_udp_with_tcp_upstream.tdir/
H A Dfwd_udp_with_tcp_upstream.conf12 forward-zone:
14 forward-addr: "127.0.0.1@@TOPORT@"
15 forward-tcp-upstream: "yes"
16 forward-zone:
18 forward-addr: "127.0.0.1@@TOPORT@"
19 forward-tcp-upstream: "no"
/netbsd-src/external/bsd/unbound/dist/testdata/local_nodefault.tdir/
H A Dlocal_nodefault.conf17 forward-zone:
20 forward-addr: "127.0.0.5@@TOPORT@"
21 forward-zone:
23 forward-addr: "127.0.0.1@@TOPORT@"
24 forward-zone:
26 forward-addr: "127.0.0.1@@TOPORT@"
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DFormatAdapters.h21 explicit FormatAdapter(T &&Item) : Item(std::forward<T>(Item)) {} in FormatAdapter()
34 : FormatAdapter<T>(std::forward<T>(Item)), Where(Where), Amount(Amount), in AlignAdapter()
38 auto Adapter = detail::build_format_adapter(std::forward<T>(this->Item)); in format()
49 : FormatAdapter<T>(std::forward<T>(Item)), Left(Left), Right(Right) {} in PadAdapter()
52 auto Adapter = detail::build_format_adapter(std::forward<T>(this->Item)); in format()
64 : FormatAdapter<T>(std::forward<T>(Item)), Count(Count) {} in RepeatAdapter()
67 auto Adapter = detail::build_format_adapter(std::forward<T>(this->Item)); in format()
88 return detail::AlignAdapter<T>(std::forward<T>(Item), Where, Amount, Fill);
93 return detail::PadAdapter<T>(std::forward<T>(Item), Left, Right); in fmt_pad()
98 return detail::RepeatAdapter<T>(std::forward<T>(Item), Count); in fmt_repeat()
/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A Dfunctional547 _NOEXCEPT_(noexcept(_VSTD::forward<_T1>(__t) + _VSTD::forward<_T2>(__u)))
548 -> decltype (_VSTD::forward<_T1>(__t) + _VSTD::forward<_T2>(__u))
549 { return _VSTD::forward<_T1>(__t) + _VSTD::forward<_T2>(__u); }
574 _NOEXCEPT_(noexcept(_VSTD::forward<_T1>(__t) - _VSTD::forward<_T2>(__u)))
575 -> decltype (_VSTD::forward<_T1>(__t) - _VSTD::forward<_T2>(__u))
576 { return _VSTD::forward<_T1>(__t) - _VSTD::forward<_T2>(__u); }
601 _NOEXCEPT_(noexcept(_VSTD::forward<_T1>(__t) * _VSTD::forward<_T2>(__u)))
602 -> decltype (_VSTD::forward<_T1>(__t) * _VSTD::forward<_T2>(__u))
603 { return _VSTD::forward<_T1>(__t) * _VSTD::forward<_T2>(__u); }
628 _NOEXCEPT_(noexcept(_VSTD::forward<_T1>(__t) / _VSTD::forward<_T2>(__u)))
[all …]

12345678910>>...62