Searched refs:__wb (Results 1 – 4 of 4) sorted by relevance
/external/libcxx/include/ |
D | __locale | 1196 operator()(_OutputIterator __s, const _CharT* __wb, const _CharT* __we) const; 1205 operator()(_OutputIterator __s, const _CharT* __wb, const _CharT* __we) const 1207 for (; __wb < __we; ++__wb, ++__s) 1208 *__s = *__wb; 1225 operator()(_OutputIterator __s, const _CharT* __wb, const _CharT* __we) const 1229 while (__wb < __we && __r != error) 1234 const char16_t* __wn = (const char16_t*)__wb; 1235 __r = do_out(__mb, (const char16_t*)__wb, (const char16_t*)__we, __wn, 1237 if (__r == codecvt_base::error || __wn == (const char16_t*)__wb) 1241 __wb = (const _CharT*)__wn; [all …]
|
D | ostream | 831 _CharT* __wb = __wbb; 835 __wb = (_CharT*)malloc(__len*sizeof(_CharT)); 836 if (__wb == 0) 838 __h.reset(__wb); 840 for (_CharT* __p = __wb; *__strn != '\0'; ++__strn, ++__p) 843 __wb, 845 __wb + __len : 846 __wb, 847 __wb + __len,
|
D | locale | 2394 void __do_put(wchar_t* __wb, wchar_t*& __we, const tm* __tm, 2748 unique_ptr<char_type, void(*)(void*)>& __wb, 2790 unique_ptr<char_type, void(*)(void*)>& __wb, 2812 __wn = __wb.get(); 2932 __double_or_nothing(__wb, __wn, __we); 2967 __double_or_nothing(__wb, __wn, __we); 2971 if (__wn == __wb.get()) 3013 unique_ptr<char_type, void(*)(void*)> __wb(__wbuf, __do_nothing); 3020 __wb, __wn, __we)) 3028 if (__wn - __wb.get() > __bz-2) [all …]
|
/external/libcxx/src/ |
D | locale.cpp | 5439 __time_put::__do_put(wchar_t* __wb, wchar_t*& __we, const tm* __tm, in __do_put() argument 5447 size_t j = __libcpp_mbsrtowcs_l(__wb, &__nb, countof(__wb, __we), &mb, __loc_); in __do_put() 5450 __we = __wb + j; in __do_put()
|