Home
last modified time | relevance | path

Searched refs:subexpr_type (Results 1 – 1 of 1) sorted by relevance

/external/v8/src/regexp/
Dregexp-parser.cc582 SubexpressionType subexpr_type = CAPTURE; in ParseOpenParenthesis() local
588 subexpr_type = GROUPING; in ParseOpenParenthesis()
593 subexpr_type = POSITIVE_LOOKAROUND; in ParseOpenParenthesis()
598 subexpr_type = NEGATIVE_LOOKAROUND; in ParseOpenParenthesis()
610 while (subexpr_type != GROUPING) { in ParseOpenParenthesis()
653 subexpr_type = GROUPING; // Will break us out of the outer loop. in ParseOpenParenthesis()
667 subexpr_type = POSITIVE_LOOKAROUND; in ParseOpenParenthesis()
672 subexpr_type = NEGATIVE_LOOKAROUND; in ParseOpenParenthesis()
684 if (subexpr_type == CAPTURE) { in ParseOpenParenthesis()
698 RegExpParserState(state, subexpr_type, lookaround_type, captures_started_, in ParseOpenParenthesis()