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

1 2 3 4

  /external/libchrome/base/
bind.h 28 inline base::Callback<MakeUnboundRunType<Functor, Args...>> Bind(
  /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/v8/src/interpreter/
bytecode-label.cc 19 void BytecodeLabels::Bind(BytecodeArrayBuilder* builder) {
21 builder->Bind(&label);
28 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/libmojo/mojo/public/cpp/bindings/
associated_interface_request.h 48 void Bind(ScopedInterfaceEndpointHandle handle) {
79 request.Bind(std::move(handle));
interface_request.h 19 // remove the message pipe by calling PassMessagePipe() and bind it to the
50 void Bind(ScopedMessagePipeHandle handle) { handle_ = std::move(handle); }
79 request.Bind(std::move(handle));
132 ptr->Bind(InterfacePtrInfo<Interface>(std::move(pipe.handle0), 0u),
strong_binding.h 10 #include "base/bind.h"
58 Bind(std::move(handle));
63 Bind(ptr);
68 Bind(std::move(request));
73 void Bind(ScopedMessagePipeHandle handle) {
75 binding_.Bind(std::move(handle));
77 base::Bind(&StrongBinding::OnConnectionError, base::Unretained(this)));
80 void Bind(InterfacePtr<Interface>* ptr) {
82 binding_.Bind(ptr);
84 base::Bind(&StrongBinding::OnConnectionError, base::Unretained(this)))
    [all...]
associated_binding.h 11 #include "base/bind.h"
29 // When you bind this class to a request, optionally you can specify a
41 // |Bind| method. Does not take ownership of |impl|, which must outlive this
57 Bind(ptr_info, associated_group, std::move(runner));
67 Bind(std::move(request), std::move(runner));
76 void Bind(AssociatedInterfacePtrInfo<Interface>* ptr_info,
83 Bind(std::move(request), std::move(runner));
87 void Bind(AssociatedInterfaceRequest<Interface> request,
106 base::Bind(&AssociatedBinding::RunConnectionErrorHandler,
128 request.Bind(endpoint_client_->PassHandle())
    [all...]
binding.h 59 // When you bind this class to a message pipe, optionally you can specify a
70 // The binding may be completed with a subsequent call to the |Bind| method.
81 Bind(std::move(handle), std::move(runner));
94 Bind(ptr, std::move(runner));
105 Bind(request.PassMessagePipe(), std::move(runner));
118 Bind(&interface_ptr, std::move(runner));
125 void Bind(ScopedMessagePipeHandle handle,
128 internal_state_.Bind(std::move(handle), std::move(runner));
136 void Bind(InterfacePtr<Interface>* ptr,
140 ptr->Bind(InterfacePtrInfo<Interface>(std::move(pipe.handle0)
    [all...]
associated_interface_ptr.h 64 void Bind(AssociatedInterfacePtrInfo<Interface> info,
75 internal_state_.Bind(std::move(info), std::move(runner));
202 ptr->Bind(std::move(ptr_info), std::move(runner));
interface_ptr.h 34 // thread, and create and bind a new InterfacePtr from that thread. If an
77 void Bind(InterfacePtrInfo<Interface> info,
82 internal_state_.Bind(std::move(info), std::move(runner));
226 ptr.Bind(std::move(info), std::move(runner));
  /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 14 #include "base/bind.h"
59 ->QueryVersion(base::Bind(&AssociatedInterfacePtrState::OnQueryVersion,
80 void Bind(AssociatedInterfacePtrInfo<Interface> info,
binding_state.h 11 #include "base/bind.h"
50 void Bind(ScopedMessagePipeHandle handle,
62 base::Bind(&BindingState::RunConnectionErrorHandler,
151 void Bind(ScopedMessagePipeHandle handle,
165 base::Bind(&BindingState::RunConnectionErrorHandler,
interface_ptr_state.h 14 #include "base/bind.h"
71 base::Bind(&InterfacePtrState::OnQueryVersion, base::Unretained(this),
96 void Bind(InterfacePtrInfo<Interface> info,
176 // message pipe handle is needed. |handle_| is valid between the Bind() call
217 base::Bind(&InterfacePtrState::OnQueryVersion, base::Unretained(this),
243 void Bind(InterfacePtrInfo<Interface> info,
336 // 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);
  /art/compiler/utils/arm/
jni_macro_assembler_arm_vixl.cc 633 void ArmVIXLJNIMacroAssembler::Bind(JNIMacroLabel* label) {
635 ___ Bind(ArmVIXLJNIMacroLabel::Cast(label)->AsArm());
640 ___ Bind(exception->Entry());
  /art/compiler/utils/x86/
jni_macro_assembler_x86.cc 440 __ Bind(&null_arg);
458 __ Bind(&null_arg);
479 __ Bind(&null_arg);
563 void X86JNIMacroAssembler::Bind(JNIMacroLabel* label) {
565 __ Bind(X86JNIMacroLabel::Cast(label)->AsX86());
573 __ Bind(&entry_);
  /art/compiler/utils/x86_64/
jni_macro_assembler_x86_64.cc 497 __ Bind(&null_arg);
515 __ Bind(&null_arg);
536 __ Bind(&null_arg);
625 void X86_64JNIMacroAssembler::Bind(JNIMacroLabel* label) {
627 __ Bind(X86_64JNIMacroLabel::Cast(label)->AsX86_64());
635 __ Bind(&entry_);
  /external/clang/test/Parser/
DelayedTemplateParsing.cpp 89 Callback Bind() {
  /external/deqp/modules/glshared/
glsAttributeLocationTests.hpp 116 class Bind
119 Bind (const std::string& attribute, deUint32 location);
131 // Simple bind attribute test
150 // Bind maximum number of attributes
  /external/libmojo/mojo/edk/js/tests/
js_to_cpp_tests.cc 221 void Bind(InterfaceRequest<js_to_cpp::CppSide> request) {
222 binding_.Bind(std::move(request));
390 cpp_side->Bind(GetProxy(&cpp_side_ptr));
  /external/v8/src/compiler/
liveness-analyzer.h 93 void Bind(int var) { entries_.push_back(Entry(Entry::kBind, var)); }

Completed in 533 milliseconds

1 2 3 4