Searched defs:Bind (Results 1 - 25 of 68) sorted by relevance

123

/external/guice/extensions/testlib/src/com/google/inject/testing/fieldbinder/
H A DBind.java34 public @interface Bind { interface
39 Class<?> to() default Bind.class;
/external/libchrome/base/
H A Dbind.h28 inline base::Callback<MakeUnboundRunType<Functor, Args...>> Bind( function in namespace:base
/external/v8/tools/clang/base_bind_rewriters/tests/
H A Dtest-expected.cc14 void Bind(Functor&&, Args&&...) {} function in namespace:base
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(
[all...]
H A Dtest-original.cc14 void Bind(Functor&&, Args&&...) {} function in namespace:base
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(
[all...]
/external/v8/src/interpreter/
H A Dbytecode-label.cc19 void BytecodeLabels::Bind(BytecodeArrayBuilder* builder) { function in class:v8::internal::interpreter::BytecodeLabels
21 builder->Bind(&label);
28 builder->Bind(target, &label);
/external/libmojo/mojo/public/cpp/bindings/
H A Dassociated_interface_request.h48 void Bind(ScopedInterfaceEndpointHandle handle) { function in class:mojo::AssociatedInterfaceRequest
79 request.Bind(std::move(handle));
H A Dstrong_binding.h58 Bind(std::move(handle));
63 Bind(ptr);
68 Bind(std::move(request));
73 void Bind(ScopedMessagePipeHandle handle) { function in class:mojo::StrongBinding
75 binding_.Bind(std::move(handle));
77 base::Bind(&StrongBinding::OnConnectionError, base::Unretained(this)));
80 void Bind(InterfacePtr<Interface>* ptr) { function in class:mojo::StrongBinding
82 binding_.Bind(ptr);
84 base::Bind(&StrongBinding::OnConnectionError, base::Unretained(this)));
87 void Bind(InterfaceReques function in class:mojo::StrongBinding
[all...]
H A Dassociated_binding.h41 // |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, function in class:mojo::AssociatedBinding
83 Bind(std::move(request), std::move(runner));
87 void Bind(AssociatedInterfaceRequest<Interface> request, function in class:mojo::AssociatedBinding
106 base::Bind(&AssociatedBinding::RunConnectionErrorHandler,
128 request.Bind(endpoint_client_->PassHandle());
H A Dinterface_request.h50 void Bind(ScopedMessagePipeHandle handle) { handle_ = std::move(handle); } function in class:mojo::InterfaceRequest
79 request.Bind(std::move(handle));
132 ptr->Bind(InterfacePtrInfo<Interface>(std::move(pipe.handle0), 0u),
H A Dbinding.h70 // 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, function in class:mojo::Binding
128 internal_state_.Bind(std::move(handle), std::move(runner));
136 void Bind(InterfacePtr<Interface>* ptr, function in class:mojo::Binding
140 ptr->Bind(InterfacePtrInfo<Interface>(std::move(pipe.handle0),
143 Bind(st
149 void Bind(InterfaceRequest<Interface> request, function in class:mojo::Binding
[all...]
H A Dinterface_ptr.h77 void Bind(InterfacePtrInfo<Interface> info, function in class:mojo::InterfacePtr
82 internal_state_.Bind(std::move(info), std::move(runner));
226 ptr.Bind(std::move(info), std::move(runner));
H A Dassociated_interface_ptr.h64 void Bind(AssociatedInterfacePtrInfo<Interface> info, function in class:mojo::AssociatedInterfacePtr
75 internal_state_.Bind(std::move(info), std::move(runner));
202 ptr->Bind(std::move(ptr_info), std::move(runner));
/external/libmojo/mojo/public/cpp/bindings/lib/
H A Dassociated_interface_ptr_state.h59 ->QueryVersion(base::Bind(&AssociatedInterfacePtrState::OnQueryVersion,
80 void Bind(AssociatedInterfacePtrInfo<Interface> info, function in class:mojo::internal::AssociatedInterfacePtrState
H A Dbinding_state.h50 void Bind(ScopedMessagePipeHandle handle, function in class:mojo::internal::BindingState
62 base::Bind(&BindingState::RunConnectionErrorHandler,
151 void Bind(ScopedMessagePipeHandle handle, function in class:mojo::internal::BindingState
165 base::Bind(&BindingState::RunConnectionErrorHandler,
H A Dinterface_ptr_state.h71 base::Bind(&InterfacePtrState::OnQueryVersion, base::Unretained(this),
96 void Bind(InterfacePtrInfo<Interface> info, function in class:mojo::internal::InterfacePtrState
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, function in class:mojo::internal::InterfacePtrState
336 // between the Bind() call and the initialization of |router_|.
/external/webrtc/webrtc/test/channel_transport/
H A Dudp_socket_posix.cc138 bool UdpSocketPosix::Bind(const SocketAddress& name) function in class:webrtc::test::UdpSocketPosix
146 "UdpSocketPosix::Bind() error: %d", errno);
/external/clang/test/Parser/
H A DDelayedTemplateParsing.cpp89 Callback Bind() { function in namespace:PR11931
/external/deqp/modules/glshared/
H A DglsAttributeLocationTests.hpp116 class Bind class in namespace:deqp::gls::AttributeLocationTestUtil
119 Bind (const std::string& attribute, deUint32 location);
150 // Bind maximum number of attributes
/external/v8/src/compiler/
H A Dliveness-analyzer.h93 void Bind(int var) { entries_.push_back(Entry(Entry::kBind, var)); } function in class:v8::internal::compiler::LivenessAnalyzerBlock
/external/webrtc/webrtc/base/
H A Dasyncsocket.cc49 int AsyncSocketAdapter::Bind(const SocketAddress& addr) { function in class:rtc::AsyncSocketAdapter
50 return socket_->Bind(addr);
H A Dmacasyncsocket.cc83 // Bind the socket to a local address.
84 int MacAsyncSocket::Bind(const SocketAddress& address) { function in class:rtc::MacAsyncSocket
/external/webrtc/webrtc/p2p/base/
H A Drelayserver_unittest.cc70 void Bind() { function in class:RelayServerTest
325 Bind();
335 Bind();
358 Bind();
383 Bind();
407 Bind();
432 Bind();
457 Bind();
498 Bind();
/external/clang/test/CodeGenCXX/
H A Ddebug-info-use-after-free.cpp13 template < typename T > struct Bind struct in struct:TemplateSel
41 typename TestSel::template Bind < Type >::type TestClass;
/external/libmojo/mojo/edk/js/tests/
H A Djs_to_cpp_tests.cc221 void Bind(InterfaceRequest<js_to_cpp::CppSide> request) { function in class:mojo::edk::js::__anon10844::CppSideConnection
222 binding_.Bind(std::move(request));
390 cpp_side->Bind(GetProxy(&cpp_side_ptr));
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DELF.h71 static ELFSym *getGV(const GlobalValue *GV, unsigned Bind, argument
75 Sym->setBind(Bind);
116 static ELFSym *getUndefGV(const GlobalValue *GV, unsigned Bind) { argument
119 Sym->setBind(Bind);
148 assert(X == (X & 0xF) && "Bind value out of range!");

Completed in 1248 milliseconds

123