HomeSort by relevance Sort by last modified time
    Searched defs:Bind (Results 1 - 25 of 128) sorted by null

1 2 3 4 5 6

  /external/guice/extensions/testlib/src/com/google/inject/testing/fieldbinder/
Bind.java 34 public @interface Bind {
36 * If specified, {@link BoundFieldModule} will bind the annotated field's value to this type,
39 Class<?> to() default Bind.class;
  /external/libchrome/base/
bind.h 27 // Bind as OnceCallback.
49 // Bind as RepeatingCallback.
71 // Unannotated Bind.
76 Bind(Functor&& functor, Args&&... args) {
  /external/v8/src/interpreter/
bytecode-label.cc 20 void BytecodeLabels::Bind(BytecodeArrayBuilder* builder) {
22 builder->Bind(&label);
29 builder->Bind(target, &label);
  /external/v8/tools/clang/base_bind_rewriters/tests/
test-expected.cc 14 void Bind(Functor&&, Args&&...) {}
24 using base::Bind;
26 base::Bind(&Foo::Bar, foo);
27 Bind(&Foo::Bar, foo);
28 base::Bind(&Foo::Bar, (&foo));
29 base::Bind(&Foo::Bar, foo);
30 base::Bind(&Foo::Bar, foo);
31 base::Bind(&Foo::Bar, foo, foo.get());
32 base::Bind(&Foo::Baz, foo.get());
33 base::Bind(&Foo::Bar, foo)
    [all...]
test-original.cc 14 void Bind(Functor&&, Args&&...) {}
24 using base::Bind;
26 base::Bind(&Foo::Bar, foo.get());
27 Bind(&Foo::Bar, foo.get());
28 base::Bind(&Foo::Bar, (&foo)->get());
29 base::Bind(&Foo::Bar, foo.get(
31 base::Bind(&Foo::Bar, foo
33 base::Bind(&Foo::Bar, foo.get(), foo.get());
34 base::Bind(&Foo::Baz, foo.get());
35 base::Bind(&Foo::Bar, foo.scoped_refptr<int>::get())
    [all...]
  /external/perfetto/include/perfetto/ipc/
deferred.h 33 // - The client wants to see something on which it can Bind() a callback, which
49 // reply.Bind([] (AsyncResult<HelloReply> reply) {
80 void Bind(std::function<void(AsyncResult<ProtoMessage>)> callback);
97 Bind(std::move(callback));
108 void Bind(std::function<void(AsyncResult<T>)> callback) {
124 DeferredBase::Bind(callback_adapter);
  /external/chromium-trace/catapult/common/py_vulcanize/py_vulcanize/
fake_fs.py 38 self.Bind()
44 def Bind(self):
  /external/libmojo/mojo/public/cpp/bindings/
associated_binding.h 12 #include "base/bind.h"
33 // particular for Bind().
84 // When you bind this class to a request, optionally you can specify a
99 // |Bind| method. Does not take ownership of |impl|, which must outlive this
110 Bind(ptr_info, std::move(runner));
120 Bind(std::move(request), std::move(runner));
128 void Bind(AssociatedInterfacePtrInfo<Interface>* ptr_info,
133 Bind(std::move(request), std::move(runner));
137 void Bind(AssociatedInterfaceRequest<Interface> request,
153 request.Bind(endpoint_client_->PassHandle())
    [all...]
associated_interface_request.h 49 void Bind(ScopedInterfaceEndpointHandle handle) {
84 request.Bind(std::move(handle));
interface_request.h 24 // remove the message pipe by calling PassMessagePipe() and bind it to the
44 ptr->Bind(InterfacePtrInfo<Interface>(std::move(pipe.handle0), 0u),
46 Bind(std::move(pipe.handle1));
68 void Bind(ScopedMessagePipeHandle handle) { handle_ = std::move(handle); }
111 request.Bind(std::move(handle));
binding.h 62 // When you bind this class to a message pipe, optionally you can specify a
76 // The binding may be completed with a subsequent call to the |Bind| method.
87 Bind(std::move(handle), std::move(runner));
100 Bind(ptr, std::move(runner));
111 Bind(request.PassMessagePipe(), std::move(runner));
124 Bind(&interface_ptr, std::move(runner));
131 void Bind(ScopedMessagePipeHandle handle,
134 internal_state_.Bind(std::move(handle), std::move(runner));
142 void Bind(InterfacePtr<Interface>* ptr,
146 ptr->Bind(InterfacePtrInfo<Interface>(std::move(pipe.handle0)
    [all...]
interface_ptr.h 35 // thread, and create and bind a new InterfacePtr from that thread. If an
81 void Bind(InterfacePtrInfo<Interface> info,
86 internal_state_.Bind(std::move(info), std::move(runner));
236 ptr.Bind(std::move(info), std::move(runner));
thread_safe_interface_ptr.h 72 base::Bind(forward_, base::Passed(message)));
87 FROM_HERE, base::Bind(forward_with_responder_, base::Passed(message),
105 base::Bind(&ForwardToCallingThread::CallAcceptAndDeleteResponder,
193 task_runner_->PostTask(FROM_HERE, base::Bind(&PtrWrapper::Bind, this,
201 // this, we need to create a MultiplexRouter immediately and bind it to
205 task_runner_->PostTask(FROM_HERE, base::Bind(&PtrWrapper::Bind, this,
211 task_runner_, base::Bind(&PtrWrapper::Accept, this),
212 base::Bind(&PtrWrapper::AcceptWithResponder, this)
    [all...]
  /external/perfetto/src/ipc/
deferred.cc 36 // bind state around, which is undesirable.
53 void DeferredBase::Bind(
  /device/linaro/bootloader/edk2/SecurityPkg/Library/Tpm2CommandLib/
Tpm2Session.c 27 TPMI_DH_ENTITY Bind;
48 @param[in] Bind Entity providing the authValue.
64 IN TPMI_DH_ENTITY Bind,
88 SendBuffer.Bind = SwapBytes32 (Bind);
  /external/libmojo/mojo/public/cpp/bindings/lib/
associated_interface_ptr_state.h 15 #include "base/bind.h"
53 base::Bind(&AssociatedInterfacePtrState::OnQueryVersion,
78 void Bind(AssociatedInterfacePtrInfo<Interface> info,
binding_state.h 12 #include "base/bind.h"
100 void Bind(ScopedMessagePipeHandle handle,
interface_ptr_state.h 15 #include "base/bind.h"
61 endpoint_client_->QueryVersion(base::Bind(
95 void Bind(InterfacePtrInfo<Interface> info,
214 // between the Bind() call and the initialization of |router_|.
  /external/webrtc/webrtc/test/channel_transport/
udp_socket_posix.cc 138 bool UdpSocketPosix::Bind(const SocketAddress& name)
141 if (0 == bind(_socket, reinterpret_cast<const sockaddr*>(&name),size))
146 "UdpSocketPosix::Bind() error: %d", errno);
  /external/webrtc/webrtc/base/
asyncsocket.cc 49 int AsyncSocketAdapter::Bind(const SocketAddress& addr) {
50 return socket_->Bind(addr);
  /system/bt/btif/avrcp/
avrcp_service.cc 19 #include <base/bind.h>
138 do_in_avrcp_jni(base::Bind(&MediaInterface::SendKeyEvent,
144 do_in_bta_thread(FROM_HERE, base::Bind(cb, data));
147 auto bound_cb = base::Bind(cb_lambda, info_cb);
149 do_in_avrcp_jni(base::Bind(&MediaInterface::GetSongInfo,
155 do_in_bta_thread(FROM_HERE, base::Bind(cb, status));
158 auto bound_cb = base::Bind(cb_lambda, status_cb);
160 do_in_avrcp_jni(base::Bind(&MediaInterface::GetPlayStatus,
168 base::Bind(cb, curr_media_id, std::move(song_list)));
171 auto bound_cb = base::Bind(cb_lambda, now_playing_cb)
    [all...]
  /art/compiler/utils/arm/
jni_macro_assembler_arm_vixl.cc 663 void ArmVIXLJNIMacroAssembler::Bind(JNIMacroLabel* label) {
665 ___ Bind(ArmVIXLJNIMacroLabel::Cast(label)->AsArm());
670 ___ Bind(exception->Entry());
  /art/compiler/utils/x86/
jni_macro_assembler_x86.cc 441 __ Bind(&null_arg);
459 __ Bind(&null_arg);
480 __ Bind(&null_arg);
564 void X86JNIMacroAssembler::Bind(JNIMacroLabel* label) {
566 __ Bind(X86JNIMacroLabel::Cast(label)->AsX86());
574 __ Bind(&entry_);
  /art/compiler/utils/x86_64/
jni_macro_assembler_x86_64.cc 498 __ Bind(&null_arg);
516 __ Bind(&null_arg);
537 __ Bind(&null_arg);
627 void X86_64JNIMacroAssembler::Bind(JNIMacroLabel* label) {
629 __ Bind(X86_64JNIMacroLabel::Cast(label)->AsX86_64());
637 __ Bind(&entry_);
  /external/clang/test/Parser/
DelayedTemplateParsing.cpp 89 Callback Bind() {

Completed in 461 milliseconds

1 2 3 4 5 6