Searched refs:group_type (Results 1 – 2 of 2) sorted by relevance
156 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() local176 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()
204 SubexpressionType group_type, in RegExpParserState() argument209 group_type_(group_type), in RegExpParserState()218 SubexpressionType group_type() { return group_type_; } in group_type() function