Lines Matching refs:ch
124 char CanonicalSchemeChar(base::char16 ch);
131 inline void AppendEscapedChar(UINCHAR ch,
134 output->push_back(kHexCharLookup[(ch >> 4) & 0xf]);
135 output->push_back(kHexCharLookup[ch & 0xf]);
199 inline void AppendCharToOutput(unsigned char ch, CanonOutput* output) {
200 output->push_back(static_cast<char>(ch));
252 // We will append the character starting at ch[begin] with the buffer ch
263 // Assumes that ch[begin] is within range in the array, but does not assume
282 unsigned ch;
283 bool success = ReadUTFChar(str, begin, length, &ch);
284 AppendUTF8EscapedValue(ch, output);