Home | History | Annotate | Download | only in include

Lines Matching full:__t1

335     pair(_T1 const& __t1, _T2 const& __t2) : first(__t1), second(__t2) {}
415 explicit pair(_T1 const& __t1, _T2 const& __t2)
416 : first(__t1), second(__t2) {}
422 pair(_T1 const& __t1, _T2 const& __t2)
423 : first(__t1), second(__t2) {}
635 make_pair(_T1&& __t1, _T2&& __t2)
638 (_VSTD::forward<_T1>(__t1), _VSTD::forward<_T2>(__t2));