Searched refs:ActionNode (Results 1 – 2 of 2) sorted by relevance
/external/v8/src/regexp/ |
D | jsregexp.h | 610 class ActionNode: public SeqRegExpNode { 621 static ActionNode* SetRegister(int reg, int val, RegExpNode* on_success); 622 static ActionNode* IncrementRegister(int reg, RegExpNode* on_success); 623 static ActionNode* StorePosition(int reg, 626 static ActionNode* ClearCaptures(Interval range, RegExpNode* on_success); 627 static ActionNode* BeginSubmatch(int stack_pointer_reg, 630 static ActionNode* PositiveSubmatchSuccess(int stack_pointer_reg, 635 static ActionNode* EmptyMatchCheck(int start_register, 684 ActionNode(ActionType action_type, RegExpNode* on_success) in ActionNode() function 1236 DeferredAction(ActionNode::ActionType action_type, int reg) in DeferredAction() [all …]
|
D | jsregexp.cc | 1101 if (action_type() == ActionNode::CLEAR_CAPTURES) { in Mentions() 1125 if (action->action_type() == ActionNode::STORE_POSITION) { in GetStoredPosition() 1142 if (action->action_type() == ActionNode::CLEAR_CAPTURES) { in FindAffectedRegisters() 1208 case ActionNode::SET_REGISTER: { in PerformDeferredActions() 1225 case ActionNode::INCREMENT_REGISTER: in PerformDeferredActions() 1233 case ActionNode::STORE_POSITION: { in PerformDeferredActions() 1256 case ActionNode::CLEAR_CAPTURES: { in PerformDeferredActions() 1430 ActionNode* ActionNode::SetRegister(int reg, in SetRegister() 1433 ActionNode* result = in SetRegister() 1434 new(on_success->zone()) ActionNode(SET_REGISTER, on_success); in SetRegister() [all …]
|