Home
last modified time | relevance | path

Searched refs:new_url (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython2/Doc/tools/static/
Dswitchers.js78 var new_url = url.replace('.org/' + current_language + current_version,
80 if (new_url != url) {
82 new_url,
99 var new_url = url.replace('.org/' + current_language + current_version,
101 if (new_url != url) {
103 new_url,
/external/python/cpython3/Doc/tools/static/
Dswitchers.js88 var new_url = url.replace('.org/' + current_language + current_version,
90 if (new_url != url) {
92 new_url,
109 var new_url = url.replace('.org/' + current_language + current_version,
111 if (new_url != url) {
113 new_url,
/external/openscreen/cast/cast_core/api/v2/
Durl_rewrite.proto103 // `new_url`.
104 // - `url_ends_with` and `new_url` must be set.
108 // - `new_url` must be a [valid URL
112 string new_url = 2; field
/external/python/cpython2/Lib/
DSimpleHTTPServer.py78 new_url = urlparse.urlunsplit(new_parts)
79 self.send_header("Location", new_url)
/external/harfbuzz_ng/src/
Dhb-coretext.cc231 CFURLRef new_url = nullptr; in create_ct_font() local
236 new_url = CFURLCreateFromFSRef (NULL, &fsref); in create_ct_font()
238 new_url = (CFURLRef) CTFontCopyAttribute (new_ct_font, kCTFontURLAttribute); in create_ct_font()
242 if (!original_url || !new_url || CFEqual (original_url, new_url)) { in create_ct_font()
249 if (new_url) in create_ct_font()
250 CFRelease (new_url); in create_ct_font()
/external/rust/crates/url/tests/
Ddata.rs146 let new_url: Url = serde_json::from_slice(&bytes).unwrap(); in check_invariants() localVariable
147 passed &= test_eq_eprint(url.to_string(), &new_url.to_string(), name, comment); in check_invariants()
/external/python/setuptools/setuptools/
Dpackage_index.py453 for new_url in find_external_links(url, page):
455 base, frag = egg_info_for_url(new_url)
458 new_url += '#egg=%s-%s' % (pkg, ver)
461 self.scan_url(new_url)
1063 new_url = urllib.parse.urlunparse(parts)
1064 request = urllib.request.Request(new_url)
/external/python/apitools/apitools/base/py/
Dbase_api.py161 new_url = url[1:] if url.startswith('/') else url
162 return new_base + new_url
/external/python/google-api-python-client/googleapiclient/
Ddiscovery.py618 new_url = url[1:] if url.startswith("/") else url
619 return new_base + new_url
/external/python/cpython3/Lib/http/
Dserver.py690 new_url = urllib.parse.urlunsplit(new_parts)
691 self.send_header("Location", new_url)