/third_party/typescript/tests/baselines/reference/ |
D | jsEnumCrossFileExport.types | 2 var Host = {}; 3 >Host : typeof Host 6 Host.UserMetrics = {}; 7 >Host.UserMetrics = {} : typeof Host.UserMetrics 8 >Host.UserMetrics : typeof Host.UserMetrics 9 >Host : typeof Host 10 >UserMetrics : typeof Host.UserMetrics 14 Host.UserMetrics.Action = { 15 >Host.UserMetrics.Action = { WindowDocked: 1, WindowUndocked: 2, ScriptsBreakpointSet: 3, … 16 >Host.UserMetrics.Action : { WindowDocked: number; WindowUndocked: number; ScriptsBreakpointSet: nu… [all …]
|
D | import_var-referencing-an-imported-module-alias.types | 2 import host = require("host"); 3 >host : typeof host 5 var hostVar = host; 6 >hostVar : typeof host 7 >host : typeof host 9 var v = new hostVar.Host(); 10 >v : host.Host 11 >new hostVar.Host() : host.Host 12 >hostVar.Host : typeof host.Host 13 >hostVar : typeof host [all …]
|
D | import_var-referencing-an-imported-module-alias.symbols | 2 import host = require("host"); 3 >host : Symbol(host, Decl(consumer.ts, 0, 0)) 5 var hostVar = host; 7 >host : Symbol(host, Decl(consumer.ts, 0, 0)) 9 var v = new hostVar.Host(); 11 >hostVar.Host : Symbol(host.Host, Decl(host.ts, 0, 0)) 13 >Host : Symbol(host.Host, Decl(host.ts, 0, 0)) 15 === tests/cases/compiler/host.ts === 16 export class Host { } 17 >Host : Symbol(Host, Decl(host.ts, 0, 0))
|
D | jsEnumCrossFileExport.symbols | 2 var Host = {}; 3 >Host : Symbol(Host, Decl(enumDef.js, 0, 3), Decl(enumDef.js, 0, 14), Decl(enumDef.js, 1, 22), Decl… 5 Host.UserMetrics = {}; 6 >Host.UserMetrics : Symbol(Host.UserMetrics, Decl(enumDef.js, 0, 14), Decl(enumDef.js, 3, 5), Decl(… 7 >Host : Symbol(Host, Decl(enumDef.js, 0, 3), Decl(enumDef.js, 0, 14), Decl(enumDef.js, 1, 22), Decl… 8 >UserMetrics : Symbol(Host.UserMetrics, Decl(enumDef.js, 0, 14), Decl(enumDef.js, 3, 5), Decl(enumD… 11 Host.UserMetrics.Action = { 12 >Host.UserMetrics.Action : Symbol(Host.UserMetrics.Action, Decl(enumDef.js, 1, 22), Decl(enumDef.js… 13 >Host.UserMetrics : Symbol(Host.UserMetrics, Decl(enumDef.js, 0, 14), Decl(enumDef.js, 3, 5), Decl(… 14 >Host : Symbol(Host, Decl(enumDef.js, 0, 3), Decl(enumDef.js, 0, 14), Decl(enumDef.js, 1, 22), Decl… [all …]
|
D | import_var-referencing-an-imported-module-alias.js | 3 //// [host.ts] 4 export class Host { } class 7 import host = require("host"); 8 var hostVar = host; 9 var v = new hostVar.Host(); 12 //// [host.js] 16 exports.Host = void 0; 17 var Host = /** @class */ (function () { class 18 function Host() { class in anonymousFunction0e9955090100.Host 20 return Host; [all …]
|
/third_party/typescript/src/testRunner/unittests/tsserver/ |
D | configFileSearch.ts | 12 const host = createServerHost([f1, configFile]); constant 13 const service = createProjectService(host); 40 const host = createServerHost([f1, libFile, configFile, configFile2]); constant 41 const service = createProjectService(host); 45 checkWatchedFiles(host, [libFile.path, configFile.path]); 46 checkWatchedDirectories(host, [], /*recursive*/ false); 48 … checkWatchedDirectories(host, typeRootLocations.concat(configFileLocation), /*recursive*/ true); 51 host.deleteFile(configFile.path); 52 host.runQueuedTimeoutCallbacks(); 54 …checkWatchedFiles(host, [libFile.path, configFile.path, `${configFileLocation}/jsconfig.json`, `${… [all …]
|
D | resolutionCache.ts | 2 function createHostModuleResolutionTrace(host: TestServerHost & ModuleResolutionHost) { 4 host.trace = resolutionTrace.push.bind(resolutionTrace); 8 …: tsserver:: resolutionCache:: tsserverProjectSystem extra resolution pass in server host", () => { 18 const host: TestServerHost & ModuleResolutionHost = createServerHost([file1, lib]); constant 19 const resolutionTrace = createHostModuleResolutionTrace(host); 20 …ctService = createProjectService(host, { typingsInstaller: new TestTypingsInstaller("/a/cache", /*… 70 const host = createServerHost([f1, t1, tsconfig]); constant 71 const projectService = createProjectService(host); 78 host.deleteFile(t1.path); 80 host.runQueuedTimeoutCallbacks(); [all …]
|
D | watchEnvironment.ts | 44 const host = createServerHost(files, { environmentVariables }); constant 45 const projectService = createProjectService(host); 59 host.writeFile(file2.path, file2.content); 60 host.runQueuedTimeoutCallbacks(); 68 checkWatchedDirectories(host, emptyArray, /*recursive*/ true); 70 checkWatchedFilesDetailed(host, expectedWatchedFiles); 71 … checkWatchedDirectoriesDetailed(host, expectedWatchedDirectories, /*recursive*/ false); 105 const host = createServerHost(files, { windowsStyleRoot: "c:/" }); constant 106 const projectService = createProjectService(host); 112 …checkWatchedFiles(host, mapDefined(files, f => f === libFile ? winsowsStyleLibFilePath : f === fil… [all …]
|
D | reloadProjects.ts | 25 …function verifyFileUpdates(host: TestServerHost, service: TestProjectService, project: server.Proj… 29 host.writeFile(file2.path, updatedText); 30 host.checkTimeoutQueueLength(0); 35 host.deleteFile(file2.path); 36 host.checkTimeoutQueueLength(0); 43 const host = createServerHost([configFile, libFile, file1, file2]); constant 44 const service = createProjectService(host); 52 host.ensureFileOrFolder(moduleFile); 53 host.checkTimeoutQueueLength(0); 60 verifyFileUpdates(host, service, project); [all …]
|
D | configuredProjects.ts | 27 const host = createServerHost([configFile, libFile, file1, file2, file3]); constant 28 const projectService = createProjectService(host); 40 checkWatchedFiles(host, [configFile.path, file2.path, libFile.path]); 42 …checkWatchedDirectories(host, [configFileDirectory, combinePaths(configFileDirectory, nodeModulesA… 67 const host = createServerHost([configFile, libFile, file1, file2, file3]); constant 68 const projectService = createProjectService(host); 80 checkWatchedFiles(host, [configFile.path, file2.path, libFile.path]); 81 checkWatchedDirectories(host, [getDirectoryPath(configFile.path)], /*recursive*/ false); 100 const host = createServerHost([libFile, commonFile1, commonFile2]); constant 102 const projectService = createProjectService(host); [all …]
|
/third_party/node/test/parallel/ |
D | test-tls-check-server-identity.js | 36 host: false, property 38 error: 'Host: false. is not cert\'s CN: a.com' 41 host: null, property 43 error: 'Host: null. is not cert\'s CN: a.com' 46 host: undefined, property 48 error: 'Host: undefined. is not cert\'s CN: a.com' 52 { host: 'a.com', cert: { subject: { CN: 'a.com' } } }, property 53 { host: 'a.com', cert: { subject: { CN: 'A.COM' } } }, property 55 host: 'a.com', property 57 error: 'Host: a.com. is not cert\'s CN: b.com' [all …]
|
/third_party/openssl/doc/man3/ |
D | BIO_parse_hostserv.pod | 7 - utility routines to parse a standard host and service string 16 int BIO_parse_hostserv(const char *hostserv, char **host, char **service, 23 back via B<host> and B<service>. Those will need to be freed after 30 host + ':' + service 31 host + ':' + '*' 32 host + ':' 35 host 38 The host part can be a name or an IP address. If it's a IPv6 46 host + ':' + service => *host = "host", *service = "service" 47 host + ':' + '*' => *host = "host", *service = NULL [all …]
|
/third_party/curl/docs/libcurl/opts/ |
D | CURLOPT_CONNECT_TO.3 | 25 CURLOPT_CONNECT_TO \- Connect to a specific host and port instead of the URL's host and port 41 HOST:PORT:CONNECT-TO-HOST:CONNECT-TO-PORT where HOST is the host of the 42 request, PORT is the port of the request, CONNECT-TO-HOST is the host name to 45 The first string that matches the request's host and port is used. 47 Dotted numerical IP addresses are supported for HOST and CONNECT-TO-HOST. 50 Any of the four values may be empty. When the HOST or PORT is empty, the host 51 or port will always match (the request's host or port is ignored). 52 When CONNECT-TO-HOST or CONNECT-TO-PORT is empty, the "connect to" feature 53 will be disabled for the host or port, and the request's host or port will be 59 The "connect to" host and port are only used to establish the network [all …]
|
/third_party/boost/tools/build/src/tools/features/ |
D | os-feature.jam | 23 # Feature used to determine which OS we're on. New <target-os> and <host-os> 28 # Translates from bjam current OS to the os tags used in host-os and 29 # target-os, i.e. returns the running host-os. 31 local rule default-host-os ( ) 33 local host-os ; 36 host-os = [ os.name ] ; 42 case NT : host-os = windows ; 43 case AS400 : host-os = unix ; 44 case MINGW : host-os = windows ; 45 case BSDI : host-os = bsd ; [all …]
|
/third_party/node/deps/npm/node_modules/forever-agent/ |
D | index.js | 10 function getConnectionName(host, port) { argument 12 if (typeof host === 'string') { 13 name = host + ':' + port 15 …// For node.js v012.0 and iojs-v1.5.1, host is an object. And any existing localAddress is part of… 16 name = host.host + ':' + host.port + ':' + (host.localAddress ? (host.localAddress + ':') : ':') 29 self.on('free', function(socket, host, port) { argument 30 var name = getConnectionName(host, port) 61 ForeverAgent.prototype.addRequest = function(req, host, port) { argument 62 var name = getConnectionName(host, port) 64 if (typeof host !== 'string') { [all …]
|
/third_party/libsoup/tests/ |
D | uri-parsing-test.c | 15 { "ftp://user@host/path", "ftp://user@host/path", NULL, 16 { "ftp", "user", NULL, "host", 21, "/path", NULL, NULL } }, 17 { "ftp://user@host:9999/path", "ftp://user@host:9999/path", NULL, 18 { "ftp", "user", NULL, "host", 9999, "/path", NULL, NULL } }, 19 { "ftp://user:password@host/path", "ftp://user@host/path", NULL, 20 { "ftp", "user", "password", "host", 21, "/path", NULL, NULL } }, 21 { "ftp://user:password@host:9999/path", "ftp://user@host:9999/path", NULL, 22 { "ftp", "user", "password", "host", 9999, "/path", NULL, NULL } }, 23 { "ftp://user:password@host", "ftp://user@host", NULL, 24 { "ftp", "user", "password", "host", 21, "", NULL, NULL } }, [all …]
|
/third_party/typescript/src/testRunner/unittests/tsserver/events/ |
D | projectUpdatedInBackground.ts | 31 …function verifyProjectsUpdatedInBackgroundEvent(createSession: (host: TestServerHost) => ProjectsU… 50 const host = createServerHost([commonFile1, libFile, configFile]); constant 51 … const { verifyProjectsUpdatedInBackgroundEventHandler, verifyInitialOpen } = createSession(host); 54 host.writeFile(commonFile2.path, commonFile2.content); 55 host.runQueuedTimeoutCallbacks(); 63 host.writeFile(commonFile3.path, commonFile3.content); 64 host.runQueuedTimeoutCallbacks(); 93 const host = createServerHost(files); constant 94 … const { verifyInitialOpen, verifyProjectsUpdatedInBackgroundEventHandler } = createSession(host); 97 host.writeFile(f2.path, f2.content); [all …]
|
/third_party/node/test/fixtures/wpt/url/resources/ |
D | urltestdata.json | 11 "host": "example.org", string 26 "host": "foo:21", string 41 "host": "test", string 56 "host": "test", string 71 "host": "test", string 86 "host": "test", string 101 "host": "example.org", string 116 "host": "example.org", string 131 "host": "example.org", string 146 "host": "", string [all …]
|
/third_party/grpc/src/core/lib/gprpp/ |
D | host_port.cc | 30 std::string JoinHostPort(absl::string_view host, int port) { in JoinHostPort() argument 31 if (!host.empty() && host[0] != '[' && host.rfind(':') != host.npos) { in JoinHostPort() 33 return absl::StrFormat("[%s]:%d", host, port); in JoinHostPort() 35 // Ordinary non-bracketed host:port. in JoinHostPort() 36 return absl::StrFormat("%s:%d", host, port); in JoinHostPort() 40 bool DoSplitHostPort(absl::string_view name, absl::string_view* host, in DoSplitHostPort() argument 44 /* Parse a bracketed host, typically an IPv6 literal. */ in DoSplitHostPort() 61 *host = name.substr(1, rbracket - 1); in DoSplitHostPort() 62 if (host->find(':') == absl::string_view::npos) { in DoSplitHostPort() 65 *host = absl::string_view(); in DoSplitHostPort() [all …]
|
/third_party/musl/libc-test/src/functionalext/supplement/manual/network/ |
D | getnameinfo.c | 27 …* @tc.desc : Each parameter is valid and can resolve the IP address of the host name(hint.ai_… 33 char host[NI_MAXHOST]; in getnameinfo_0100() local 39 …ret = getnameinfo((const struct sockaddr *)(&sa), sizeof(sa), host, sizeof(host), server, sizeof(s… in getnameinfo_0100() 41 EXPECT_NE("getnameinfo_0100", strlen(host), 0); in getnameinfo_0100() 47 …* @tc.desc : Each parameter is valid and can resolve the IP address of the host name(hint.ai_… 60 char host[NI_MAXHOST]; in getnameinfo_0200() local 63 …res = getnameinfo(result->ai_addr, result->ai_addrlen, host, sizeof(host), server, sizeof(server),… in getnameinfo_0200() 66 EXPECT_NE("getnameinfo_0200", strlen(host), 0); in getnameinfo_0200() 74 …* @tc.desc : Each parameter is valid and can resolve the IP address of the host name(hint.ai_… 80 char host[NI_MAXHOST]; in getnameinfo_0300() local [all …]
|
/third_party/node/deps/cares/src/lib/ |
D | ares__addrinfo2hostent.c | 47 struct hostent **host) in ares__addrinfo2hostent() argument 55 if (ai == NULL || host == NULL) in ares__addrinfo2hostent() 58 *host = ares_malloc(sizeof(**host)); in ares__addrinfo2hostent() 59 if (!(*host)) in ares__addrinfo2hostent() 63 memset(*host, 0, sizeof(**host)); in ares__addrinfo2hostent() 94 (*host)->h_aliases = aliases; in ares__addrinfo2hostent() 114 (*host)->h_addr_list = ares_malloc((naddrs + 1) * sizeof(char *)); in ares__addrinfo2hostent() 115 if (!(*host)->h_addr_list) in ares__addrinfo2hostent() 120 memset((*host)->h_addr_list, 0, (naddrs + 1) * sizeof(char *)); in ares__addrinfo2hostent() 124 (*host)->h_name = ares_strdup(ai->cnames->name); in ares__addrinfo2hostent() [all …]
|
/third_party/flutter/flutter/packages/flutter/test/widgets/ |
D | routes_test.dart | 95 NavigatorState host, 99 expect(host, isNotNull); 146 final NavigatorState host = navigatorKey.currentState; 149 host, 160 host, 161 () { host.push(second = TestRoute('second')); }, 171 host, 172 () { host.push(TestRoute('third')); }, 182 host, 183 () { host.replace(oldRoute: second, newRoute: TestRoute('two')); }, [all …]
|
/third_party/mesa3d/.gitlab-ci/windows/ |
D | mesa_deps.ps1 | 3 Write-Host "Updating TLS certificate store" 13 Write-Host "Installing Chocolatey" 17 Write-Host "Installing Chocolatey packages" 33 Write-Host "Couldn't install dependencies from Chocolatey" 46 Write-Host "Installing Meson, Mako and numpy" 49 Write-Host "Failed to install dependencies from pip" 58 Write-Host "Cloning LLVM release/12.x" 61 Write-Host "Failed to clone LLVM repository" 69 Write-Host "Cloning SPIRV-LLVM-Translator" 72 Write-Host "Failed to clone SPIRV-LLVM-Translator repository" [all …]
|
/third_party/typescript/src/compiler/ |
D | watch.ts | 13 const host: FormatDiagnosticsHost = system === sys ? sysFormatDiagnosticsHost : { constant 19 return diagnostic => system.write(formatDiagnostic(diagnostic, host)); 25 … system.write(formatDiagnosticsWithColorAndContext(diagnostics, host) + host.getNewLine()); 93 const host: ParseConfigFileHost = <any>system; constant 94 …host.onUnRecoverableConfigFileDiagnostic = diagnostic => reportUnrecoverableDiagnostic(system, rep… 95 …const result = getParsedCommandLineOfConfigFile(configFileName, optionsToExtend, host, /*extendedC… 96 host.onUnRecoverableConfigFileDiagnostic = undefined!; // TODO: GH#18217 434 …export function createWatchFactory<Y = undefined>(host: WatchFactoryHost & { trace?(s: string): vo… 435 …const watchLogLevel = host.trace ? options.extendedDiagnostics ? WatchLogLevel.Verbose : options.d… 436 …const writeLog: (s: string) => void = watchLogLevel !== WatchLogLevel.None ? (s => host.trace!(s))… [all …]
|
/third_party/gstreamer/gstplugins_good/gst/udp/ |
D | gstudpsink.c | 92 g_param_spec_string ("host", "host", in gst_udpsink_class_init() 93 "The host/IP/Multicast group to send the packets to", in gst_udpsink_class_init() 108 udpsink->host = g_strdup (UDP_DEFAULT_HOST); in gst_udpsink_init() 110 udpsink->uri = g_strdup_printf ("udp://%s:%d", udpsink->host, udpsink->port); in gst_udpsink_init() 112 gst_multiudpsink_add (GST_MULTIUDPSINK (udpsink), udpsink->host, in gst_udpsink_init() 119 g_free (udpsink->host); in gst_udpsink_finalize() 120 udpsink->host = NULL; in gst_udpsink_finalize() 131 gchar *host; in gst_udpsink_set_uri() local 134 gst_multiudpsink_remove (GST_MULTIUDPSINK (sink), sink->host, sink->port); in gst_udpsink_set_uri() 136 if (!gst_udp_parse_uri (uri, &host, &port)) in gst_udpsink_set_uri() [all …]
|