Home
last modified time | relevance | path

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

/external/libcxx/include/
D__locale1192 operator()(_OutputIterator __s, const _CharT* __wb, const _CharT* __we) const;
1201 operator()(_OutputIterator __s, const _CharT* __wb, const _CharT* __we) const
1203 for (; __wb < __we; ++__wb, ++__s)
1204 *__s = *__wb;
1221 operator()(_OutputIterator __s, const _CharT* __wb, const _CharT* __we) const
1225 while (__wb < __we && __r != error)
1230 const char16_t* __wn = (const char16_t*)__wb;
1231 __r = do_out(__mb, (const char16_t*)__wb, (const char16_t*)__we, __wn,
1233 if (__r == codecvt_base::error || __wn == (const char16_t*)__wb)
1237 __wb = (const _CharT*)__wn;
[all …]
Dostream859 _CharT* __wb = __wbb;
863 __wb = (_CharT*)malloc(__len*sizeof(_CharT));
864 if (__wb == 0)
866 __h.reset(__wb);
868 for (_CharT* __p = __wb; *__strn != '\0'; ++__strn, ++__p)
871 __wb,
873 __wb + __len :
874 __wb,
875 __wb + __len,
Dlocale2599 void __do_put(wchar_t* __wb, wchar_t*& __we, const tm* __tm,
2953 unique_ptr<char_type, void(*)(void*)>& __wb,
2995 unique_ptr<char_type, void(*)(void*)>& __wb,
3017 __wn = __wb.get();
3137 __double_or_nothing(__wb, __wn, __we);
3172 __double_or_nothing(__wb, __wn, __we);
3176 if (__wn == __wb.get())
3218 unique_ptr<char_type, void(*)(void*)> __wb(__wbuf, __do_nothing);
3225 __wb, __wn, __we))
3233 if (__wn - __wb.get() > __bz-2)
[all …]
/external/libcxx/src/
Dlocale.cpp5507 __time_put::__do_put(wchar_t* __wb, wchar_t*& __we, const tm* __tm, in __do_put() argument
5516 size_t j = mbsrtowcs_l(__wb, &__nb, countof(__wb, __we), &mb, __loc_); in __do_put()
5518 size_t j = __mbsrtowcs_l(__wb, &__nb, countof(__wb, __we), &mb, __loc_); in __do_put()
5522 __we = __wb + j; in __do_put()