Lines Matching refs:__n
232 basic_istream& operator>>(bool& __n);
233 basic_istream& operator>>(short& __n);
234 basic_istream& operator>>(unsigned short& __n);
235 basic_istream& operator>>(int& __n);
236 basic_istream& operator>>(unsigned int& __n);
237 basic_istream& operator>>(long& __n);
238 basic_istream& operator>>(unsigned long& __n);
239 basic_istream& operator>>(long long& __n);
240 basic_istream& operator>>(unsigned long long& __n);
260 basic_istream& get(char_type* __s, streamsize __n)
261 { return get(__s, __n, this->widen('\n')); }
263 basic_istream& get(char_type* __s, streamsize __n, char_type __dlm);
272 basic_istream& getline(char_type* __s, streamsize __n)
273 { return getline(__s, __n, this->widen('\n')); }
275 basic_istream& getline(char_type* __s, streamsize __n, char_type __dlm);
277 basic_istream& ignore(streamsize __n = 1, int_type __dlm = traits_type::eof());
279 basic_istream& read (char_type* __s, streamsize __n);
280 streamsize readsome(char_type* __s, streamsize __n);
362 basic_istream<_CharT, _Traits>::operator>>(unsigned short& __n)
374 use_facet<_Fp>(this->getloc()).get(_Ip(*this), _Ip(), *this, __err, __n);
389 basic_istream<_CharT, _Traits>::operator>>(unsigned int& __n)
401 use_facet<_Fp>(this->getloc()).get(_Ip(*this), _Ip(), *this, __err, __n);
416 basic_istream<_CharT, _Traits>::operator>>(long& __n)
428 use_facet<_Fp>(this->getloc()).get(_Ip(*this), _Ip(), *this, __err, __n);
443 basic_istream<_CharT, _Traits>::operator>>(unsigned long& __n)
455 use_facet<_Fp>(this->getloc()).get(_Ip(*this), _Ip(), *this, __err, __n);
470 basic_istream<_CharT, _Traits>::operator>>(long long& __n)
482 use_facet<_Fp>(this->getloc()).get(_Ip(*this), _Ip(), *this, __err, __n);
497 basic_istream<_CharT, _Traits>::operator>>(unsigned long long& __n)
509 use_facet<_Fp>(this->getloc()).get(_Ip(*this), _Ip(), *this, __err, __n);
524 basic_istream<_CharT, _Traits>::operator>>(float& __n)
536 use_facet<_Fp>(this->getloc()).get(_Ip(*this), _Ip(), *this, __err, __n);
551 basic_istream<_CharT, _Traits>::operator>>(double& __n)
563 use_facet<_Fp>(this->getloc()).get(_Ip(*this), _Ip(), *this, __err, __n);
578 basic_istream<_CharT, _Traits>::operator>>(long double& __n)
590 use_facet<_Fp>(this->getloc()).get(_Ip(*this), _Ip(), *this, __err, __n);
605 basic_istream<_CharT, _Traits>::operator>>(bool& __n)
617 use_facet<_Fp>(this->getloc()).get(_Ip(*this), _Ip(), *this, __err, __n);
632 basic_istream<_CharT, _Traits>::operator>>(void*& __n)
644 use_facet<_Fp>(this->getloc()).get(_Ip(*this), _Ip(), *this, __err, __n);
659 basic_istream<_CharT, _Traits>::operator>>(short& __n)
676 __n = numeric_limits<short>::min();
681 __n = numeric_limits<short>::max();
684 __n = static_cast<short>(__temp);
699 basic_istream<_CharT, _Traits>::operator>>(int& __n)
716 __n = numeric_limits<int>::min();
721 __n = numeric_limits<int>::max();
724 __n = static_cast<int>(__temp);
748 streamsize __n = __is.width();
749 if (__n <= 0)
750 __n = numeric_limits<streamsize>::max() / sizeof(_CharT) - 1;
754 while (__c < __n-1)
934 basic_istream<_CharT, _Traits>::get(char_type* __s, streamsize __n, char_type __dlm)
944 if (__n > 0)
947 while (__gc_ < __n-1)
1036 basic_istream<_CharT, _Traits>::getline(char_type* __s, streamsize __n, char_type __dlm)
1062 if (__gc_ >= __n-1)
1071 if (__n > 0)
1089 basic_istream<_CharT, _Traits>::ignore(streamsize __n, int_type __dlm)
1100 if (__n == numeric_limits<streamsize>::max())
1117 while (__gc_ < __n)
1171 basic_istream<_CharT, _Traits>::read(char_type* __s, streamsize __n)
1181 __gc_ = this->rdbuf()->sgetn(__s, __n);
1182 if (__gc_ != __n)
1199 basic_istream<_CharT, _Traits>::readsome(char_type* __s, streamsize __n)
1218 read(__s, _VSTD::min(__c, __n));
1513 streamsize __n = __is.width();
1514 if (__n <= 0)
1515 __n = __str.max_size();
1516 if (__n <= 0)
1517 __n = numeric_limits<streamsize>::max();
1521 while (__c < __n)