HomeSort by relevance Sort by last modified time
    Searched defs:on_success (Results 1 - 6 of 6) sorted by null

  /external/libbrillo/brillo/streams/
fake_stream_unittest.cc 286 auto on_success = [](int* success_count) { (*success_count)++; }; local
294 base::Bind(on_success, base::Unretained(&success_count)),
443 auto on_success = [](int* success_count) { (*success_count)++; }; local
451 base::Bind(on_success, base::Unretained(&success_count)),
  /external/grpc-grpc/src/python/grpcio/grpc/_cython/_cygrpc/
channel.pyx.pxi 149 on_success, deadline):
152 on_success(tag)
160 grpc_completion_queue *c_completion_queue, on_success, int flags, method,
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 in function:_integrated_call
268 state, call_state, state.c_call_completion_queue, on_success, flags,
302 def on_success(tag): function in function:SegregatedCall.next_event
306 self._channel_state, self._c_completion_queue, on_success, None)
316 def on_success(started_tags) function in function:_segregated_call
452 def on_success(tag): function in function:Channel.next_call_event
    [all...]
  /external/v8/src/compiler/
js-inlining.cc 156 Node* on_success = graph()->NewNode(common()->IfSuccess(), subcall); local
157 NodeProperties::ReplaceUses(subcall, subcall, subcall, on_success);
158 NodeProperties::ReplaceControlInput(on_success, subcall);
bytecode-graph-builder.cc 3449 Node* on_success = graph()->NewNode(if_success, result); local
    [all...]
  /external/v8/src/regexp/
jsregexp.h 591 explicit SeqRegExpNode(RegExpNode* on_success)
592 : RegExpNode(on_success->zone()), on_success_(on_success) { }
593 RegExpNode* on_success() { return on_success_; } function in class:v8::internal::SeqRegExpNode
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);
    [all...]
jsregexp.cc 5746 Builder builder(is_positive(), on_success, stack_pointer_register, local
    [all...]

Completed in 502 milliseconds