Home
last modified time | relevance | path

Searched refs:__which (Results 1 – 4 of 4) sorted by relevance

/src/contrib/llvm-project/libcxx/src/
H A Dstrstream.cpp173 …s_type strstreambuf::seekoff(off_type __off, ios_base::seekdir __way, ios_base::openmode __which) { in seekoff() argument
174 bool pos_in = (__which & ios::in) != 0; in seekoff()
175 bool pos_out = (__which & ios::out) != 0; in seekoff()
224 strstreambuf::pos_type strstreambuf::seekpos(pos_type __sp, ios_base::openmode __which) { in seekpos() argument
225 bool pos_in = (__which & ios::in) != 0; in seekpos()
226 bool pos_out = (__which & ios::out) != 0; in seekpos()
/src/contrib/llvm-project/libcxx/include/
H A Dstreambuf161 …pubseekoff(off_type __off, ios_base::seekdir __way, ios_base::openmode __which = ios_base::in | io…
162 return seekoff(__off, __way, __which);
166 pubseekpos(pos_type __sp, ios_base::openmode __which = ios_base::in | ios_base::out) {
167 return seekpos(__sp, __which);
269 …seekoff(off_type __off, ios_base::seekdir __way, ios_base::openmode __which = ios_base::in | ios_b…
270 …virtual pos_type seekpos(pos_type __sp, ios_base::openmode __which = ios_base::in | ios_base::out);
H A Dsstream406 … ios_base::openmode __which = ios_base::in | ios_base::out)
407 : basic_stringbuf(__t, __which, _Allocator()) {}
416 …_LIBCPP_HIDE_FROM_ABI basic_stringbuf(const _Tp& __t, ios_base::openmode __which, const _Allocator…
417 : __hm_(nullptr), __mode_(__which) {
901 …_LIBCPP_HIDE_FROM_ABI explicit basic_istringstream(const _Tp& __t, ios_base::openmode __which = io…
902 : basic_istringstream(__t, __which, _Allocator()) {}
911 …_LIBCPP_HIDE_FROM_ABI basic_istringstream(const _Tp& __t, ios_base::openmode __which, const _Alloc…
912 …: basic_istream<_CharT, _Traits>(std::addressof(__sb_)), __sb_(__t, __which | ios_base::in, __a) {}
1037 …_LIBCPP_HIDE_FROM_ABI explicit basic_ostringstream(const _Tp& __t, ios_base::openmode __which = io…
1038 : basic_ostringstream(__t, __which | ios_base::out, _Allocator()) {}
[all …]
H A Dstrstream183 …seekoff(off_type __off, ios_base::seekdir __way, ios_base::openmode __which = ios_base::in | ios_b…
184 …pos_type seekpos(pos_type __sp, ios_base::openmode __which = ios_base::in | ios_base::out) overrid…