Home | History | Annotate | Download | only in base

Lines Matching refs:char16

12 // string16. We also define char16, which string16 is based upon.
38 typedef wchar_t char16;
43 typedef uint16 char16;
47 // char16 versions of the functions required by string16_char_traits; these
50 BASE_API int c16memcmp(const char16* s1, const char16* s2, size_t n);
51 BASE_API size_t c16len(const char16* s);
52 BASE_API const char16* c16memchr(const char16* s, char16 c, size_t n);
53 BASE_API char16* c16memmove(char16* s1, const char16* s2, size_t n);
54 BASE_API char16* c16memcpy(char16* s1, const char16* s2, size_t n);
55 BASE_API char16* c16memset(char16* s, char16 c, size_t n);
62 typedef char16 char_type;
175 std::basic_string<char16, base::string16_char_traits>;
177 typedef std::basic_string<char16, base::string16_char_traits> string16;