Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/include/
H A Dstreambuf304 basic_streambuf<_CharT, _Traits>::basic_streambuf(const basic_streambuf& __sb)
305 : __loc_(__sb.__loc_),
306 __binp_(__sb.__binp_),
307 __ninp_(__sb.__ninp_),
308 __einp_(__sb.__einp_),
309 __bout_(__sb.__bout_),
310 __nout_(__sb.__nout_),
311 __eout_(__sb.__eout_) {}
314 …eambuf<_CharT, _Traits>& basic_streambuf<_CharT, _Traits>::operator=(const basic_streambuf& __sb) {
315 __loc_ = __sb.__loc_;
[all …]
H A Dios369 void init(void* __sb);
372 _LIBCPP_HIDE_FROM_ABI void rdbuf(void* __sb) {
373 __rdbuf_ = __sb;
382 _LIBCPP_HIDE_FROM_ABI void set_rdbuf(void* __sb) { __rdbuf_ = __sb; }
589 _LIBCPP_HIDE_FROM_ABI explicit basic_ios(basic_streambuf<char_type, traits_type>* __sb);
597 …_ABI basic_streambuf<char_type, traits_type>* rdbuf(basic_streambuf<char_type, traits_type>* __sb);
614 _LIBCPP_HIDE_FROM_ABI void init(basic_streambuf<char_type, traits_type>* __sb);
619 _LIBCPP_HIDE_FROM_ABI void set_rdbuf(basic_streambuf<char_type, traits_type>* __sb);
633 …IDE_FROM_ABI basic_ios<_CharT, _Traits>::basic_ios(basic_streambuf<char_type, traits_type>* __sb) {
634 init(__sb);
[all …]
H A Distream202 …LIBCPP_HIDE_FROM_ABI_AFTER_V1 explicit basic_istream(basic_streambuf<char_type, traits_type>* __sb)
204 this->init(__sb);
242 basic_istream& operator>>(basic_streambuf<char_type, traits_type>* __sb);
274 … _LIBCPP_HIDE_FROM_ABI_AFTER_V1 basic_istream& get(basic_streambuf<char_type, traits_type>& __sb) {
275 return get(__sb, this->widen('\n'));
278 basic_istream& get(basic_streambuf<char_type, traits_type>& __sb, char_type __dlm);
607 basic_istream<_CharT, _Traits>::operator>>(basic_streambuf<char_type, traits_type>* __sb) {
612 if (__sb) {
622 … if (traits_type::eq_int_type(__sb->sputc(traits_type::to_char_type(__i)), traits_type::eof()))
728 basic_istream<_CharT, _Traits>::get(basic_streambuf<char_type, traits_type>& __sb, char_type __dlm)…
[all …]
H A Dregex2561 void __push_alternation(__owns_one_state<_CharT>* __sa, __owns_one_state<_CharT>* __sb);
2813 __owns_one_state<_CharT>* __sb = __end_;
2817 __push_alternation(__sa, __sb);
3609 __owns_one_state<_CharT>* __sb = __end_;
3613 __push_alternation(__sa, __sb);
4012 __owns_one_state<_CharT>* __sb = __end_;
4017 __push_alternation(__sa, __sb);
4039 __owns_one_state<_CharT>* __sb = __end_;
4044 __push_alternation(__sa, __sb);
H A Dvalarray2560 const value_type* __sb;
2565 __sb = __begin_ + __i;
2570 __sb = __begin_;
2576 for (; __r.__end_ != __te; ++__r.__end_, ++__sb)
2577 ::new ((void*)__r.__end_) value_type(*__sb);
H A Dlocale2551 bool __sb = (__flags & ios_base::showbase) != 0;
2552 if (__sb || __more_needed) {
2573 if (__sb && __sym_curr_char != __sym.end()) {
/freebsd/sys/sys/
H A Ddevctl.h20 void devctl_safe_quote_sb(struct sbuf *__sb, const char *__src);
/freebsd/contrib/llvm-project/libcxx/include/__ostream/
H A Dbasic_ostream.h50 …BCPP_HIDE_FROM_ABI_AFTER_V1 explicit basic_ostream(basic_streambuf<char_type, traits_type>* __sb) { in basic_ostream() argument
51 this->init(__sb); in basic_ostream()
108 basic_ostream& operator<<(basic_streambuf<char_type, traits_type>* __sb);
184 basic_ostream<_CharT, _Traits>::operator<<(basic_streambuf<char_type, traits_type>* __sb) {
190 if (__sb) {
196 _Ip __i(__sb);