| /freebsd-10-stable/contrib/libc++/include/ |
| D | iomanip | 68 operator>>(basic_istream<_CharT, _Traits>& __is, const __iom_t1& __x) 70 __is.unsetf(__x.__mask_); 71 return __is; 105 operator>>(basic_istream<_CharT, _Traits>& __is, const __iom_t2& __x) 107 __is.setf(__x.__mask_); 108 return __is; 142 operator>>(basic_istream<_CharT, _Traits>& __is, const __iom_t3& __x) 144 __is.setf(__x.__base_ == 8 ? ios_base::oct : 148 return __is; 214 operator>>(basic_istream<_CharT, _Traits>& __is, const __iom_t5& __x) [all …]
|
| D | istream | 271 explicit sentry(basic_istream<_CharT, _Traits>& __is, bool __noskipws = false); 280 basic_istream<_CharT, _Traits>::sentry::sentry(basic_istream<_CharT, _Traits>& __is, 284 if (__is.good()) 286 if (__is.tie()) 287 __is.tie()->flush(); 288 if (!__noskipws && (__is.flags() & ios_base::skipws)) 291 const ctype<_CharT>& __ct = use_facet<ctype<_CharT> >(__is.getloc()); 292 _Ip __i(__is); 298 __is.setstate(ios_base::failbit | ios_base::eofbit); 300 __ok_ = __is.good(); [all …]
|
| D | random | 1828 operator>>(basic_istream<_CharT, _Traits>& __is, 1929 operator>>(basic_istream<_CharT, _Traits>& __is, 1992 operator>>(basic_istream<_CharT, _Traits>& __is, 1995 __save_flags<_CharT, _Traits> __lx(__is); 1996 __is.flags(ios_base::dec | ios_base::skipws); 1998 __is >> __t; 1999 if (!__is.fail()) 2001 return __is; 2049 operator>>(basic_istream<_CharT, _Traits>& __is, 2168 operator>>(basic_istream<_CharT, _Traits>& __is, [all …]
|
| D | complex | 1452 operator>>(basic_istream<_CharT, _Traits>& __is, complex<_Tp>& __x) 1454 if (__is.good()) 1456 ws(__is); 1457 if (__is.peek() == _CharT('(')) 1459 __is.get(); 1461 __is >> __r; 1462 if (!__is.fail()) 1464 ws(__is); 1465 _CharT __c = __is.peek(); 1468 __is.get(); [all …]
|
| D | string | 4144 operator>>(basic_istream<_CharT, _Traits>& __is, 4149 getline(basic_istream<_CharT, _Traits>& __is, 4155 getline(basic_istream<_CharT, _Traits>& __is, 4163 getline(basic_istream<_CharT, _Traits>&& __is, 4169 getline(basic_istream<_CharT, _Traits>&& __is,
|
| D | bitset | 1073 operator>>(basic_istream<_CharT, _Traits>& __is, bitset<_Size>& __x);
|
| /freebsd-10-stable/contrib/libstdc++/include/std/ |
| D | std_iomanip.h | 72 operator>>(basic_istream<_CharT,_Traits>& __is, _Resetiosflags __f) 74 __is.setf(ios_base::fmtflags(0), __f._M_mask); 75 return __is; 106 operator>>(basic_istream<_CharT,_Traits>& __is, _Setiosflags __f) 108 __is.setf(__f._M_mask); 109 return __is; 141 operator>>(basic_istream<_CharT,_Traits>& __is, _Setbase __f) 143 __is.setf(__f._M_base == 8 ? ios_base::oct : 147 return __is; 183 operator>>(basic_istream<_CharT,_Traits>& __is, _Setfill<_CharT> __f) [all …]
|
| D | std_bitset.h | 1230 operator>>(std::basic_istream<_CharT, _Traits>& __is, bitset<_Nb>& __x) 1237 typename std::basic_istream<_CharT, _Traits>::sentry __sentry(__is); 1242 basic_streambuf<_CharT, _Traits>* __buf = __is.rdbuf(); 1245 const char_type __zero = __is.widen('0'); 1246 const char_type __one = __is.widen('1'); 1274 { __is._M_setstate(std::ios_base::badbit); } 1282 __is.setstate(__state); 1283 return __is;
|
| D | std_complex.h | 485 operator>>(basic_istream<_CharT, _Traits>& __is, complex<_Tp>& __x) 489 __is >> __ch; 492 __is >> __re_x >> __ch; 495 __is >> __im_x >> __ch; 499 __is.setstate(ios_base::failbit); 504 __is.setstate(ios_base::failbit); 508 __is.putback(__ch); 509 __is >> __re_x; 512 return __is;
|
| D | std_istream.h | 678 sentry(basic_istream<_CharT, _Traits>& __is, bool __noskipws = false); 840 ws(basic_istream<_CharT, _Traits>& __is);
|
| /freebsd-10-stable/contrib/libstdc++/include/tr1/ |
| D | random.tcc | 164 operator>>(std::basic_istream<_CharT, _Traits>& __is, in operator >>() argument 170 const typename __ios_base::fmtflags __flags = __is.flags(); in operator >>() 171 __is.flags(__ios_base::dec); in operator >>() 173 __is >> __lcr._M_x; in operator >>() 175 __is.flags(__flags); in operator >>() 176 return __is; in operator >>() 299 operator>>(std::basic_istream<_CharT, _Traits>& __is, in operator >>() argument 306 const typename __ios_base::fmtflags __flags = __is.flags(); in operator >>() 307 __is.flags(__ios_base::dec | __ios_base::skipws); in operator >>() 310 __is >> __x._M_x[__i]; in operator >>() [all …]
|
| D | random | 421 * representation from @p __is. 426 * @p __is. 428 * @param __is The input stream. 430 * @returns __is. 436 operator>>(std::basic_istream<_CharT, _Traits>& __is, 598 * generator engine @p __x from the input stream @p __is. 600 * @param __is An input stream. 611 operator>>(std::basic_istream<_CharT, _Traits>& __is, 800 * generator engine @p __x from the input stream @p __is. 802 * @param __is An input stream. [all …]
|
| /freebsd-10-stable/contrib/libstdc++/include/bits/ |
| D | basic_string.h | 2391 operator>>(basic_istream<_CharT, _Traits>& __is, 2396 operator>>(basic_istream<char>& __is, basic_string<char>& __str); 2432 getline(basic_istream<_CharT, _Traits>& __is, 2449 getline(basic_istream<_CharT, _Traits>& __is, in getline() argument 2451 { return getline(__is, __str, __is.widen('\n')); } in getline()
|
| /freebsd-10-stable/contrib/libstdc++/include/debug/ |
| D | string | 984 operator>>(std::basic_istream<_CharT,_Traits>& __is, 987 std::basic_istream<_CharT,_Traits>& __res = __is >> __str._M_base(); 994 getline(std::basic_istream<_CharT,_Traits>& __is, 997 std::basic_istream<_CharT,_Traits>& __res = getline(__is, 1006 getline(std::basic_istream<_CharT,_Traits>& __is, 1009 std::basic_istream<_CharT,_Traits>& __res = getline(__is,
|
| D | bitset | 317 operator>>(std::basic_istream<_CharT, _Traits>& __is, bitset<_Nb>& __x) 318 { return __is >> __x._M_base(); }
|
| /freebsd-10-stable/contrib/libstdc++/include/ext/ |
| D | vstring.h | 2128 operator>>(basic_istream<_CharT, _Traits>& __is, 2169 getline(basic_istream<_CharT, _Traits>& __is, 2188 getline(basic_istream<_CharT, _Traits>& __is, in getline() argument 2190 { return getline(__is, __str, __is.widen('\n')); } in getline()
|