Home
last modified time | relevance | path

Searched refs:on_success (Results 1 – 8 of 8) sorted by relevance

/external/v8/src/regexp/
Djsregexp.h591 explicit SeqRegExpNode(RegExpNode* on_success) in SeqRegExpNode() argument
592 : RegExpNode(on_success->zone()), on_success_(on_success) { } in SeqRegExpNode()
593 RegExpNode* on_success() { return on_success_; } in on_success() function
621 static ActionNode* SetRegister(int reg, int val, RegExpNode* on_success);
622 static ActionNode* IncrementRegister(int reg, RegExpNode* on_success);
625 RegExpNode* on_success);
626 static ActionNode* ClearCaptures(Interval range, RegExpNode* on_success);
629 RegExpNode* on_success);
634 RegExpNode* on_success);
638 RegExpNode* on_success);
[all …]
Djsregexp.cc1432 RegExpNode* on_success) { in SetRegister() argument
1434 new(on_success->zone()) ActionNode(SET_REGISTER, on_success); in SetRegister()
1441 ActionNode* ActionNode::IncrementRegister(int reg, RegExpNode* on_success) { in IncrementRegister() argument
1443 new(on_success->zone()) ActionNode(INCREMENT_REGISTER, on_success); in IncrementRegister()
1451 RegExpNode* on_success) { in StorePosition() argument
1453 new(on_success->zone()) ActionNode(STORE_POSITION, on_success); in StorePosition()
1461 RegExpNode* on_success) { in ClearCaptures() argument
1463 new(on_success->zone()) ActionNode(CLEAR_CAPTURES, on_success); in ClearCaptures()
1472 RegExpNode* on_success) { in BeginSubmatch() argument
1474 new(on_success->zone()) ActionNode(BEGIN_SUBMATCH, on_success); in BeginSubmatch()
[all …]
Dregexp-ast.h204 RegExpNode* on_success) = 0;
227 RegExpNode* ToNode(RegExpCompiler* compiler, RegExpNode* on_success) override;
251 RegExpNode* ToNode(RegExpCompiler* compiler, RegExpNode* on_success) override;
281 RegExpNode* ToNode(RegExpCompiler* compiler, RegExpNode* on_success) override;
325 RegExpNode* ToNode(RegExpCompiler* compiler, RegExpNode* on_success) override;
370 RegExpNode* ToNode(RegExpCompiler* compiler, RegExpNode* on_success) override;
392 RegExpNode* ToNode(RegExpCompiler* compiler, RegExpNode* on_success) override;
427 RegExpNode* ToNode(RegExpCompiler* compiler, RegExpNode* on_success) override;
429 RegExpCompiler* compiler, RegExpNode* on_success,
458 RegExpNode* ToNode(RegExpCompiler* compiler, RegExpNode* on_success) override;
[all …]
/external/grpc-grpc/src/python/grpcio/grpc/_cython/_cygrpc/
Dchannel.pyx.pxi149 on_success, deadline): argument
152 on_success(tag)
160 grpc_completion_queue *c_completion_queue, on_success, int flags, method, argument
173 on_success: A behavior to be called if attempting to start operations for
232 on_success(started_tags)
263 def on_success(started_tags): function
268 state, call_state, state.c_call_completion_queue, on_success, flags,
302 def on_success(tag): function
306 self._channel_state, self._c_completion_queue, on_success, None)
316 def on_success(started_tags): function
[all …]
/external/libbrillo/brillo/streams/
Dfake_stream_unittest.cc286 auto on_success = [](int* success_count) { (*success_count)++; }; in TEST_F() local
294 base::Bind(on_success, base::Unretained(&success_count)), in TEST_F()
443 auto on_success = [](int* success_count) { (*success_count)++; }; in TEST_F() local
451 base::Bind(on_success, base::Unretained(&success_count)), in TEST_F()
/external/v8/src/compiler/
Djs-inlining.cc156 Node* on_success = graph()->NewNode(common()->IfSuccess(), subcall); in InlineCall() local
157 NodeProperties::ReplaceUses(subcall, subcall, subcall, on_success); in InlineCall()
158 NodeProperties::ReplaceControlInput(on_success, subcall); in InlineCall()
Dbytecode-graph-builder.cc3449 Node* on_success = graph()->NewNode(if_success, result); in MakeNode() local
3450 environment()->UpdateControlDependency(on_success); in MakeNode()
/external/python/cpython3/Doc/library/
Dtyping.rst164 def async_query(on_success: Callable[[int], None],