Home
last modified time | relevance | path

Searched refs:__wb (Results 1 – 4 of 4) sorted by relevance

/external/libcxx/include/
D__locale1240 operator()(_OutputIterator __s, const _CharT* __wb, const _CharT* __we) const;
1249 operator()(_OutputIterator __s, const _CharT* __wb, const _CharT* __we) const
1251 for (; __wb < __we; ++__wb, ++__s)
1252 *__s = *__wb;
1269 operator()(_OutputIterator __s, const _CharT* __wb, const _CharT* __we) const
1273 while (__wb < __we && __r != error)
1278 const char16_t* __wn = (const char16_t*)__wb;
1279 __r = do_out(__mb, (const char16_t*)__wb, (const char16_t*)__we, __wn,
1281 if (__r == codecvt_base::error || __wn == (const char16_t*)__wb)
1285 __wb = (const _CharT*)__wn;
[all …]
Dostream830 _CharT* __wb = __wbb;
834 __wb = (_CharT*)malloc(__len*sizeof(_CharT));
835 if (__wb == 0)
837 __h.reset(__wb);
839 for (_CharT* __p = __wb; *__strn != '\0'; ++__strn, ++__p)
842 __wb,
844 __wb + __len :
845 __wb,
846 __wb + __len,
Dlocale2485 void __do_put(wchar_t* __wb, wchar_t*& __we, const tm* __tm,
2839 unique_ptr<char_type, void(*)(void*)>& __wb,
2881 unique_ptr<char_type, void(*)(void*)>& __wb,
2903 __wn = __wb.get();
3023 __double_or_nothing(__wb, __wn, __we);
3058 __double_or_nothing(__wb, __wn, __we);
3062 if (__wn == __wb.get())
3104 unique_ptr<char_type, void(*)(void*)> __wb(__wbuf, __do_nothing);
3111 __wb, __wn, __we))
3119 if (__wn - __wb.get() > __bz-2)
[all …]
/external/libcxx/src/
Dlocale.cpp5451 __time_put::__do_put(wchar_t* __wb, wchar_t*& __we, const tm* __tm, in __do_put() argument
5459 size_t j = __libcpp_mbsrtowcs_l(__wb, &__nb, countof(__wb, __we), &mb, __loc_); in __do_put()
5462 __we = __wb + j; in __do_put()