Home | History | Annotate | Download | only in ustl-1.0

Lines Matching refs:T1

51 template <typename T1, typename T2>
52 istream& operator>> (istream& is, pair<T1,T2>& p)
57 is.align (alignof(T1()));
62 template <typename T1, typename T2>
63 ostream& operator<< (ostream& os, const pair<T1,T2>& p)
68 os.align (alignof(T1()));
73 template <typename T1, typename T2>
74 ostringstream& operator<< (ostringstream& os, const pair<T1,T2>& p)
81 template <typename T1, typename T2>
82 inline size_t stream_size_of (const pair<T1,T2>& v)
85 Align (stream_size_of(v.second), alignof(T1())));