Searched refs:on_success (Results 1 – 4 of 4) sorted by relevance
/external/v8/src/ |
D | jsregexp.h | 746 explicit SeqRegExpNode(RegExpNode* on_success) in SeqRegExpNode() argument 747 : on_success_(on_success) { } in SeqRegExpNode() 748 RegExpNode* on_success() { return on_success_; } in on_success() function 766 static ActionNode* SetRegister(int reg, int val, RegExpNode* on_success); 767 static ActionNode* IncrementRegister(int reg, RegExpNode* on_success); 770 RegExpNode* on_success); 771 static ActionNode* ClearCaptures(Interval range, RegExpNode* on_success); 774 RegExpNode* on_success); 779 RegExpNode* on_success); 783 RegExpNode* on_success); [all …]
|
D | jsregexp.cc | 1252 RegExpNode* on_success) { in SetRegister() argument 1253 ActionNode* result = new ActionNode(SET_REGISTER, on_success); in SetRegister() 1260 ActionNode* ActionNode::IncrementRegister(int reg, RegExpNode* on_success) { in IncrementRegister() argument 1261 ActionNode* result = new ActionNode(INCREMENT_REGISTER, on_success); in IncrementRegister() 1269 RegExpNode* on_success) { in StorePosition() argument 1270 ActionNode* result = new ActionNode(STORE_POSITION, on_success); in StorePosition() 1278 RegExpNode* on_success) { in ClearCaptures() argument 1279 ActionNode* result = new ActionNode(CLEAR_CAPTURES, on_success); in ClearCaptures() 1288 RegExpNode* on_success) { in BeginSubmatch() argument 1289 ActionNode* result = new ActionNode(BEGIN_SUBMATCH, on_success); in BeginSubmatch() [all …]
|
D | ast.h | 2202 RegExpNode* on_success) = 0; 2226 RegExpNode* on_success); 2247 RegExpNode* on_success); 2276 RegExpNode* on_success); 2322 RegExpNode* on_success); 2359 RegExpNode* on_success); 2378 RegExpNode* on_success); 2413 RegExpNode* on_success); 2419 RegExpNode* on_success, 2449 RegExpNode* on_success); [all …]
|
/external/v8/src/x64/ |
D | code-stubs-x64.cc | 593 Label* on_success, 1949 Label* on_success, in NumbersToSmis() argument 1973 __ JumpIfSmi(second, (on_success != NULL) ? on_success : &done); in NumbersToSmis() 1990 if (on_success != NULL) { in NumbersToSmis() 1991 __ jmp(on_success); in NumbersToSmis()
|