Searched refs:on_success (Results 1 – 3 of 3) sorted by relevance
/external/v8/src/ |
D | jsregexp.h | 705 explicit SeqRegExpNode(RegExpNode* on_success) in SeqRegExpNode() argument 706 : on_success_(on_success) { } in SeqRegExpNode() 707 RegExpNode* on_success() { return on_success_; } in on_success() function 725 static ActionNode* SetRegister(int reg, int val, RegExpNode* on_success); 726 static ActionNode* IncrementRegister(int reg, RegExpNode* on_success); 729 RegExpNode* on_success); 730 static ActionNode* ClearCaptures(Interval range, RegExpNode* on_success); 733 RegExpNode* on_success); 738 RegExpNode* on_success); 742 RegExpNode* on_success); [all …]
|
D | jsregexp.cc | 1116 RegExpNode* on_success) { in SetRegister() argument 1117 ActionNode* result = new ActionNode(SET_REGISTER, on_success); in SetRegister() 1124 ActionNode* ActionNode::IncrementRegister(int reg, RegExpNode* on_success) { in IncrementRegister() argument 1125 ActionNode* result = new ActionNode(INCREMENT_REGISTER, on_success); in IncrementRegister() 1133 RegExpNode* on_success) { in StorePosition() argument 1134 ActionNode* result = new ActionNode(STORE_POSITION, on_success); in StorePosition() 1142 RegExpNode* on_success) { in ClearCaptures() argument 1143 ActionNode* result = new ActionNode(CLEAR_CAPTURES, on_success); in ClearCaptures() 1152 RegExpNode* on_success) { in BeginSubmatch() argument 1153 ActionNode* result = new ActionNode(BEGIN_SUBMATCH, on_success); in BeginSubmatch() [all …]
|
D | ast.h | 1485 RegExpNode* on_success) = 0; 1508 RegExpNode* on_success); 1528 RegExpNode* on_success); 1556 RegExpNode* on_success); 1601 RegExpNode* on_success); 1637 RegExpNode* on_success); 1656 RegExpNode* on_success); 1691 RegExpNode* on_success); 1697 RegExpNode* on_success, 1726 RegExpNode* on_success); [all …]
|