Searched refs:__mod (Results 1 – 6 of 6) sorted by relevance
/external/stlport/stlport/stl/ |
D | _fstream.h | 462 explicit basic_ifstream(const char* __s, ios_base::openmode __mod = ios_base::in) : 466 if (!_M_buf.open(__s, __mod | ios_base::in)) 471 explicit basic_ifstream(int __id, ios_base::openmode __mod = ios_base::in) : 474 if (!_M_buf.open(__id, __mod | ios_base::in)) 486 explicit basic_ifstream(_STLP_fd __id, ios_base::openmode __mod = ios_base::in) : 489 if (!_M_buf.open(__id, __mod | ios_base::in)) 505 void open(const char* __s, ios_base::openmode __mod = ios_base::in) { 506 if (!this->rdbuf()->open(__s, __mod | ios_base::in)) 542 explicit basic_ofstream(const char* __s, ios_base::openmode __mod = ios_base::out) 545 if (!_M_buf.open(__s, __mod | ios_base::out)) [all …]
|
D | _streambuf.h | 146 ios_base::openmode __mod = ios_base::in | ios_base::out) 147 { return this->seekoff(__offset, __way, __mod); } 150 ios_base::openmode __mod = ios_base::in | ios_base::out) 151 { return this->seekpos(__sp, __mod); }
|
D | _time_facets.c | 408 char __mod = 0; in put() local 412 __mod = __c; in put() 415 __s = do_put(__s, __f, __fill, __tmb, __c, __mod); in put()
|
D | _sstream.h | 220 basic_stringstream(openmode __mod = ios_base::in | ios_base::out); 222 openmode __mod = ios_base::in | ios_base::out);
|
/external/libcxx/include/ |
D | locale | 1948 char __fmt, char __mod = 0) const 1950 return do_get(__b, __e, __iob, __err, __tm, __fmt, __mod); 1976 char __fmt, char __mod) const; 2593 char __fmt, char __mod) const; 2595 char __fmt, char __mod) const; 2616 const tm* __tm, char __fmt, char __mod = 0) const 2618 return do_put(__s, __iob, __fl, __tm, __fmt, __mod); 2627 char __fmt, char __mod) const; 2660 char __mod = 0; 2670 __mod = __fmt; [all …]
|
/external/libcxx/src/ |
D | locale.cpp | 5400 char __fmt, char __mod) const in __do_put() 5402 char fmt[] = {'%', __fmt, __mod, 0}; in __do_put() 5403 if (__mod != 0) in __do_put() 5411 char __fmt, char __mod) const in __do_put() 5415 __do_put(__nar, __ne, __tm, __fmt, __mod); in __do_put()
|