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.cc190 DCHECK_EQ(INITIAL, state->group_type()); in ParseDisjunction()
197 DCHECK_NE(INITIAL, state->group_type()); in ParseDisjunction()
207 SubexpressionType group_type = state->group_type(); in ParseDisjunction() local
210 if (group_type == CAPTURE) { in ParseDisjunction()
218 } else if (group_type != GROUPING) { in ParseDisjunction()
219 DCHECK(group_type == POSITIVE_LOOKAROUND || in ParseDisjunction()
220 group_type == NEGATIVE_LOOKAROUND); in ParseDisjunction()
221 bool is_positive = (group_type == POSITIVE_LOOKAROUND); in ParseDisjunction()
890 if (s->group_type() != CAPTURE) continue; in IsInsideCaptureGroup()
/external/boringssl/src/ssl/
Dhandshake_client.c1289 uint8_t group_type; in ssl3_get_server_key_exchange() local
1292 if (!CBS_get_u8(&server_key_exchange, &group_type) || in ssl3_get_server_key_exchange()
1293 group_type != NAMED_CURVE_TYPE || in ssl3_get_server_key_exchange()