Searched refs:__wb (Results 1 – 4 of 4) sorted by relevance
/external/libcxx/include/ |
D | __locale | 1188 operator()(_OutputIterator __s, const _CharT* __wb, const _CharT* __we) const; 1197 operator()(_OutputIterator __s, const _CharT* __wb, const _CharT* __we) const 1199 for (; __wb < __we; ++__wb, ++__s) 1200 *__s = *__wb; 1217 operator()(_OutputIterator __s, const _CharT* __wb, const _CharT* __we) const 1221 while (__wb < __we && __r != error) 1226 const char16_t* __wn = (const char16_t*)__wb; 1227 __r = do_out(__mb, (const char16_t*)__wb, (const char16_t*)__we, __wn, 1229 if (__r == codecvt_base::error || __wn == (const char16_t*)__wb) 1233 __wb = (const _CharT*)__wn; [all …]
|
D | ostream | 859 _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,
|
D | locale | 2600 void __do_put(wchar_t* __wb, wchar_t*& __we, const tm* __tm, 2954 unique_ptr<char_type, void(*)(void*)>& __wb, 2996 unique_ptr<char_type, void(*)(void*)>& __wb, 3018 __wn = __wb.get(); 3138 __double_or_nothing(__wb, __wn, __we); 3173 __double_or_nothing(__wb, __wn, __we); 3177 if (__wn == __wb.get()) 3219 unique_ptr<char_type, void(*)(void*)> __wb(__wbuf, __do_nothing); 3226 __wb, __wn, __we)) 3234 if (__wn - __wb.get() > __bz-2) [all …]
|
/external/libcxx/src/ |
D | locale.cpp | 5493 __time_put::__do_put(wchar_t* __wb, wchar_t*& __we, const tm* __tm, in __do_put() argument 5502 size_t j = mbsrtowcs_l(__wb, &__nb, countof(__wb, __we), &mb, __loc_); in __do_put() 5504 size_t j = __mbsrtowcs_l(__wb, &__nb, countof(__wb, __we), &mb, __loc_); in __do_put() 5508 __we = __wb + j; in __do_put()
|