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

/external/chromium_org/v8/src/
H A Dparser.h282 SubexpressionType group_type,
287 group_type_(group_type),
295 SubexpressionType group_type() { return group_type_; } function in class:v8::internal::BASE_EMBEDDED::RegExpParserState
297 // Also the capture index of this sub-expression itself, if group_type
281 RegExpParserState(RegExpParserState* previous_state, SubexpressionType group_type, int disjunction_capture_index, Zone* zone) argument
H A Dparser.cc4180 DCHECK_EQ(INITIAL, stored_state->group_type());
4187 DCHECK_NE(INITIAL, stored_state->group_type());
4197 SubexpressionType group_type = stored_state->group_type(); local
4204 if (group_type == CAPTURE) {
4208 } else if (group_type != GROUPING) {
4209 DCHECK(group_type == POSITIVE_LOOKAHEAD ||
4210 group_type == NEGATIVE_LOOKAHEAD);
4211 bool is_positive = (group_type == POSITIVE_LOOKAHEAD);

Completed in 69 milliseconds