/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _num_put.h | 60 iter_type put(iter_type __s, ios_base& __f, char_type __fill, in put() argument 62 return do_put(__s, __f, __fill, __val); in put() 65 iter_type put(iter_type __s, ios_base& __f, char_type __fill, in put() argument 67 return do_put(__s, __f, __fill, __val); in put() 70 iter_type put(iter_type __s, ios_base& __f, char_type __fill, in put() argument 72 return do_put(__s, __f, __fill, __val); in put() 76 iter_type put(iter_type __s, ios_base& __f, char_type __fill, in put() argument 78 return do_put(__s, __f, __fill, __val); in put() 81 iter_type put(iter_type __s, ios_base& __f, char_type __fill, in put() argument 83 return do_put(__s, __f, __fill, __val); in put() [all …]
|
D | _num_put.c | 45 streamsize __width, _CharT __fill, in __copy_float_and_fill() argument 55 return _STLP_PRIV __fill_n(__oi, __pad, __fill); in __copy_float_and_fill() 60 __oi = _STLP_PRIV __fill_n(__oi, __pad, __fill); in __copy_float_and_fill() 64 __oi = _STLP_PRIV __fill_n(__oi, __pad, __fill); in __copy_float_and_fill() 75 ios_base& __f, wchar_t __fill, in __put_float() argument 89 __f.flags(), __f.width(0), __fill, __ct.widen('+'), __ct.widen('-')); in __put_float() 97 ios_base& __f, char __fill, in __put_float() argument 110 __f.flags(), __f.width(0), __fill, '+', '-'); in __put_float() 116 _CharT __fill, _Float __x) { in __do_put_float() argument 122 return __put_float(__buf, __s, __f, __fill, in __do_put_float() [all …]
|
D | _slist.c | 191 int __fill = 0; in _Slist_sort() local 195 while (__i < __fill && !__counter[__i].empty()) { in _Slist_sort() 201 if (__i == __fill) { in _Slist_sort() 202 ++__fill; in _Slist_sort() 203 if (__fill >= NB) { in _Slist_sort() 210 for (int __i = 1; __i < __fill; ++__i) in _Slist_sort() 212 __that.swap(__counter[__fill-1]); in _Slist_sort()
|
D | _list.c | 215 int __fill = 0; in _S_sort() local 219 while (__i < __fill && !__counter[__i].empty()) { in _S_sort() 224 if (__i == __fill) { in _S_sort() 225 ++__fill; in _S_sort() 226 if (__fill >= NB) { in _S_sort() 233 for (int __i = 1; __i < __fill; ++__i) in _S_sort() 235 __that.swap(__counter[__fill - 1]); in _S_sort()
|
D | _monetary.c | 317 _CharT __fill, const _Str& __digits, bool __check_digits, in __money_do_put() argument 450 __s = _STLP_PRIV __fill_n(__s, __fill_amt, __fill); in __money_do_put() 459 __s = _STLP_PRIV __fill_n(__s, __fill_amt, __fill); in __money_do_put() 496 __s = _STLP_PRIV __fill_n(__s, __fill_amt, __fill); in __money_do_put() 507 char_type __fill, _STLP_LONGEST_FLOAT_TYPE __units) const { in do_put() argument 510 …return _STLP_PRIV __money_do_put(__s, __intl, __str, __fill, __digits, false, __STATIC_CAST(string… in do_put() 517 char_type __fill, const string_type& __digits) const { in do_put() argument 518 …return _STLP_PRIV __money_do_put(__s, __intl, __str, __fill, __digits, true, __STATIC_CAST(string_… in do_put()
|
D | _monetary.h | 396 char_type __fill, _STLP_LONGEST_FLOAT_TYPE __units) const in put() argument 397 { return do_put(__s, __intl, __str, __fill, __units); } in put() 399 char_type __fill, in put() argument 401 { return do_put(__s, __intl, __str, __fill, __digits); } in put() 408 char_type __fill, _STLP_LONGEST_FLOAT_TYPE __units) const; 410 char_type __fill,
|
D | _ios.h | 82 char_type fill(char_type __fill) { in fill() argument 84 _M_fill = __fill; in fill()
|
D | _time_facets.h | 256 _OutIt put(iter_type __s, ios_base& __f, _Ch __fill, 260 _OutIt put(iter_type __s, ios_base& __f, _Ch __fill, 262 { return do_put(__s, __f, __fill, __tmb, __format, __modifier); }
|
D | _algobase.h | 417 inline void __fill(_ForwardIter __first, _ForwardIter __last, const _Tp& __val, in __fill() function 425 void __fill(_ForwardIter __first, _ForwardIter __last, const _Tp& __val, in __fill() function 432 void __fill(_ForwardIter __first, _ForwardIter __last, const _Tp& __val, in __fill() function 440 void __fill(_RandomAccessIter __first, _RandomAccessIter __last, const _Tp& __val, in __fill() function 451 _STLP_PRIV __fill(__first, __last, __val, in fill()
|
D | _time_facets.c | 402 time_put<_Ch,_OutputIter>::put(_OutputIter __s, ios_base& __f, _Ch __fill, in put() argument 416 __s = do_put(__s, __f, __fill, __tmb, __c, __mod); in put()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | algorithm | 2023 __fill(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __value_, forward_iterator_tag) 2032 __fill(_RandomAccessIterator __first, _RandomAccessIterator __last, const _Tp& __value_, random_acc… 2042 …_VSTD::__fill(__first, __last, __value_, typename iterator_traits<_ForwardIterator>::iterator_cate…
|