Lines Matching full:wchar_t
60 BASE_API int vswprintf(wchar_t* buffer, size_t size,
61 const wchar_t* format, va_list arguments)
80 inline int swprintf(wchar_t* buffer, size_t size, const wchar_t* format, ...)
82 inline int swprintf(wchar_t* buffer, size_t size, const wchar_t* format, ...) {
97 BASE_API size_t wcslcpy(wchar_t* dst, const wchar_t* src, size_t dst_size);
107 // data on all systems except Windows, which treat them as wchar_t data.
108 // Use %ls and %lc for wchar_t data instead.
109 // - 'S' and 'C', which operate on wchar_t data on all systems except Windows,
110 // which treat them as char data. Use %ls and %lc for wchar_t data
120 BASE_API bool IsWprintfFormatPortable(const wchar_t* format);
175 BASE_API extern const wchar_t kWhitespaceWide[];
185 const wchar_t remove_chars[],
197 const wchar_t trim_chars[],
344 BASE_API bool LowerCaseEqualsASCII(const wchar_t* a_begin,
345 const wchar_t* a_end,
413 inline bool IsWhitespace(wchar_t c) {
471 // a function that writes results into a wchar_t[] and wanting the result to
559 struct ToUnsigned<wchar_t> {