Home
last modified time | relevance | path

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

/external/v8/src/regexp/
Dregexp-parser.cc156 DCHECK_EQ(INITIAL, state->group_type()); in ParseDisjunction()
163 DCHECK_NE(INITIAL, state->group_type()); in ParseDisjunction()
173 SubexpressionType group_type = state->group_type(); in ParseDisjunction() local
176 if (group_type == CAPTURE) { in ParseDisjunction()
180 } else if (group_type != GROUPING) { in ParseDisjunction()
181 DCHECK(group_type == POSITIVE_LOOKAROUND || in ParseDisjunction()
182 group_type == NEGATIVE_LOOKAROUND); in ParseDisjunction()
183 bool is_positive = (group_type == POSITIVE_LOOKAROUND); in ParseDisjunction()
631 if (s->group_type() != CAPTURE) continue; in IsInsideCaptureGroup()
Dregexp-parser.h204 SubexpressionType group_type, in RegExpParserState() argument
209 group_type_(group_type), in RegExpParserState()
218 SubexpressionType group_type() { return group_type_; } in group_type() function