Lines Matching full:double
31 { return __os << '(' << (double)__z.real() << ',' << (double)__z.imag() << ')'; }
35 operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<double>& __z)
41 operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<long double>& __z)
74 operator>>(basic_istream<char, char_traits<char> >& __is, complex<double>& __z) {
75 double __re = 0;
76 double __im = 0;
94 __z = complex<double>(__re, __im);
101 operator>>(basic_istream<char, char_traits<char> >& __is, complex<long double>& __z) {
102 long double __re = 0;
103 long double __im = 0;
121 __z = complex<long double>(__re, __im);
133 operator>>(basic_istream<wchar_t, char_traits<wchar_t> >&, complex<double>&);
137 operator>>(basic_istream<wchar_t, char_traits<wchar_t> >&, complex<long double>&);
140 operator<<(basic_ostream<wchar_t, char_traits<wchar_t> >&, const complex<long double>&);
147 operator<<(basic_ostream<wchar_t, char_traits<wchar_t> >&, const complex<double>&);