Searched refs:__which (Results 1 – 3 of 3) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/libcxx/src/ |
| H A D | strstream.cpp | 173 …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()
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/ |
| H A D | streambuf | 158 …pubseekoff(off_type __off, ios_base::seekdir __way, ios_base::openmode __which = ios_base::in | io… 159 return seekoff(__off, __way, __which); 163 pubseekpos(pos_type __sp, ios_base::openmode __which = ios_base::in | ios_base::out) { 164 return seekpos(__sp, __which); 262 …seekoff(off_type __off, ios_base::seekdir __way, ios_base::openmode __which = ios_base::in | ios_b… 263 …virtual pos_type seekpos(pos_type __sp, ios_base::openmode __which = ios_base::in | ios_base::out);
|
| H A D | strstream | 182 …seekoff(off_type __off, ios_base::seekdir __way, ios_base::openmode __which = ios_base::in | ios_b… 183 …pos_type seekpos(pos_type __sp, ios_base::openmode __which = ios_base::in | ios_base::out) overrid…
|