Home
last modified time | relevance | path

Searched refs:__sb (Results 1 – 8 of 8) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/include/
Dstreambuf375 basic_streambuf<_CharT, _Traits>::basic_streambuf(const basic_streambuf& __sb)
376 : __loc_(__sb.__loc_),
377 __binp_(__sb.__binp_),
378 __ninp_(__sb.__ninp_),
379 __einp_(__sb.__einp_),
380 __bout_(__sb.__bout_),
381 __nout_(__sb.__nout_),
382 __eout_(__sb.__eout_)
388 basic_streambuf<_CharT, _Traits>::operator=(const basic_streambuf& __sb)
390 __loc_ = __sb.__loc_;
[all …]
Dios332 void init(void* __sb);
336 void rdbuf(void* __sb)
338 __rdbuf_ = __sb;
348 void set_rdbuf(void* __sb)
350 __rdbuf_ = __sb;
592 explicit basic_ios(basic_streambuf<char_type,traits_type>* __sb);
604 basic_streambuf<char_type, traits_type>* rdbuf(basic_streambuf<char_type, traits_type>* __sb);
626 void init(basic_streambuf<char_type, traits_type>* __sb);
637 void set_rdbuf(basic_streambuf<char_type, traits_type>* __sb);
645 basic_ios<_CharT, _Traits>::basic_ios(basic_streambuf<char_type,traits_type>* __sb)
[all …]
Distream180 explicit basic_istream(basic_streambuf<char_type, traits_type>* __sb);
204 basic_istream& operator>>(basic_streambuf<char_type, traits_type>* __sb);
226 basic_istream& get(basic_streambuf<char_type, traits_type>& __sb);
227 basic_istream& get(basic_streambuf<char_type, traits_type>& __sb, char_type __dlm);
292 basic_istream<_CharT, _Traits>::basic_istream(basic_streambuf<char_type, traits_type>* __sb)
295 this->init(__sb);
847 basic_istream<_CharT, _Traits>::operator>>(basic_streambuf<char_type, traits_type>* __sb)
857 if (__sb)
873 __sb->sputc(traits_type::to_char_type(__i)),
1002 basic_istream<_CharT, _Traits>::get(basic_streambuf<char_type, traits_type>& __sb,
[all …]
Dostream155 explicit basic_ostream(basic_streambuf<char_type, traits_type>* __sb);
192 basic_ostream& operator<<(basic_streambuf<char_type, traits_type>* __sb);
263 basic_ostream<_CharT, _Traits>::basic_ostream(basic_streambuf<char_type, traits_type>* __sb)
265 this->init(__sb);
330 basic_ostream<_CharT, _Traits>::operator<<(basic_streambuf<char_type, traits_type>* __sb)
339 if (__sb)
347 _Ip __i(__sb);
Dregex2765 __owns_one_state<_CharT>* __sb);
3022 __owns_one_state<_CharT>* __sb = __end_;
3028 __push_alternation(__sa, __sb);
4062 __owns_one_state<_CharT>* __sb = __end_;
4066 __push_alternation(__sa, __sb);
4543 __owns_one_state<_CharT>* __sb = __end_;
4548 __push_alternation(__sa, __sb);
4574 __owns_one_state<_CharT>* __sb = __end_;
4579 __push_alternation(__sa, __sb);
Dvalarray3504 const value_type* __sb;
3510 __sb = __begin_ + __i;
3517 __sb = __begin_;
3523 for (; __r.__end_ != __te; ++__r.__end_, ++__sb)
3524 ::new (__r.__end_) value_type(*__sb);
Dlocale3206 bool __sb = __flags & ios_base::showbase;
3207 if (__sb || __more_needed)
3233 if (__sb && __sym_curr_char != __sym.end())
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_ios.c97 basic_ios<_CharT, _Traits>::init(basic_streambuf<_CharT, _Traits>* __sb) in init() argument
99 this->rdbuf(__sb); in init()
103 this->_M_clear_nothrow(__sb != 0 ? ios_base::goodbit : ios_base::badbit); in init()