/third_party/skia/third_party/externals/oboe/docs/reference/ |
D | menudata.js | 25 {text:"Main Page",url:"index.html"}, property 26 {text:"Related Pages",url:"pages.html"}, property 27 {text:"Namespaces",url:"namespaces.html",children:[ property 28 {text:"Namespace List",url:"namespaces.html"}, property 29 {text:"Namespace Members",url:"namespacemembers.html",children:[ property 30 {text:"All",url:"namespacemembers.html",children:[ property 31 {text:"a",url:"namespacemembers.html#index_a"}, property 32 {text:"c",url:"namespacemembers.html#index_c"}, property 33 {text:"d",url:"namespacemembers.html#index_d"}, property 34 {text:"g",url:"namespacemembers.html#index_g"}, property [all …]
|
/third_party/node/test/parallel/ |
D | test-whatwg-url-custom-properties.js | 9 const url = new URL('http://user:pass@foo.bar.com:21/aaa/zzz?l=24#test'); constant 10 const oldParams = url.searchParams; // For test of [SameObject] 15 for (const prop in url) { 30 assert.strictEqual(url.toString(), url.href); 31 url.href = 'http://user:pass@foo.bar.com:21/aaa/zzz?l=25#test'; 32 assert.strictEqual(url.href, 34 assert.strictEqual(url.toString(), url.href); 37 assert.strictEqual((delete url.href), true); 38 assert.strictEqual(url.href, 40 assert.strictEqual(url.searchParams, oldParams); // [SameObject] [all …]
|
D | test-whatwg-url-constructor.js | 38 function bURL(url, base) { argument 39 return new URL(url, base || "about:blank") 56 var url = bURL(expected.input, expected.base) 57 assert_equals(url.href, expected.href, "href") 58 assert_equals(url.protocol, expected.protocol, "protocol") 59 assert_equals(url.username, expected.username, "username") 60 assert_equals(url.password, expected.password, "password") 61 assert_equals(url.host, expected.host, "host") 62 assert_equals(url.hostname, expected.hostname, "hostname") 63 assert_equals(url.port, expected.port, "port") [all …]
|
D | test-url-format-whatwg.js | 8 const url = require('url'); constant 13 url.format(myURL), 18 url.format(myURL, {}), 25 () => url.format(myURL, value), 40 url.format(myURL, { fragment: false }), 45 url.format(myURL, { fragment: '' }), 50 url.format(myURL, { fragment: 0 }), 55 url.format(myURL, { fragment: 1 }), 60 url.format(myURL, { fragment: {} }), 65 url.format(myURL, { search: false }), [all …]
|
D | test-whatwg-url-toascii.js | 38 const url = document.createElement(type) 39 url.href = input 40 return url 55 const url = makeURL("url", hostTest.input) 56 assert_equals(url.host, hostTest.output) 57 assert_equals(url.hostname, hostTest.output) 58 assert_equals(url.pathname, "/x") 59 assert_equals(url.href, "https://" + hostTest.output + "/x") 64 const url = makeURL(type, hostTest.input) 65 assert_equals(url.host, "") [all …]
|
D | test-whatwg-url-override-hostname.js | 7 const url = new (class extends URL { get hostname() { return 'bar.com'; } })('http://foo.com/'); 8 assert.strictEqual(url.href, 'http://foo.com/'); 9 assert.strictEqual(url.toString(), 'http://foo.com/'); 10 assert.strictEqual(url.toJSON(), 'http://foo.com/'); 11 assert.strictEqual(url.hash, ''); 12 assert.strictEqual(url.host, 'foo.com'); 13 assert.strictEqual(url.hostname, 'bar.com'); 14 assert.strictEqual(url.origin, 'http://foo.com'); 15 assert.strictEqual(url.password, ''); 16 assert.strictEqual(url.protocol, 'http:'); [all …]
|
/third_party/node/deps/npm/test/tap/ |
D | utils.funding.js | 89 url: 'http://example.com' property 100 url: 'http://example.com' property 119 url: 'http://example.com' property 145 url: 'http://example.com' property 166 url: 'https://example.com' property 174 url: 'https://example.com' property 182 url: 'https://example.com' property 190 url: 'https://example.com' property 198 url: 'https://example.com' property 210 url: 'https://example.com' property [all …]
|
/third_party/node/test/fixtures/wpt/url/ |
D | url-searchparams.any.js | 1 function bURL(url, base) { argument 2 return new URL(url, base || "about:blank") 7 var url = bURL('http://example.org/?a=b') 8 assert_true("searchParams" in url) 9 var searchParams = url.searchParams 10 assert_true(url.searchParams === searchParams, 'Object identity should hold.') 14 var url = bURL('http://example.org/?a=b') 15 assert_true("searchParams" in url) 16 var searchParams = url.searchParams 20 assert_equals(url.searchParams.toString(), 'a=b') [all …]
|
D | toascii.window.js | 8 const url = document.createElement(type) 9 url.href = input 10 return url 24 const url = makeURL("url", hostTest.input) 25 assert_equals(url.host, hostTest.output) 26 assert_equals(url.hostname, hostTest.output) 27 assert_equals(url.pathname, "/x") 28 assert_equals(url.href, "https://" + hostTest.output + "/x") 33 const url = makeURL(type, hostTest.input) 34 assert_equals(url.host, "") [all …]
|
/third_party/python/Lib/urllib/ |
D | parse.py | 261 _DefragResultBase.url.__doc__ = """The URL with no fragment identifier.""" 325 return self.url + '#' + self.fragment 327 return self.url 344 return self.url + b'#' + self.fragment 346 return self.url 372 def urlparse(url, scheme='', allow_fragments=True): argument 392 url, scheme, _coerce_result = _coerce_args(url, scheme) 393 splitresult = urlsplit(url, scheme, allow_fragments) 394 scheme, netloc, url, query, fragment = splitresult 395 if scheme in uses_params and ';' in url: [all …]
|
/third_party/node/deps/npm/scripts/ |
D | pr | 17 local url="$(prurl "$@")" 18 local num=$(basename $url) 22 local root="$(prroot "$url")" 25 local ref="$(prref "$url" "$root")" 95 local url="$(prurl "$prnum")" 100 local root="$(prroot "$url")" 121 local url="$1" 122 if [ "$url" == "" ] && type pbpaste &>/dev/null; then 123 url="$(pbpaste)" 125 if [[ "$url" =~ ^[0-9]+$ ]]; then [all …]
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/rtsp/ |
D | gstrtspurl.c | 101 gst_rtsp_url_parse (const gchar * urlstr, GstRTSPUrl ** url) in gst_rtsp_url_parse() argument 109 g_return_val_if_fail (url != NULL, GST_RTSP_EINVAL); in gst_rtsp_url_parse() 207 *url = res; in gst_rtsp_url_parse() 228 gst_rtsp_url_copy (const GstRTSPUrl * url) in gst_rtsp_url_copy() argument 232 g_return_val_if_fail (url != NULL, NULL); in gst_rtsp_url_copy() 236 res->transports = url->transports; in gst_rtsp_url_copy() 237 res->family = url->family; in gst_rtsp_url_copy() 238 res->user = g_strdup (url->user); in gst_rtsp_url_copy() 239 res->passwd = g_strdup (url->passwd); in gst_rtsp_url_copy() 240 res->host = g_strdup (url->host); in gst_rtsp_url_copy() [all …]
|
/third_party/node/src/ |
D | node_url.cc | 16 using url::table_data::hex; 17 using url::table_data::C0_CONTROL_ENCODE_SET; 18 using url::table_data::FRAGMENT_ENCODE_SET; 19 using url::table_data::PATH_ENCODE_SET; 20 using url::table_data::USERINFO_ENCODE_SET; 21 using url::table_data::QUERY_ENCODE_SET_NONSPECIAL; 22 using url::table_data::QUERY_ENCODE_SET_SPECIAL; 48 namespace url { namespace 826 void ShortenUrlPath(struct url_data* url) { in ShortenUrlPath() argument 827 if (url->path.empty()) return; in ShortenUrlPath() [all …]
|
/third_party/mindspore/mindspore/core/mindrt/src/actor/ |
D | aid.cc | 25 size_t index = url.find("://"); in SetUnfixUrl() 27 if (url.substr(0, index) == MINDRT_TCP) { in SetUnfixUrl() 28 url = url.substr(index + PROCOLLEN); in SetUnfixUrl() 38 url = ""; in AID() 41 url = sName.substr(index + 1); in AID() 50 url = ""; in AID() 53 url = tmpName.substr(index + 1); in AID() 72 url = id.url; in operator =() 78 size_t index = url.find("://"); in SetProtocol() 81 url = url.substr(index + PROCOLLEN); in SetProtocol() [all …]
|
/third_party/flutter/skia/tools/skiaserve/urlhandlers/ |
D | UrlHandler.h | 18 virtual bool canHandle(const char* method, const char* url) = 0; 20 const char* url, const char* method, 26 bool canHandle(const char* method, const char* url) override; 28 const char* url, const char* method, 34 bool canHandle(const char* method, const char* url) override; 36 const char* url, const char* method, 42 bool canHandle(const char* method, const char* url) override; 44 const char* url, const char* method, 54 bool canHandle(const char* method, const char* url) override; 56 const char* url, const char* method, [all …]
|
/third_party/skia/tools/skiaserve/urlhandlers/ |
D | UrlHandler.h | 18 virtual bool canHandle(const char* method, const char* url) = 0; 20 const char* url, const char* method, 26 bool canHandle(const char* method, const char* url) override; 28 const char* url, const char* method, 34 bool canHandle(const char* method, const char* url) override; 36 const char* url, const char* method, 42 bool canHandle(const char* method, const char* url) override; 44 const char* url, const char* method, 54 bool canHandle(const char* method, const char* url) override; 56 const char* url, const char* method, [all …]
|
/third_party/node/lib/internal/modules/esm/ |
D | translators.js | 105 function errPath(url) { argument 106 const parsed = new URL(url); 110 return url; 113 async function importModuleDynamically(specifier, { url }) { field 114 return asyncESM.ESMLoader.import(specifier, url); 123 error.url : PromiseReject(error)) 128 function initializeImportMeta(meta, { url }) { field 131 meta.resolve = createImportMetaResolve(url); 132 meta.url = url; 136 translators.set('module', async function moduleStrategy(url) { argument [all …]
|
D | loader.js | 96 const { url } = resolveResponse; 97 if (typeof url !== 'string') { 99 'string', 'loader resolve', 'url', url); 101 return url; 104 async getFormat(url) { argument 106 url, {}, defaultGetFormat); 116 url, 119 url, 133 new URL(url); 136 'url', 'loader resolve', 'url', url [all …]
|
/third_party/glib/gio/win32/ |
D | gwinhttpfile.c | 54 g_free (file->url.lpszScheme); in G_DEFINE_TYPE_WITH_CODE() 55 g_free (file->url.lpszHostName); in G_DEFINE_TYPE_WITH_CODE() 56 g_free (file->url.lpszUserName); in G_DEFINE_TYPE_WITH_CODE() 57 g_free (file->url.lpszPassword); in G_DEFINE_TYPE_WITH_CODE() 58 g_free (file->url.lpszUrlPath); in G_DEFINE_TYPE_WITH_CODE() 59 g_free (file->url.lpszExtraInfo); in G_DEFINE_TYPE_WITH_CODE() 101 memset (&file->url, 0, sizeof (file->url)); in _g_winhttp_file_new() 102 file->url.dwStructSize = sizeof (file->url); in _g_winhttp_file_new() 103 file->url.dwSchemeLength = 1; in _g_winhttp_file_new() 104 file->url.dwHostNameLength = 1; in _g_winhttp_file_new() [all …]
|
/third_party/libevdev/doc/html/ |
D | menudata.js | 26 {text:"Main Page",url:"index.html"}, property 27 {text:"Related Pages",url:"pages.html"}, property 28 {text:"Modules",url:"modules.html"}, property 29 {text:"Files",url:"files.html",children:[ property 30 {text:"File List",url:"files.html"}, property 31 {text:"Globals",url:"globals.html",children:[ property 32 {text:"All",url:"globals.html",children:[ property 33 {text:"l",url:"globals.html#index_l"}]}, property 34 {text:"Functions",url:"globals_func.html",children:[ property 35 {text:"l",url:"globals_func.html#index_l"}]}, property [all …]
|
/third_party/node/test/fixtures/wpt/FileAPI/url/resources/ |
D | fetch-tests.js | 21 const url = URL.createObjectURL(blob); 23 return fetch_should_succeed(t, url).then(text => { 29 const url = URL.createObjectURL(blob); 31 return fetch_should_succeed(t, url + '#fragment').then(text => { 37 const url = URL.createObjectURL(blob); 38 URL.revokeObjectURL(url); 40 return fetch_should_fail(t, url); 44 const url = URL.createObjectURL(blob); 45 URL.revokeObjectURL(url + '#fragment'); 47 return fetch_should_succeed(t, url).then(text => { [all …]
|
/third_party/node/test/fixtures/wpt/FileAPI/url/ |
D | url-format.any.js | 19 const url = URL.createObjectURL(blob); constant 20 assert_equals(typeof url, 'string'); 21 assert_true(url.startsWith('blob:')); 25 const url = URL.createObjectURL(file); constant 26 assert_equals(typeof url, 'string'); 27 assert_true(url.startsWith('blob:')); 31 const url = URL.createObjectURL(blob); constant 32 assert_equals(new URL(url).origin, location.origin); 34 assert_true(url.includes(location.origin)); 35 assert_true(url.startsWith('blob:' + location.protocol)); [all …]
|
/third_party/skia/third_party/externals/microhttpd/src/testcurl/ |
D | test_long_header.c | 70 const char *url, in ahc_echo() argument 82 response = MHD_create_response_from_buffer (strlen (url), in ahc_echo() 83 (void *) url, in ahc_echo() 98 char *url; in testLongUrlGet() local 115 url = malloc (VERY_LONG); in testLongUrlGet() 116 if (url == NULL) in testLongUrlGet() 121 memset (url, 'a', VERY_LONG); in testLongUrlGet() 122 url[VERY_LONG - 1] = '\0'; in testLongUrlGet() 123 memcpy (url, "http://127.0.0.1:1080/", strlen ("http://127.0.0.1:1080/")); in testLongUrlGet() 124 curl_easy_setopt (c, CURLOPT_URL, url); in testLongUrlGet() [all …]
|
/third_party/node/deps/npm/lib/ |
D | repo.js | 29 const info = hostedGitInfo.fromUrl(r.url) 30 const url = info ? info.browse() : unknownHostedUrl(r.url) 32 if (!url) return cb(new Error('no repository: could not get url')) 34 openUrl(url, 'repository available at the following URL', cb) 37 function unknownHostedUrl (url) { argument 39 const idx = url.indexOf('@') 41 url = url.slice(idx + 1).replace(/:([^\d]+)/, '/$1') 43 url = url_.parse(url) 44 const protocol = url.protocol === 'https:' 47 return protocol + '//' + (url.host || '') + [all …]
|
/third_party/node/test/fixtures/wpt/url/resources/ |
D | a-element.js | 7 function bURL(url, base) { argument 11 a.setAttribute("href", url) 21 var url = bURL(expected.input, expected.base) 23 if(url.protocol !== ':') { 26 assert_equals(url.href, expected.input, "failure should set href to input") 30 assert_equals(url.href, expected.href, "href") 31 assert_equals(url.protocol, expected.protocol, "protocol") 32 assert_equals(url.username, expected.username, "username") 33 assert_equals(url.password, expected.password, "password") 34 assert_equals(url.host, expected.host, "host") [all …]
|