Home
last modified time | relevance | path

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

/external/chromium_org/v8/src/
Dparser.cc4849 RegExpParserState* stored_state = &initial_state; in ParseDisjunction() local
4855 if (stored_state->IsSubexpression()) { in ParseDisjunction()
4859 ASSERT_EQ(INITIAL, stored_state->group_type()); in ParseDisjunction()
4863 if (!stored_state->IsSubexpression()) { in ParseDisjunction()
4866 ASSERT_NE(INITIAL, stored_state->group_type()); in ParseDisjunction()
4875 int capture_index = stored_state->capture_index(); in ParseDisjunction()
4876 SubexpressionType group_type = stored_state->group_type(); in ParseDisjunction()
4879 stored_state = stored_state->previous_state(); in ParseDisjunction()
4880 builder = stored_state->builder(); in ParseDisjunction()
4969 stored_state = new(zone()) RegExpParserState(stored_state, subexpr_type, in ParseDisjunction()
[all …]
/external/v8/src/
Dparser.cc5123 RegExpParserState* stored_state = &initial_state; in ParseDisjunction() local
5129 if (stored_state->IsSubexpression()) { in ParseDisjunction()
5133 ASSERT_EQ(INITIAL, stored_state->group_type()); in ParseDisjunction()
5137 if (!stored_state->IsSubexpression()) { in ParseDisjunction()
5140 ASSERT_NE(INITIAL, stored_state->group_type()); in ParseDisjunction()
5149 int capture_index = stored_state->capture_index(); in ParseDisjunction()
5150 SubexpressionType type = stored_state->group_type(); in ParseDisjunction()
5153 stored_state = stored_state->previous_state(); in ParseDisjunction()
5154 builder = stored_state->builder(); in ParseDisjunction()
5242 stored_state = new(zone()) RegExpParserState(stored_state, in ParseDisjunction()
[all …]