Searched refs:__width (Results 1 – 5 of 5) sorted by relevance
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _string_io.c | 86 streamsize __width = __is.width(0); variable 88 if (__width <= 0) 95 (__width > __STATIC_CAST(streamsize, __s.max_size()))) 98 __n = __STATIC_CAST(size_type, __width);
|
D | _monetary.c | 408 streamsize __width = __str.width(); in __money_do_put() local 442 …ll = (((sizeof(streamsize) > sizeof(size_t)) && (__STATIC_CAST(streamsize, __length) < __width)) || in __money_do_put() 443 … ((sizeof(streamsize) <= sizeof(size_t)) && (__length < __STATIC_CAST(size_t, __width)))); in __money_do_put() 444 streamsize __fill_amt = __need_fill ? __width - __length : 0; in __money_do_put()
|
D | _num_put.c | 45 streamsize __width, _CharT __fill, in __copy_float_and_fill() argument 47 if (__width <= __last - __first) in __copy_float_and_fill() 50 streamsize __pad = __width - (__last - __first); in __copy_float_and_fill()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | fstream | 791 int __width = __cv_->encoding(); 792 if (__file_ == 0 || (__width <= 0 && __off != 0) || sync()) 794 // __width > 0 || __off == 0 811 if (fseek(__file_, __width > 0 ? __width * __off : 0, __whence)) 815 if (fseeko(__file_, __width > 0 ? __width * __off : 0, __whence)) 878 int __width = __cv_->encoding(); 880 if (__width > 0) 881 __c += __width * (this->egptr() - this->gptr());
|
D | locale | 4306 int __width = __cv_->encoding(); 4307 if (__cv_ == 0 || __bufptr_ == 0 || (__width <= 0 && __off != 0) || sync()) 4309 // __width > 0 || __off == 0 4321 pos_type __r = __bufptr_->pubseekoff(__width * __off, __way, __om); 4369 int __width = __cv_->encoding(); 4371 if (__width > 0) 4372 __c += __width * (this->egptr() - this->gptr());
|