/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 …]
|
/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/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/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/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/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/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/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 | 109 function errPath(url) { argument 110 const parsed = new URL(url); 114 return url; 117 async function importModuleDynamically(specifier, { url }) { field 118 return asyncESM.ESMLoader.import(specifier, url); 127 error.url : PromiseReject(error)) 132 function initializeImportMeta(meta, { url }) { field 135 meta.resolve = createImportMetaResolve(url); 136 meta.url = url; 140 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/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/python/Lib/ |
D | webbrowser.py | 71 def open(url, new=0, autoraise=True): argument 86 if browser.open(url, new, autoraise): 90 def open_new(url): argument 95 return open(url, 1) 97 def open_new_tab(url): argument 102 return open(url, 2) 148 def open(self, url, new=0, autoraise=True): argument 151 def open_new(self, url): argument 152 return self.open(url, 1) 154 def open_new_tab(self, url): argument [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/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/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/python/Lib/test/ |
D | test_robotparser.py | 24 def get_agent_and_url(self, url): argument 25 if isinstance(url, tuple): 26 agent, url = url 27 return agent, url 28 return self.agent, url 31 for url in self.good: 32 agent, url = self.get_agent_and_url(url) 33 with self.subTest(url=url, agent=agent): 34 self.assertTrue(self.parser.can_fetch(agent, url)) 37 for url in self.bad: [all …]
|
/third_party/gstreamer/gstreamer/tests/check/gst/ |
D | gsturi.c | 527 GstUri *url; in GST_START_TEST() local 530 url = in GST_START_TEST() 533 fail_unless (gst_uri_normalize (url)); in GST_START_TEST() 534 fail_unless_equals_string (gst_uri_get_scheme (url), "scheme"); in GST_START_TEST() 535 fail_unless_equals_string (gst_uri_get_userinfo (url), "User:Pass"); in GST_START_TEST() 536 fail_unless_equals_string (gst_uri_get_host (url), "host.com"); in GST_START_TEST() 537 tmp_str = gst_uri_get_path (url); in GST_START_TEST() 540 fail_unless (gst_uri_query_has_key (url, "query")); in GST_START_TEST() 541 fail_unless_equals_string (gst_uri_get_query_value (url, "query"), in GST_START_TEST() 543 fail_unless_equals_string (gst_uri_get_fragment (url), "fragment"); in GST_START_TEST() [all …]
|
/third_party/cef/libcef/browser/devtools/ |
D | devtools_file_manager.cc | 52 void CefDevToolsFileManager::SaveToFile(const std::string& url, in SaveToFile() argument 55 Save(url, content, save_as, in SaveToFile() 57 weak_factory_.GetWeakPtr(), url), in SaveToFile() 59 weak_factory_.GetWeakPtr(), url)); in SaveToFile() 62 void CefDevToolsFileManager::AppendToFile(const std::string& url, in AppendToFile() argument 64 Append(url, content, in AppendToFile() 66 weak_factory_.GetWeakPtr(), url)); in AppendToFile() 69 void CefDevToolsFileManager::Save(const std::string& url, in Save() argument 74 auto it = saved_files_.find(url); in Save() 76 SaveAsFileSelected(url, content, std::move(saveCallback), it->second); in Save() [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 …]
|