Home
last modified time | relevance | path

Searched refs:__ct (Results 1 – 6 of 6) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dlocale421 // __ct is used to force to lower case before comparing characters.
431 const _Ctype& __ct, ios_base::iostate& __err,
470 __c = __ct.toupper(__c);
485 __kc = __ct.toupper(__kc);
555 static int __stage2_int_loop(_CharT __ct, int __base, char* __a, char*& __a_end,
558 static int __stage2_float_loop(_CharT __ct, bool& __in_units, char& __exp,
591 __num_get<_CharT>::__stage2_int_loop(_CharT __ct, int __base, char* __a, char*& __a_end,
595 if (__a_end == __a && (__ct == __atoms[24] || __ct == __atoms[25]))
597 *__a_end++ = __ct == __atoms[24] ? '+' : '-';
601 if (__grouping.size() != 0 && __ct == __thousands_sep)
[all …]
Distream275 const ctype<_CharT>& __ct = use_facet<ctype<_CharT> >(__is.getloc());
279 if (!__ct.is(__ct.space, *__i))
753 const ctype<_CharT>& __ct = use_facet<ctype<_CharT> >(__is.getloc());
764 if (__ct.is(__ct.space, __ch))
1421 const ctype<_CharT>& __ct = use_facet<ctype<_CharT> >(__is.getloc());
1430 if (!__ct.is(__ct.space, _Traits::to_char_type(__i)))
1548 const ctype<_CharT>& __ct = use_facet<ctype<_CharT> >(__is.getloc());
1559 if (__ct.is(__ct.space, __ch))
1673 const ctype<_CharT>& __ct = use_facet<ctype<_CharT> >(__is.getloc());
1676 _CharT __zero = __ct.widen('0');
[all …]
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_num_put.c78 const ctype<wchar_t>& __ct = use_facet<ctype<wchar_t> >(__f.getloc()); in __put_float() local
81 __convert_float_buffer(__str, __wbuf, __ct, __decimal_point); in __put_float()
85 __sep, __ct.widen('+'), __ct.widen('-'), 0); in __put_float()
89 __f.flags(), __f.width(0), __fill, __ct.widen('+'), __ct.widen('-')); in __put_float()
135 const ctype<wchar_t>& __ct = use_facet<ctype<wchar_t> >(__f.getloc()); in __get_money_digits_aux() local
136 __convert_float_buffer(__buf, __wbuf, __ct, wchar_t(0), false); in __get_money_digits_aux()
196 const ctype<wchar_t>& __ct = use_facet<ctype<wchar_t> >(__loc); in __put_integer() local
198 wchar_t __xplus = __ct.widen('+'); in __put_integer()
199 wchar_t __xminus = __ct.widen('-'); in __put_integer()
202 __ct.widen(__buf, __iend, __wbuf); in __put_integer()
D_time_facets.c153 const ctype<_Ch>& __ct = use_facet<ctype<_Ch> >(__s.getloc()); in _STLP_WEAK() local
269 if (*__first++ != __ct.widen(*__format)) break; in _STLP_WEAK()
428 const ctype<_Ch>& __ct = use_facet<ctype<_Ch> >(__f.getloc()); in do_put() local
430 _STLP_PRIV __write_formatted_time(__buf, __ct, __format, __modifier, this->_M_timeinfo, __tmb); in do_put()
D_time_facets.h234 __write_formatted_time(__iostring&, const ctype<char>& __ct,
240 __write_formatted_time(__iowstring&, const ctype<wchar_t>& __ct,
D_num_get.c369 const ctype<_CharT> &__ct, const numpunct<_CharT> &__numpunct) { in __read_float() argument
390 _Initialize_get_float(__ct, __xplus, __xminus, __pow_e, __pow_E, __digits); in __read_float()