Home
last modified time | relevance | path

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

12345678910>>...13

/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/bits/
H A Dstl_function.h237 -> 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()
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()
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()
282 -> decltype(std::forward<_Tp>(__t) / std::forward<_Up>(__u)) in _GLIBCXX_VISIBILITY()
283 { return std::forward<_Tp>(__t) / std::forward<_Up>(__u); } in _GLIBCXX_VISIBILITY()
297 -> decltype(std::forward<_Tp>(__t) % std::forward<_Up>(__u)) in _GLIBCXX_VISIBILITY()
298 { return 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()
H A Dstl_pair.h342 : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { } in _GLIBCXX_VISIBILITY()
351 : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { } in _GLIBCXX_VISIBILITY()
361 : first(std::forward<_U1>(__p.first)), in _GLIBCXX_VISIBILITY()
362 second(std::forward<_U2>(__p.second)) { } in _GLIBCXX_VISIBILITY()
371 : first(std::forward<_U1>(__p.first)), in _GLIBCXX_VISIBILITY()
372 second(std::forward<_U2>(__p.second)) { } in _GLIBCXX_VISIBILITY()
396 first = std::forward<first_type>(__p.first); in _GLIBCXX_VISIBILITY()
397 second = std::forward<second_type>(__p.second); in _GLIBCXX_VISIBILITY()
418 first = std::forward<_U1>(__p.first); in _GLIBCXX_VISIBILITY()
419 second = std::forward<_U2>(__p.second); in _GLIBCXX_VISIBILITY()
[all …]
H A Dstl_map.h607 std::forward<_Args>(__args)...); in _GLIBCXX_VISIBILITY()
697 std::forward<_Args>(__args)...)); in _GLIBCXX_VISIBILITY()
714 std::forward<_Args>(__args)...)); in _GLIBCXX_VISIBILITY()
759 std::forward<_Args>(__args)...)); in _GLIBCXX_VISIBILITY()
777 std::forward<_Args>(__args)...)); in _GLIBCXX_VISIBILITY()
876 std::forward<_Pair>(__x)); in _GLIBCXX_VISIBILITY()
925 std::forward<_Obj>(__obj))); in _GLIBCXX_VISIBILITY()
928 (*__i).second = std::forward<_Obj>(__obj); in _GLIBCXX_VISIBILITY()
943 std::forward<_Obj>(__obj))); in _GLIBCXX_VISIBILITY()
983 std::forward<_Obj>(__obj))); in _GLIBCXX_VISIBILITY()
[all …]
H A Dmove.h74 forward(typename std::remove_reference<_Tp>::type& __t) noexcept in _GLIBCXX_VISIBILITY()
85 forward(typename std::remove_reference<_Tp>::type&& __t) noexcept in _GLIBCXX_VISIBILITY()
152 __obj = std::forward<_Up>(__new_val); in _GLIBCXX_VISIBILITY()
159 #define _GLIBCXX_FORWARD(_Tp, __val) std::forward<_Tp>(__val) in _GLIBCXX_VISIBILITY()
H A Dunordered_map.h388 { return _M_h.emplace(std::forward<_Args>(__args)...); } in _GLIBCXX_VISIBILITY()
478 std::forward<_Args>(__args)...)) in _GLIBCXX_VISIBILITY()
496 std::forward<_Args>(__args)...)) in _GLIBCXX_VISIBILITY()
592 { return _M_h.emplace(std::forward<_Pair>(__x)); } in _GLIBCXX_VISIBILITY()
630 { return _M_h.emplace_hint(__hint, std::forward<_Pair>(__x)); } in _GLIBCXX_VISIBILITY()
694 (*__i).second = std::forward<_Obj>(__obj); in _GLIBCXX_VISIBILITY()
712 (*__i).second = std::forward<_Obj>(__obj); in _GLIBCXX_VISIBILITY()
755 (*__i).second = std::forward<_Obj>(__obj); in _GLIBCXX_VISIBILITY()
772 (*__i).second = std::forward<_Obj>(__obj); in _GLIBCXX_VISIBILITY()
1513 { return _M_h.emplace(std::forward<_Args>(__args)...); } in _GLIBCXX_VISIBILITY()
[all …]
/dragonfly/contrib/gcc-8.0/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()
155 d = dfs_edge_dest (e, forward); in foll_in_subgraph()
161 e = forward ? e->succ_next : e->pred_next; in foll_in_subgraph()
192 forward, subgraph, skip_edge_p); in dfs_next_edge()
205 bool forward, bitmap subgraph, in graphds_dfs() argument
261 v = dfs_edge_src (e, forward); in graphds_dfs()
267 v = dfs_edge_dest (e, forward); in graphds_dfs()
[all …]
/dragonfly/contrib/gcc-4.7/gcc/
H A Dgraphds.c124 dfs_edge_src (struct graph_edge *e, bool forward) in dfs_edge_src() argument
126 return forward ? e->src : e->dest; in dfs_edge_src()
135 return forward ? e->dest : e->src; in dfs_edge_dest()
151 d = dfs_edge_dest (e, forward); in foll_in_subgraph()
155 e = forward ? e->succ_next : e->pred_next; in foll_in_subgraph()
180 forward, subgraph); in dfs_next_edge()
191 bool forward, bitmap subgraph) in graphds_dfs() argument
233 e = dfs_next_edge (e, forward, subgraph); in graphds_dfs()
246 v = dfs_edge_src (e, forward); in graphds_dfs()
252 v = dfs_edge_dest (e, forward); in graphds_dfs()
[all …]
/dragonfly/contrib/openresolv/
H A Dnamed.in57 forward=
59 case "$forward" in
61 *) forward="$forward$NL $n;";;
64 if [ -n "$forward" ]; then
65 newoptions="${newoptions}forward first;${NL}forwarders {$forward${NL}};$NL"
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/bits/
H A Dstl_pair.h126 : first(std::forward<_U1>(__x)), second(__y) { } in _GLIBCXX_VISIBILITY()
131 : first(__x), second(std::forward<_U2>(__y)) { } in _GLIBCXX_VISIBILITY()
137 : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { } in _GLIBCXX_VISIBILITY()
143 : first(std::forward<_U1>(__p.first)), in _GLIBCXX_VISIBILITY()
144 second(std::forward<_U2>(__p.second)) { } in _GLIBCXX_VISIBILITY()
162 first = std::forward<first_type>(__p.first); in _GLIBCXX_VISIBILITY()
163 second = std::forward<second_type>(__p.second); in _GLIBCXX_VISIBILITY()
180 first = std::forward<_U1>(__p.first); in _GLIBCXX_VISIBILITY()
181 second = std::forward<_U2>(__p.second); in _GLIBCXX_VISIBILITY()
273 return __pair_type(std::forward<_T1>(__x), std::forward<_T2>(__y)); in _GLIBCXX_VISIBILITY()
H A Dmove.h77 forward(typename std::remove_reference<_Tp>::type& __t) noexcept in _GLIBCXX_VISIBILITY()
88 forward(typename std::remove_reference<_Tp>::type&& __t) noexcept in _GLIBCXX_VISIBILITY()
144 #define _GLIBCXX_FORWARD(_Tp, __val) std::forward<_Tp>(__val)
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/std/
H A Dtuple87 : _Head(std::forward<_UHead>(__h)) { }
102 : _Head(std::forward<_UHead>(__uhead)) { }
218 _Base(std::forward<_UHead>(__head)) { }
238 _Base(std::forward<_UHead>
288 std::forward<_UHead>
322 _M_head(*this) = std::forward<_UHead>
972 : _Inherited(std::forward<_U1>(__a1), std::forward<_U2>(__a2)) { }
983 : _Inherited(std::forward<_U1>(__a1), std::forward<_U2>(__a2)) { }
1571 std::forward<_Us>(__us)...,
1688 std::forward<_Tuple>(__t),
[all …]
H A Doptional125 : _M_payload(__il, std::forward<_Args>(__args)...),
403 : _M_payload(std::forward<_Args>(__args)...),
507 : _M_payload(std::forward<_Args>(__args)...),
676 std::forward<_Args>(__args)...) { }
686 __il, std::forward<_Args>(__args)...)
744 std::forward<_Args>(__args)...) { }
754 __il, std::forward<_Args>(__args)...)
808 std::forward<_Args>(__args)...) { }
818 __il, std::forward<_Args>(__args)...)
873 std::forward<_Args>(__args)...) { }
[all …]
H A Dfunctional81 return std::__invoke(std::forward<_Callable>(__fn),
82 std::forward<_Args>(__args)...);
112 std::__invoke(_M_pmf, std::forward<_Args>(__args)...)))
137 -> decltype(std::__invoke(_M_pm, std::forward<_Tp>(__obj)))
138 { return std::__invoke(_M_pm, std::forward<_Tp>(__obj)); }
315 // Construct an index tuple and forward to __call
364 { return std::forward<_CVArg>(__arg); }
812 std::forward<_BoundArgs>(__args)...);
836 std::forward<_BoundArgs>(__args)...);
854 : _M_fn(std::forward<_Fn2>(__fn)) { }
[all …]
H A Dany117 _Mgr::_S_create(_M_storage, std::forward<_Args>(__args)...);
186 _Mgr::_S_create(_M_storage, std::forward<_ValueType>(__value));
211 _Mgr::_S_create(_M_storage, std::forward<_Args>(__args)...);
265 *this = any(std::forward<_ValueType>(__rhs));
275 __do_emplace<_Decay<_ValueType>>(std::forward<_Args>(__args)...);
291 std::forward<_Args>(__args)...);
390 ::new (__addr) _Tp(std::forward<_Up>(__value));
398 ::new (__addr) _Tp(std::forward<_Args>(__args)...);
413 __storage._M_ptr = new _Tp(std::forward<_Up>(__value));
419 __storage._M_ptr = new _Tp(std::forward<_Args>(__args)...);
[all …]
H A Dvariant228 std::forward<_Union>(__u)._M_rest);
236 std::forward<_Variant>(__v)._M_u);
650 : _Base(__i, std::forward<_Args>(__args)...)
1096 std::forward<_Tp>(__t))
1105 std::forward<_Args>(__args)...)
1116 std::forward<_Args>(__args)...)
1175 std::forward<_Args>(__args)...);
1192 std::forward<_Args>(__args)...);
1215 std::forward<_Args>(__args)...);
1379 decltype(std::forward<_Visitor>(__visitor)(
[all …]
H A Dscoped_allocator143 : _M_inner(std::forward<_Args>(__args)...) { }
196 std::forward<_Args>(__args)...);
209 std::forward<_Args>(__args)...);
218 std::forward<_Args>(__args)...,
292 : _OuterAlloc(std::forward<_Outer2>(__outer)),
356 _M_construct(__use_tag, __p, std::forward<_Args>(__args)...);
390 std::forward_as_tuple(std::forward<_Up>(__u)),
391 std::forward_as_tuple(std::forward<_Vp>(__v)));
408 std::forward_as_tuple(std::forward<_Up>(__x.first)),
409 std::forward_as_tuple(std::forward<_Vp>(__x.second)));
/dragonfly/contrib/gcc-8.0/libstdc++-v3/src/c++11/
H A Dcompatibility-thread-c++0x.cc144 : _M_bound(std::forward<_Tp>(__f), std::forward<_Up>(__args)...) in _Bind_simple()
164 return std::forward<_Callable>(std::get<0>(_M_bound))( in _M_invoke()
165 std::forward<_Args>(std::get<_Indices+1>(_M_bound))...); in _M_invoke()
191 __maybe_type::__do_wrap( std::forward<_Callable>(__callable)), in __bind_simple()
192 std::forward<_Args>(__args)...); in __bind_simple()
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/std/
H A Dtuple89 : _Head(std::forward<_UHead>(__h)) { }
104 : _Head(std::forward<_UHead>(__uhead)) { }
248 _Base(std::forward<_UHead>(__head)) { }
268 _Base(std::forward<_UHead>
289 std::forward<_UHead>(__head)) { }
318 std::forward<_UHead>
352 _M_head(*this) = std::forward<_UHead>
524 : _Inherited(std::forward<_U1>(__a1), std::forward<_U2>(__a2)) { }
553 std::forward<_U2>(__in.second)) { }
569 std::forward<_U2>(__a2)) { }
[all …]
H A Dfunctional562 std::forward<_ArgTypes>(__args)...);
608 std::forward<_ArgTypes>(__args)...);
655 std::forward<_ArgTypes>(__args)...);
701 std::forward<_ArgTypes>(__args)...);
1074 { return std::forward<_CVArg>(__arg); }
1625 std::forward<_Args>(__args)...);
1911 std::forward<_ArgTypes>(__args)...);
1926 std::forward<_ArgTypes>(__args)...);
1956 std::forward<_ArgTypes>(__args)...);
1973 std::forward<_ArgTypes>(__args)...);
[all …]
/dragonfly/contrib/tcsh-6/nls/russian/
H A Dset314 12 Tab forward through files
36 34 Move forward one character
37 35 Move forward to end of current word
40 38 Search in history forward for line beginning as current
42 40 Incremental search forward
96 94 Vi move to the character specified forward
98 96 Vi move up to the character specified forward
108 106 Vi search history forward
/dragonfly/contrib/tcsh-6/nls/ukrainian/
H A Dset314 12 Tab forward through files
36 34 Move forward one character
37 35 Move forward to end of current word
40 38 Search in history forward for line beginning as current
42 40 Incremental search forward
96 94 Vi move to the character specified forward
98 96 Vi move up to the character specified forward
108 106 Vi search history forward
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/experimental/
H A Dtuple58 return std::__invoke(std::forward<_Fn>(__f),
59 std::get<_Idx>(std::forward<_Tuple>(__t))...);
68 return experimental::__apply_impl(std::forward<_Fn>(__f),
69 std::forward<_Tuple>(__t),
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/debug/
H A Dmap.h250 std::forward<_Args>(__args)...), in _GLIBCXX_VISIBILITY()
280 = _Base::insert(std::forward<_Pair>(__x)); in _GLIBCXX_VISIBILITY()
321 std::forward<_Pair>(__x)), this); in _GLIBCXX_VISIBILITY()
346 std::forward<_Args>(__args)...); in _GLIBCXX_VISIBILITY()
355 std::forward<_Args>(__args)...); in _GLIBCXX_VISIBILITY()
366 std::forward<_Args>(__args)...), in _GLIBCXX_VISIBILITY()
376 std::forward<_Args>(__args)...), in _GLIBCXX_VISIBILITY()
385 std::forward<_Obj>(__obj)); in _GLIBCXX_VISIBILITY()
394 std::forward<_Obj>(__obj)); in _GLIBCXX_VISIBILITY()
405 std::forward<_Obj>(__obj)), in _GLIBCXX_VISIBILITY()
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/libsupc++/
H A Dnested_exception.h100 throw _Nested_exception<_Up>{std::forward<_Tp>(__t)}; in __throw_with_nested_impl()
107 { throw std::forward<_Tp>(__t); } in __throw_with_nested_impl()
123 std::__throw_with_nested_impl(std::forward<_Tp>(__t), __nest{}); in throw_with_nested()

12345678910>>...13