/third_party/skia/third_party/externals/oboe/docs/reference/ |
H A D | menudata.js | 25 {text:"Main Page",url:"index.html"}, 26 {text:"Related Pages",url:"pages.html"}, 27 {text:"Namespaces",url:"namespaces.html",children:[ 28 {text:"Namespace List",url:"namespaces.html"}, 29 {text:"Namespace Members",url:"namespacemembers.html",children:[ 30 {text:"All",url:"namespacemembers.html",children:[ 31 {text:"a",url:"namespacemembers.html#index_a"}, 32 {text:"c",url:"namespacemembers.html#index_c"}, 33 {text:"d",url:"namespacemembers.html#index_d"}, 34 {text:"g",url [all...] |
/third_party/node/test/fixtures/wpt/url/ |
H A D | url-searchparams.any.js | 1 function bURL(url, base) { 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_equals(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 [all...] |
H A D | url-setters-stripping.any.js | 31 const url = urlRecord(scheme); 32 url.protocol = String.fromCodePoint(i) + (scheme === "https" ? "http" : "wpt--"); 33 assert_equals(url.protocol, expected + ":", "property"); 34 assert_equals(url.href, urlString({ scheme: expected }), "href"); 39 const url = urlRecord(scheme); 40 url.protocol = (scheme === "https" ? "http" : "wpt--") + String.fromCodePoint(i); 41 assert_equals(url.protocol, expected + ":", "property"); 42 assert_equals(url.href, urlString({ scheme: expected }), "href"); 55 const url = urlRecord(scheme); 56 url[propert [all...] |
H A D | toascii.window.js | 5 if(type === "url") { 8 const url = document.createElement(type) 9 url.href = input 10 return url 20 const typeName = { "url": "URL", "a": "<a>", "area": "<area>" } 21 ;["url", "a", "area"].forEach((type) => { 24 const url = makeURL("url", hostTest.input) 25 assert_equals(url.host, hostTest.output) 26 assert_equals(url [all...] |
H A D | url-constructor.any.js | 34 const url = new URL(expected.input, base); 35 assert_equals(url.href, expected.href, "href") 36 assert_equals(url.protocol, expected.protocol, "protocol") 37 assert_equals(url.username, expected.username, "username") 38 assert_equals(url.password, expected.password, "password") 39 assert_equals(url.host, expected.host, "host") 40 assert_equals(url.hostname, expected.hostname, "hostname") 41 assert_equals(url.port, expected.port, "port") 42 assert_equals(url.pathname, expected.pathname, "pathname") 43 assert_equals(url [all...] |
/third_party/python/Lib/urllib/ |
H A D | parse.py | 250 _DefragResultBase = namedtuple('DefragResult', 'url fragment') 257 DefragResult(url, fragment) 259 A 2-tuple that contains the url without fragment identifier and the fragment 263 _DefragResultBase.url.__doc__ = """The URL with no fragment identifier.""" 327 return self.url + '#' + self.fragment 329 return self.url 346 return self.url + b'#' + self.fragment 348 return self.url 374 def urlparse(url, scheme='', allow_fragments=True): 380 depending on the type of the url paramete [all...] |
/third_party/skia/tools/skiaserve/urlhandlers/ |
H A 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, cons [all...] |
/kernel/linux/linux-5.10/scripts/ |
H A D | get_dvb_firmware | 51 my $url = "http://www.softwarepatch.pl/9999ccd06a4813cb827dbb0005071c71/$sourcefile"; 58 wgetfile($sourcefile, $url); 68 my $url = "http://www.avermedia.com/software/$sourcefile"; 77 wgetfile($sourcefile, $url); 88 my $url = "http://www.technotrend.de/new/217g/$sourcefile"; 95 wgetfile($sourcefile, $url); 106 my $url = "http://technotrend.com.ua/download/software/219/$sourcefile"; 113 wgetfile($sourcefile, $url); 124 my $url = "http://www.lifeview.hk/dbimages/document/$sourcefile"; 131 wgetfile($sourcefile, $url); [all...] |
/kernel/linux/linux-6.6/scripts/ |
H A D | get_dvb_firmware | 51 my $url = "http://www.softwarepatch.pl/9999ccd06a4813cb827dbb0005071c71/$sourcefile"; 58 wgetfile($sourcefile, $url); 68 my $url = "http://www.avermedia.com/software/$sourcefile"; 77 wgetfile($sourcefile, $url); 88 my $url = "http://www.technotrend.de/new/217g/$sourcefile"; 95 wgetfile($sourcefile, $url); 106 my $url = "http://technotrend.com.ua/download/software/219/$sourcefile"; 113 wgetfile($sourcefile, $url); 124 my $url = "http://www.lifeview.hk/dbimages/document/$sourcefile"; 131 wgetfile($sourcefile, $url); [all...] |
/third_party/libevdev/doc/html/ |
H A D | menudata.js | 26 {text:"Main Page",url:"index.html"}, 27 {text:"Related Pages",url:"pages.html"}, 28 {text:"Modules",url:"modules.html"}, 29 {text:"Files",url:"files.html",children:[ 30 {text:"File List",url:"files.html"}, 31 {text:"Globals",url:"globals.html",children:[ 32 {text:"All",url:"globals.html",children:[ 33 {text:"l",url:"globals.html#index_l"}]}, 34 {text:"Functions",url:"globals_func.html",children:[ 35 {text:"l",url [all...] |
/third_party/node/test/fixtures/wpt/common/security-features/resources/ |
H A D | common.sub.js | 78 @property{string} url 133 * @param {string} url The endpoint URL for the XHR. 139 function xhrRequest(url, responseType) { 142 xhr.open('GET', url, true); 322 requestVia*(url, additionalAttributes) functions send a subresource 325 @param {string} url 379 * @param {string} url The src for the iframe. 382 function requestViaIframe(url, additionalAttributes) { 385 Object.assign({"src": url}, additionalAttributes), 399 * @param {string} url Th [all...] |
/third_party/node/lib/internal/modules/esm/ |
H A D | get_format.js | 28 const { fileURLToPath } = require('internal/url'); 58 * `require('node:path').extname(require('node:url').fileURLToPath(url))` 60 * @param {URL} url 63 function extname(url) { 64 const { pathname } = url; 81 * @param {URL} url 83 function underNodeModules(url) { 84 if (url.protocol !== 'file:') { return false; } // We determine module types for other protocols based on MIME header 86 return StringPrototypeIncludes(url [all...] |
H A D | translators.js | 43 const { fileURLToPath, URL } = require('internal/url'); 124 * @param {string} url - The URL to convert. 126 function errPath(url) { 127 const parsed = new URL(url); 131 return url; 138 * @param {string} options.url - The URL of the module requesting the import. 142 async function importModuleDynamically(specifier, { url }, attributes) { 143 return asyncESM.esmLoader.import(specifier, url, attributes); 147 translators.set('module', async function moduleStrategy(url, source, isMain) { 150 maybeCacheSourceMap(url, sourc [all...] |
H A D | initialize_import_meta.js | 20 let url; 27 ({ url } = loader.resolveSync(specifier, parentURL)); 28 return url; 33 ({ url } = error); 34 if (url) { 35 return url; 46 * @param {{url: string}} context 48 * @returns {{url: string, resolve?: Function}} 51 const { url } = context; 55 meta.resolve = createImportMetaResolve(url, loade [all...] |
/third_party/node/test/fixtures/wpt/FileAPI/url/resources/ |
H A 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) [all...] |
/third_party/skia/third_party/externals/microhttpd/src/testcurl/ |
H A D | test_long_header.c | 70 const char *url, in ahc_echo() 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() 68 ahc_echo(void *cls, struct MHD_Connection *connection, const char *url, const char *method, const char *version, const char *upload_data, size_t *upload_data_size, void **unused) ahc_echo() argument 168 char *url; testLongHeaderGet() local [all...] |
/third_party/node/test/parallel/ |
H A D | test-whatwg-url-toascii.js | 13 fixtures.path('wpt', 'url', 'resources', 'toascii.json') 19 // Refs: https://github.com/w3c/web-platform-tests/blob/4839a0a804/url/toascii.window.js 35 if(type === "url") { 38 const url = document.createElement(type) 39 url.href = input 40 return url 50 const typeName = { "url": "URL", "a": "<a>", "area": "<area>" } 51 // ;["url", "a", "area"].forEach((type) => { 52 ;["url"].forEach((type) => { 55 const url [all...] |
H A D | test-http-agent-scheduling.js | 14 function makeRequest(url, agent, callback) { 16 .request(url, { agent }, (res) => { 29 function bulkRequest(url, agent, done) { 34 makeRequest(url, agent, callback); 51 const url = `http://localhost:${server.address().port}`; 57 bulkRequest(url, agent, (ports) => { 58 makeRequest(url, agent, (port) => { 60 makeRequest(url, agent, (port) => { 62 makeRequest(url, agent, (port) => { 78 const url [all...] |
/third_party/python/Lib/ |
H A D | webbrowser.py | 69 # It is recommended one does "import webbrowser" and uses webbrowser.open(url) 72 def open(url, new=0, autoraise=True): 73 """Display url using the default browser. 75 If possible, open url in a location determined by new. 87 if browser.open(url, new, autoraise): 91 def open_new(url): 92 """Open url in a new window of the default browser. 94 If not possible, then open url in the only browser window. 96 return open(url, 1) 98 def open_new_tab(url) [all...] |
/third_party/node/deps/undici/src/lib/core/ |
H A D | util.js | 33 function buildURL (url, queryParams) { 34 if (url.includes('?') || url.includes('#')) { 35 throw new Error('Query params cannot be passed when url already contains "?" or "#".') 41 url += '?' + stringified 44 return url 47 function parseURL (url) { 48 if (typeof url === 'string') { 49 url = new URL(url) [all...] |
/third_party/python/Lib/test/ |
H A D | test_robotparser.py | 24 def get_agent_and_url(self, url): 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 362 def url(self, path): global() member in NetworkTestCase [all...] |
/third_party/node/test/fixtures/wpt/url/resources/ |
H A D | a-element.js | 7 function bURL(url, base) { 10 a.setAttribute("href", url); 38 var url = bURL(expected.input, base) 40 if(url.protocol !== ':') { 43 assert_equals(url.href, expected.input, "failure should set href to input") 47 assert_equals(url.href, expected.href, "href") 48 assert_equals(url.protocol, expected.protocol, "protocol") 49 assert_equals(url.username, expected.username, "username") 50 assert_equals(url.password, expected.password, "password") 51 assert_equals(url [all...] |
/third_party/node/test/fixtures/wpt/FileAPI/url/ |
H A D | url-in-tags-revoke.window.js | 7 const url = URL.createObjectURL(blob); 10 frame.setAttribute('src', url); 13 URL.revokeObjectURL(url); 25 const url = URL.createObjectURL(blob); 33 frame.contentWindow.location = url; 34 URL.revokeObjectURL(url); 46 const url = URL.createObjectURL(blob); 47 const win = window.open(url); 48 URL.revokeObjectURL(url); 79 const url [all...] |
/third_party/skia/third_party/externals/microhttpd/src/testzzuf/ |
H A D | test_long_header.c | 72 const char *url, in ahc_echo() 84 response = MHD_create_response_from_buffer (strlen (url), in ahc_echo() 85 (void *) url, in ahc_echo() 100 char *url; in testLongUrlGet() local 123 url = malloc (VERY_LONG); in testLongUrlGet() 124 memset (url, 'a', VERY_LONG); in testLongUrlGet() 125 url[VERY_LONG - 1] = '\0'; in testLongUrlGet() 126 memcpy (url, "http://localhost:11081/", in testLongUrlGet() 128 curl_easy_setopt (c, CURLOPT_URL, url); in testLongUrlGet() 149 free (url); in testLongUrlGet() 70 ahc_echo(void *cls, struct MHD_Connection *connection, const char *url, const char *method, const char *version, const char *upload_data, size_t *upload_data_size, void **unused) ahc_echo() argument 161 char *url; testLongHeaderGet() local [all...] |
/third_party/skia/tools/skiaserve/tester/ |
H A D | tester.py | 42 def __init__(self, url, output_dir): 43 self.url = url 55 return Check(requests.get(self.url + '/info')) 62 return Check(requests.post(self.url + '/new', files=files)) 66 return WriteJson(Check(requests.get(self.url + '/cmd')), path) 70 url = self.url + '/img/' + str(opcount) 72 return WritePng(Check(requests.get(url)), path) 75 return Check(requests.post(self.url [all...] |