Home
last modified time | relevance | path

Searched refs:Connect (Results 1 – 25 of 141) sorted by relevance

123456

/third_party/skia/third_party/externals/dawn/src/dawn_native/
DInstance.cpp34 BackendConnection* Connect(InstanceBase* instance);
39 BackendConnection* Connect(InstanceBase* instance);
44 BackendConnection* Connect(InstanceBase* instance);
49 BackendConnection* Connect(InstanceBase* instance, wgpu::BackendType backendType);
54 BackendConnection* Connect(InstanceBase* instance);
172 Register(null::Connect(this), wgpu::BackendType::Null); in EnsureBackendConnection()
178 Register(d3d12::Connect(this), wgpu::BackendType::D3D12); in EnsureBackendConnection()
184 Register(metal::Connect(this), wgpu::BackendType::Metal); in EnsureBackendConnection()
190 Register(vulkan::Connect(this), wgpu::BackendType::Vulkan); in EnsureBackendConnection()
196 Register(opengl::Connect(this, wgpu::BackendType::OpenGL), in EnsureBackendConnection()
[all …]
/third_party/typescript/tests/baselines/reference/
DcircularlySimplifyingConditionalTypesNoCrash.types29 interface Connect { // Then strictly compared with another signature in its context
54 declare var connect: Connect;
55 >connect : Connect
57 const myStoreConnect: Connect = function(
58 >myStoreConnect : Connect
77 >connect : Connect
DcircularlySimplifyingConditionalTypesNoCrash.symbols80 interface Connect { // Then strictly compared with another signature in its context
81 >Connect : Symbol(Connect, Decl(circularlySimplifyingConditionalTypesNoCrash.ts, 17, 1))
117 declare var connect: Connect;
119 >Connect : Symbol(Connect, Decl(circularlySimplifyingConditionalTypesNoCrash.ts, 17, 1))
121 const myStoreConnect: Connect = function(
123 >Connect : Symbol(Connect, Decl(circularlySimplifyingConditionalTypesNoCrash.ts, 17, 1))
DcircularlySimplifyingConditionalTypesNoCrash.js21 interface Connect { // Then strictly compared with another signature in its context
34 declare var connect: Connect;
36 const myStoreConnect: Connect = function(
/third_party/node/test/cctest/
Dtest_inspector_socket_server.cc98 void Connect(const std::string& host, int port, bool v6 = false) { in Connect() function in __anon965b89240111::SocketWrapper
373 socket.Connect(HOST, port); in TestHttpRequest()
395 well_behaved_socket.Connect(HOST, server.port()); in TEST_F()
416 bogus_target_socket.Connect(HOST, server.port()); in TEST_F()
425 dropped_connection_socket.Connect(HOST, server.port()); in TEST_F()
439 stays_till_termination_socket.Connect(HOST, server.port()); in TEST_F()
481 socket.Connect(HOST, server.port()); in TEST_F()
507 socket1.Connect(HOST, server.port()); in TEST_F()
520 socket1.Connect(HOST, server.port()); in TEST_F()
533 socket1.Connect(HOST, server.port()); in TEST_F()
[all …]
/third_party/typescript/tests/cases/compiler/
DcircularlySimplifyingConditionalTypesNoCrash.ts21 interface Connect { // Then strictly compared with another signature in its context interface
34 declare var connect: Connect;
36 const myStoreConnect: Connect = function(
/third_party/node/deps/v8/src/maglev/
Dmaglev-graph-printer.cc57 void Connect(ConnectionLocation loc) { connected |= loc; } in Connect() function
60 Connect(kLeft); in AddHorizontal()
61 Connect(kRight); in AddHorizontal()
65 Connect(kTop); in AddVertical()
66 Connect(kBottom); in AddVertical()
130 c.Connect(kRight);
131 c.Connect(is_loop ? kTop : kBottom);
278 c.Connect(kRight); in PreProcessBasicBlock()
282 c.Connect(kBottom); in PreProcessBasicBlock()
284 c.Connect(kTop); in PreProcessBasicBlock()
/third_party/node/deps/npm/node_modules/socks/docs/examples/
Dindex.md5 [Connect command](typescript/connectExample.md)
13 [Connect command](javascript/connectExample.md)
/third_party/curl/docs/cmdline-opts/
Dunix-socket.d5 Help: Connect through this Unix domain socket
13 Connect through this Unix domain socket, instead of using the network.
Dabstract-unix-socket.d5 Help: Connect via abstract Unix domain socket
13 Connect through an abstract Unix domain socket, instead of using the network.
/third_party/libphonenumber/resources/carrier/en/
D27.txt136 278190|TelAfrica (Wirles Connect)
137 278191|TelAfrica (Wirles Connect)
138 278192|TelAfrica (Wirles Connect)
D358.txt25 3584323|Top Connect OU
26 3584324|Nord Connect SIA
/third_party/node/src/
Dtcp_wrap.cc93 SetProtoMethod(isolate, t, "connect", Connect); in Initialize()
136 registry->Register(Connect); in RegisterExternalReferences()
295 void TCPWrap::Connect(const FunctionCallbackInfo<Value>& args) { in Connect() function in node::TCPWrap
299 Connect<sockaddr_in>(args, in Connect()
311 Connect<sockaddr_in6>(args, in Connect6()
318 void TCPWrap::Connect(const FunctionCallbackInfo<Value>& args, in Connect() function in node::TCPWrap
Dtcp_wrap.h80 static void Connect(const v8::FunctionCallbackInfo<v8::Value>& args);
83 static void Connect(const v8::FunctionCallbackInfo<v8::Value>& args,
Dpipe_wrap.cc81 SetProtoMethod(isolate, t, "connect", Connect); in Initialize()
114 registry->Register(Connect); in RegisterExternalReferences()
226 void PipeWrap::Connect(const FunctionCallbackInfo<Value>& args) { in Connect() function in node::PipeWrap
Dinspector_js_api.cc41 static std::unique_ptr<InspectorSession> Connect( in Connect() function
43 return inspector->Connect(std::move(delegate), false); in Connect()
52 static std::unique_ptr<InspectorSession> Connect( in Connect() function
96 session_ = ConnectionType::Connect( in JSBindingsConnection()
Dinspector_profiler.cc35 : session_(env->inspector_agent()->Connect( in V8ProfilerConnection()
Dpipe_wrap.h65 static void Connect(const v8::FunctionCallbackInfo<v8::Value>& args);
/third_party/node/src/inspector/
Dmain_thread_interface.cc142 void Connect(std::unique_ptr<InspectorSessionDelegate> delegate) { in Connect() function in node::inspector::__anon3fd006d50111::MainThreadSessionState
145 session_ = agent->Connect(std::move(delegate), prevent_shutdown_); in Connect()
168 state_.Call(&MainThreadSessionState::Connect, std::move(delegate)); in CrossThreadInspectorSession()
298 std::unique_ptr<InspectorSession> MainThreadHandle::Connect( in Connect() function in node::inspector::MainThreadHandle
Dworker_inspector.cc82 std::unique_ptr<inspector::InspectorSession> ParentInspectorHandle::Connect( in Connect() function in node::inspector::ParentInspectorHandle
85 return parent_thread_->Connect(std::move(delegate), prevent_shutdown); in Connect()
/third_party/skia/third_party/externals/tint/tools/src/cmd/remote-compile/
Dsocket.h31 static std::shared_ptr<Socket> Connect(const char* address,
/third_party/openssl/demos/bio/
Dconnect.cnf7 Connect = localhost:4433
/third_party/node/deps/undici/src/docs/best-practices/
Dproxy.md15 ### Connect without authentication
68 ### Connect with authentication
/third_party/curl/tests/data/
Dtest205330 Connect to specific host with IP addresses
/third_party/ltp/testcases/network/rpc/rpc-tirpc/
Drpc_test.sh27 Connect to the remote host and start sprog.

123456