Home | History | Annotate | Download | only in base

Lines Matching refs:first_byte

153     unsigned char first_byte;
154 if (UnescapeUnsignedCharAtIndex(escaped_text, i, &first_byte)) {
178 if ((first_byte == 0xD8) &&
187 if ((first_byte == 0xE2) &&
202 if (first_byte >= 0x80 || // Unescape all high-bit characters.
204 (kUrlUnescape[first_byte] ||
206 (first_byte == ' ' && (rules & UnescapeRule::SPACES)) ||
209 (first_byte > ' ' && (rules & UnescapeRule::URL_SPECIAL_CHARS)) ||
211 (first_byte < ' ' && (rules & UnescapeRule::CONTROL_CHARS)))) {
215 result.push_back(first_byte);