Home
last modified time | relevance | path

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

/external/v8/src/regexp/
Dregexp-parser.h223 SubexpressionType group_type, in RegExpParserState() argument
230 group_type_(group_type), in RegExpParserState()
240 SubexpressionType group_type() { return group_type_; } in group_type() function
Dregexp-parser.cc191 DCHECK_EQ(INITIAL, state->group_type()); in ParseDisjunction()
198 DCHECK_NE(INITIAL, state->group_type()); in ParseDisjunction()
208 SubexpressionType group_type = state->group_type(); in ParseDisjunction() local
211 if (group_type == CAPTURE) { in ParseDisjunction()
219 } else if (group_type == GROUPING) { in ParseDisjunction()
222 DCHECK(group_type == POSITIVE_LOOKAROUND || in ParseDisjunction()
223 group_type == NEGATIVE_LOOKAROUND); in ParseDisjunction()
224 bool is_positive = (group_type == POSITIVE_LOOKAROUND); in ParseDisjunction()
893 if (s->group_type() != CAPTURE) continue; in IsInsideCaptureGroup()
/external/boringssl/src/ssl/
Dhandshake_client.cc1307 uint8_t group_type; in ssl3_get_server_key_exchange() local
1310 if (!CBS_get_u8(&server_key_exchange, &group_type) || in ssl3_get_server_key_exchange()
1311 group_type != NAMED_CURVE_TYPE || in ssl3_get_server_key_exchange()