Lines Matching refs:next
230 bool TryParseCharacterClassEscape(base::uc32 next,
743 base::uc32 next = Next();
749 next, InClassEscapeState::kNotInClass, ranges, zone(),
759 builder->AddCharacter(next); // IdentityEscape.
1075 // Due to special Advance requirements (see the next comment), rewind by one
1138 // This final advance goes back into the state of pointing at the next
1303 int next = current() - '0';
1304 if (min > (RegExpTree::kInfinity - next) / 10) {
1312 min = 10 * min + next;
1326 int next = current() - '0';
1327 if (max > (RegExpTree::kInfinity - next) / 10) {
1334 max = 10 * max + next;
1893 const base::uc32 next = Next();
1894 switch (next) {
1901 *char_out = next;
1916 next, kInClassEscape, ranges, zone, add_unicode_case_equivalents);
1926 base::uc32 next, InClassEscapeState in_class_escape_state,
1930 DCHECK_EQ(Next(), next);
1932 switch (next) {
1939 CharacterRange::AddClassEscape(static_cast<StandardCharacterSet>(next),
1947 bool negate = next == 'P';