HomeSort by relevance Sort by last modified time
    Searched refs:netloc (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/tools/oopif/
iframe_server.py 100 no_port = urlpath.netloc.split(':')[0]
145 def make_src(scheme, netloc, path, params):
149 return '%(scheme)s://%(netloc)s%(path)s?%(params)s' % {
151 'netloc': netloc,
165 netloc_paths = urlpath.netloc.split(':')
209 'url': make_src(urlpath.scheme, urlpath.netloc, urlpath.path, params),
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/
__init__.py 183 scheme, netloc, path, params, query, fragment = parts[:6]
188 return urlparse.urlunparse((scheme, netloc, path, params,
281 scheme, netloc, path, params, query, fragment = urlparse.urlparse(value)
284 if scheme == 'http' and netloc[-3:] == ':80':
285 netloc = netloc[:-3]
286 elif scheme == 'https' and netloc[-4:] == ':443':
287 netloc = netloc[:-4]
292 self.normalized_url = urlparse.urlunparse((scheme, netloc, path, None, None, None)
    [all...]
  /external/chromium_org/build/util/lib/common/
util.py 141 conn = httplib.HTTPConnection(parsed.netloc)
  /external/chromium_org/testing/gtest/scripts/
upload.py 758 scheme, netloc, path, params, query, fragment = urlparse.urlparse(url)
759 username, netloc = urllib.splituser(netloc)
762 if netloc.endswith("svn.python.org"):
763 if netloc == "svn.python.org":
766 elif netloc != "pythondev@svn.python.org":
770 elif netloc.endswith("svn.collab.net"):
775 elif netloc.endswith(".googlecode.com"):
777 base = urlparse.urlunparse(("http", netloc, path, params,
782 base = urlparse.urlunparse((scheme, netloc, path, params
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
patch_servlet.py 87 not fnmatch(urlparse(self._request.host).netloc, '*.appspot.com')):
  /external/chromium_org/chrome/test/chromedriver/
util.py 161 conn = httplib.HTTPConnection(parsed.netloc)
  /external/chromium_org/tools/telemetry/telemetry/util/
bootstrap.py 154 root_url = parsed_url.scheme + '://' + parsed_url.netloc
  /external/chromium_org/tools/telemetry/telemetry/page/
__init__.py 152 self._base_dir, parsed_url.netloc + parsed_url.path))
  /external/chromium_org/third_party/markdown/
inlinepatterns.py 375 because it *should* never have any and "netloc" must allow the form:
385 scheme, netloc, path, params, query, fragment = url = urlparse(url)
396 if netloc == '' and scheme not in locless_schemes:

Completed in 311 milliseconds