Lines Matching refs:ch
142 char CanonicalSchemeChar(char16 ch);
149 inline void AppendEscapedChar(UINCHAR ch,
152 output->push_back(kHexCharLookup[ch >> 4]);
153 output->push_back(kHexCharLookup[ch & 0xf]);
217 inline void AppendCharToOutput(unsigned char ch, CanonOutput* output) {
218 output->push_back(static_cast<char>(ch));
270 // We will append the character starting at ch[begin] with the buffer ch
281 // Assumes that ch[begin] is within range in the array, but does not assume
300 unsigned ch;
301 bool success = ReadUTFChar(str, begin, length, &ch);
302 AppendUTF8EscapedValue(ch, output);