Home | History | Annotate | Download | only in www

Lines Matching full:forward

28 -    forward(typename std::identity<_Tp>::type&& __t)
29 + forward(typename std::remove_reference<_Tp>::type& __t)
38 + forward(typename std::remove_reference<_Tp>::type&& __t)
42 + "Can't instantiate this forward() with an"
283 + : first(std::forward<_U1>(__x)), second(__y) { }
288 + : first(__x), second(std::forward<_U2>(__y)) { }
294 - : first(std::forward<_U1>(__x)),
295 - second(std::forward<_U2>(__y)) { }
296 + : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { }
313 : first(std::forward<_U1>(__x)),
314 second(std::forward<_Arg0>(__arg0),
315 std::forward<_Args>(__args)...) { }
499 - : __vstring_base(std::forward<__vstring_base>(__str)) { }