Home
last modified time | relevance | path

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

/freebsd-14.2/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()
/freebsd-14.2/contrib/llvm-project/libcxx/include/
H A Dstreambuf158 …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 Dstrstream182 …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…