Searched refs:__mod (Results 1 – 7 of 7) sorted by relevance
/ndk/sources/cxx-stl/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);
|
/ndk/build/core/ |
D | definitions.mk | 458 $(foreach __mod,$(__ndk_modules),\ 460 $(eval __ndk_modules.$(__mod).$(__field) := $(empty))\ 573 $(foreach __mod,$(__ndk_modules),\ 574 $(info $(space4)$(__mod):)\ 576 $(eval __fieldval := $(strip $(__ndk_modules.$(__mod).$(__field))))\
|
/ndk/sources/cxx-stl/llvm-libc++/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 …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
D | locale.cpp | 5513 char __fmt, char __mod) const in __do_put() 5515 char fmt[] = {'%', __fmt, __mod, 0}; in __do_put() 5516 if (__mod != 0) in __do_put() 5524 char __fmt, char __mod) const in __do_put() 5528 __do_put(__nar, __ne, __tm, __fmt, __mod); in __do_put()
|