HomeSort by relevance Sort by last modified time
    Searched refs:urlparse (Results 26 - 50 of 88) sorted by null

12 3 4

  /external/markdown/markdown/
inlinepatterns.py 46 from urlparse import urlparse, urlunparse namespace
252 "javascript" but some aliases will appear to `urlparse()` to have no
261 scheme, netloc, path, params, query, fragment = url = urlparse(url)
  /external/chromium_org/chrome/common/extensions/docs/server2/
redirector.py 6 from urlparse import urlsplit
render_servlet.py 9 from urlparse import urlsplit
  /external/chromium_org/tools/json_schema_compiler/
preview.py 22 import urlparse namespace
31 parsed_url = urlparse.urlparse(self.path)
265 query_dict = urlparse.parse_qs(parsed_url.query)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
xmlbuilder.py 226 import posixpath, urlparse namespace
227 parts = urlparse.urlparse(systemId)
233 source.baseURI = urlparse.urlunparse(parts)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
xmlbuilder.py 226 import posixpath, urlparse namespace
227 parts = urlparse.urlparse(systemId)
233 source.baseURI = urlparse.urlunparse(parts)
  /external/chromium_org/chrome/test/install_test/
chrome_proxy_server.py 15 from urlparse import urlparse namespace
83 (scheme, netloc, path, params, query, flag) = urlparse(self.path, 'http')
  /external/chromium_org/chrome/test/pyautolib/
pyauto_utils.py 15 import urlparse namespace
210 parsed = urlparse.urlparse(url)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
upload.py 9 import urlparse namespace
65 urlparse.urlparse(self.repository)
register.py 12 import urlparse namespace
164 host = urlparse.urlparse(self.repository)[1]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
upload.py 9 import urlparse namespace
65 urlparse.urlparse(self.repository)
register.py 12 import urlparse namespace
164 host = urlparse.urlparse(self.repository)[1]
  /external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/command/
update.py 11 import urlparse namespace
266 path = urlparse.urlparse(url)[2]
379 path = urlparse.urlparse(url)[2]
  /external/chromium_org/native_client_sdk/src/tools/
httpd.py 16 import urlparse namespace
136 _, _, _, query, _ = urlparse.urlsplit(self.path)
138 params = urlparse.parse_qs(query)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
layout_tests_mover.py 50 import urlparse namespace
201 if reference.startswith('/') or urlparse.urlparse(reference).scheme:
  /external/chromium_org/sync/tools/testserver/
chromiumsync.py 20 import urlparse namespace
    [all...]
  /external/chromium_org/chrome/tools/
history-viz.py 18 import urlparse namespace
38 scheme, loc, path, query, fragment = urlparse.urlsplit(url)
webforms_aggregator.py 36 import urlparse namespace
124 link_parsed = urlparse.urlparse(link)
165 link = urlparse.urljoin(self._url, link)
218 link = urlparse.urljoin(self._url, link)
219 link_parsed = urlparse.urlparse(link)
279 self._url = urlparse.urljoin(
304 url_parsed = urlparse.urlparse(self._url
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
urllib2.py 103 import urlparse namespace
189 host = urlparse.urlparse(url)[1]
586 urlparts = urlparse.urlparse(newurl)
590 newurl = urlparse.urlunparse(urlparts)
592 newurl = urlparse.urljoin(req.get_full_url(), newurl)
782 parts = urlparse.urlsplit(uri)
    [all...]
urlparse.py 3 urlparse module is based upon the following RFC specifications.
23 urlparse module should conform with it. The urlparse module is
33 __all__ = ["urlparse", "urlunparse", "urljoin", "urldefrag",
136 def urlparse(url, scheme='', allow_fragments=True): function
258 urlparse(base, '', allow_fragments)
260 urlparse(url, bscheme, allow_fragments)
310 s, n, p, a, q, frag = urlparse(url)
327 # because urllib uses urlparse methods (urljoin). If you update this function,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
urllib2.py 103 import urlparse namespace
189 host = urlparse.urlparse(url)[1]
586 urlparts = urlparse.urlparse(newurl)
590 newurl = urlparse.urlunparse(urlparts)
592 newurl = urlparse.urljoin(req.get_full_url(), newurl)
782 parts = urlparse.urlsplit(uri)
    [all...]
urlparse.py 3 urlparse module is based upon the following RFC specifications.
23 urlparse module should conform with it. The urlparse module is
33 __all__ = ["urlparse", "urlunparse", "urljoin", "urldefrag",
136 def urlparse(url, scheme='', allow_fragments=True): function
258 urlparse(base, '', allow_fragments)
260 urlparse(url, bscheme, allow_fragments)
310 s, n, p, a, q, frag = urlparse(url)
327 # because urllib uses urlparse methods (urljoin). If you update this function,
  /external/chromium_org/chrome/test/functional/
passwords.py 7 from urlparse import urlparse namespace
22 HOSTNAME = 'https://' + urlparse(URL).netloc + '/'
  /external/chromium_org/tools/telemetry/third_party/davclient/
davclient.py 15 import urlparse, httplib, copy, base64, StringIO namespace
61 self._url = urlparse.urlparse(url)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
reflectionhandler.py 41 import urlparse namespace

Completed in 807 milliseconds

12 3 4