Searched refs:__sb (Results 1 – 8 of 8) sorted by relevance
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | streambuf | 375 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 …]
|
D | ios | 336 void init(void* __sb); 340 void rdbuf(void* __sb) 342 __rdbuf_ = __sb; 352 void set_rdbuf(void* __sb) 354 __rdbuf_ = __sb; 600 explicit basic_ios(basic_streambuf<char_type,traits_type>* __sb); 612 basic_streambuf<char_type, traits_type>* rdbuf(basic_streambuf<char_type, traits_type>* __sb); 634 void init(basic_streambuf<char_type, traits_type>* __sb); 645 void set_rdbuf(basic_streambuf<char_type, traits_type>* __sb); 653 basic_ios<_CharT, _Traits>::basic_ios(basic_streambuf<char_type,traits_type>* __sb) [all …]
|
D | istream | 180 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 …]
|
D | ostream | 156 explicit basic_ostream(basic_streambuf<char_type, traits_type>* __sb); 196 basic_ostream& operator<<(basic_streambuf<char_type, traits_type>* __sb); 267 basic_ostream<_CharT, _Traits>::basic_ostream(basic_streambuf<char_type, traits_type>* __sb) 269 this->init(__sb); 334 basic_ostream<_CharT, _Traits>::operator<<(basic_streambuf<char_type, traits_type>* __sb) 343 if (__sb) 351 _Ip __i(__sb);
|
D | regex | 2805 __owns_one_state<_CharT>* __sb); 3075 __owns_one_state<_CharT>* __sb = __end_; 3081 __push_alternation(__sa, __sb); 4125 __owns_one_state<_CharT>* __sb = __end_; 4129 __push_alternation(__sa, __sb); 4626 __owns_one_state<_CharT>* __sb = __end_; 4631 __push_alternation(__sa, __sb); 4657 __owns_one_state<_CharT>* __sb = __end_; 4662 __push_alternation(__sa, __sb);
|
D | valarray | 3508 const value_type* __sb; 3514 __sb = __begin_ + __i; 3521 __sb = __begin_; 3527 for (; __r.__end_ != __te; ++__r.__end_, ++__sb) 3528 ::new (__r.__end_) value_type(*__sb);
|
D | locale | 3086 bool __sb = (__flags & ios_base::showbase) != 0; 3087 if (__sb || __more_needed) 3113 if (__sb && __sym_curr_char != __sym.end())
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _ios.c | 97 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()
|