Lines Matching refs:_Self

64   typedef basic_istream<_CharT, _Traits> _Self;
68 basic_istream(_Self const&);
69 _Self& operator = (_Self const&);
83 typedef _Self& (_STLP_CALL *__istream_fn)(_Self&);
96 _Self& operator>> (__istream_fn __f) { return __f(*this); }
97 _Self& operator>> (__ios_fn __f) { __f(*this); return *this; }
98 _Self& operator>> (__ios_base_fn __f) { __f(*this); return *this; }
101 _Self& operator>> (short& __val);
102 _Self& operator>> (int& __val);
103 _Self& operator>> (unsigned short& __val);
104 _Self& operator>> (unsigned int& __val);
105 _Self& operator>> (long& __val);
106 _Self& operator>> (unsigned long& __val);
108 _Self& operator>> (_STLP_LONG_LONG& __val);
109 _Self& operator>> (unsigned _STLP_LONG_LONG& __val);
111 _Self& operator>> (float& __val);
112 _Self& operator>> (double& __val);
114 _Self& operator>> (long double& __val);
117 _Self& operator>> (bool& __val);
119 _Self& operator>> (void*& __val);
122 _Self& operator>>(basic_streambuf<_CharT, _Traits>*);
130 _Self& get(char_type& __c);
133 _Self& get(char_type* __s, streamsize __n, char_type __delim);
134 _Self& get(char_type* __s, streamsize __n)
138 _Self& get(basic_streambuf<_CharT, _Traits>& __buf,
140 _Self& get(basic_streambuf<_CharT, _Traits>& __buf)
144 _Self& getline(char_type* __s, streamsize __n, char_type delim);
145 _Self& getline(char_type* __s, streamsize __n)
149 _Self& ignore();
150 _Self& ignore(streamsize __n);
151 _Self& ignore(streamsize __n, int_type __delim);
153 _Self& read(char_type* __s, streamsize __n);
157 _Self& putback(char_type __c);
158 _Self& unget();
164 _Self& seekg(pos_type __pos);
165 _Self& seekg(off_type, ios_base::seekdir);
185 typedef _Isentry<_CharT, _Traits> _Self;
188 typedef sentry _Self;
215 sentry(const _Self&) : _M_ok(false) {}
216 _Self& operator=(const _Self&) { return *this; }