Home | History | Annotate | Download | only in url

Lines Matching refs:char16

80 void AppendStringOfType(const base::char16* source, int length,
124 char CanonicalSchemeChar(base::char16 ch);
139 extern const base::char16 kUnicodeReplacementCharacter;
226 URL_EXPORT bool ReadUTFChar(const base::char16* str, int* begin, int length,
231 CanonOutputT<base::char16>* output) {
233 output->push_back(static_cast<base::char16>((code_point >> 10) + 0xd7c0));
234 output->push_back(static_cast<base::char16>((code_point & 0x3ff) | 0xdc00));
236 output->push_back(static_cast<base::char16>(code_point));
261 inline bool AppendUTF8EscapedChar(const base::char16* str, int* begin,
296 inline bool Is8BitChar(base::char16 c) {
332 void AppendInvalidNarrowString(const base::char16* spec, int begin, int end,
345 URL_EXPORT bool ConvertUTF16ToUTF8(const base::char16* input, int input_len,
348 CanonOutputT<base::char16>* output);
352 void ConvertUTF16ToQueryEncoding(const base::char16* input,
388 const Replacements<base::char16>& repl,
399 bool CanonicalizePartialPath(const base::char16* spec,
409 URL_EXPORT int _itow_s(int value, base::char16* buffer, size_t size_in_chars,
419 inline int _itow_s(int value, base::char16 (&buffer)[N], int radix) {