HomeSort by relevance Sort by last modified time
    Searched refs:urllib (Results 1 - 25 of 111) sorted by null

1 2 3 4 5

  /external/chromium_org/tools/json_schema_compiler/highlighters/
hilite_me_highlighter.py 5 import urllib namespace
17 urllib.urlencode([
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
nturl2path.py 10 import string, urllib namespace
22 return urllib.unquote('\\'.join(components))
32 path = path + '\\' + urllib.unquote(comp)
45 import urllib namespace
54 return urllib.quote('/'.join(components))
60 drive = urllib.quote(comp[0].upper())
65 path = path + '/' + urllib.quote(comp)
macurl2path.py 3 Do not import directly; use urllib instead."""
5 import urllib namespace
16 tp = urllib.splittype(pathname)[0]
50 return urllib.unquote(rv)
76 component = urllib.quote(component[:31], safe='') # We want to quote slashes
robotparser.py 13 import urllib namespace
109 line[1] = urllib.unquote(line[1].strip())
136 parsed_url = urlparse.urlparse(urllib.unquote(url))
139 url = urllib.quote(url)
163 self.path = urllib.quote(path)
209 class URLopener(urllib.FancyURLopener):
211 urllib.FancyURLopener.__init__(self, *args)
221 return urllib.FancyURLopener.http_error_default(self, url, fp, errcode,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
nturl2path.py 10 import string, urllib namespace
22 return urllib.unquote('\\'.join(components))
32 path = path + '\\' + urllib.unquote(comp)
45 import urllib namespace
54 return urllib.quote('/'.join(components))
60 drive = urllib.quote(comp[0].upper())
65 path = path + '/' + urllib.quote(comp)
macurl2path.py 3 Do not import directly; use urllib instead."""
5 import urllib namespace
16 tp = urllib.splittype(pathname)[0]
50 return urllib.unquote(rv)
76 component = urllib.quote(component[:31], safe='') # We want to quote slashes
robotparser.py 13 import urllib namespace
109 line[1] = urllib.unquote(line[1].strip())
136 parsed_url = urlparse.urlparse(urllib.unquote(url))
139 url = urllib.quote(url)
163 self.path = urllib.quote(path)
209 class URLopener(urllib.FancyURLopener):
211 urllib.FancyURLopener.__init__(self, *args)
221 return urllib.FancyURLopener.http_error_default(self, url, fp, errcode,
  /external/chromium_org/third_party/libaddressinput/chromium/tools/
require_fields.py 7 import urllib namespace
41 data = json.load(urllib.urlopen(url))
  /external/chromium_org/third_party/skia/tools/pyutils/
url_utils.py 18 import urllib namespace
40 'file:', urllib.pathname2url(os.path.abspath(filepath)))
61 with contextlib.closing(urllib.urlopen(source_url)) as source_handle:
url_utils_test.py 17 import urllib namespace
37 'file://%s/dir/file' % urllib.pathname2url(os.getcwd()))
  /external/skia/tools/pyutils/
url_utils.py 18 import urllib namespace
40 'file:', urllib.pathname2url(os.path.abspath(filepath)))
61 with contextlib.closing(urllib.urlopen(source_url)) as source_handle:
url_utils_test.py 17 import urllib namespace
37 'file://%s/dir/file' % urllib.pathname2url(os.getcwd()))
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
urlfetcher.py 31 import urllib namespace
41 file_object = urllib.urlopen(url)
49 This is the equivalent of urllib.retrieve() except that we don't return any headers.
  /external/chromium_org/third_party/jstemplate/
compile.py 9 import urllib namespace
23 params = urllib.urlencode(
  /external/chromium_org/chrome/test/chromedriver/
archive.py 9 import urllib namespace
33 return urllib.urlopen(url % _GetDownloadPlatform()).read()
66 urllib.urlretrieve(url, zip_path)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_urllib.py 1 """Regresssion tests for urllib"""
3 import urllib namespace
77 self.returned_obj = urllib.urlopen("file:%s" % self.pathname)
138 self.assertRaises(ValueError,urllib.urlopen,'./' + self.pathname)
157 proxies = urllib.getproxies_environment()
162 self.assertTrue(urllib.proxy_bypass_environment('anotherdomain.com'))
171 fp = urllib.urlopen("http://python.org/")
181 url = 'http://docs.python.org/library/urllib.html#OK'
184 fp = urllib.urlopen(url)
198 self.assertRaises(IOError, urllib.urlopen, "http://python.org/"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_urllib.py 1 """Regresssion tests for urllib"""
3 import urllib namespace
77 self.returned_obj = urllib.urlopen("file:%s" % self.pathname)
138 self.assertRaises(ValueError,urllib.urlopen,'./' + self.pathname)
157 proxies = urllib.getproxies_environment()
162 self.assertTrue(urllib.proxy_bypass_environment('anotherdomain.com'))
171 fp = urllib.urlopen("http://python.org/")
181 url = 'http://docs.python.org/library/urllib.html#OK'
184 fp = urllib.urlopen(url)
198 self.assertRaises(IOError, urllib.urlopen, "http://python.org/"
    [all...]
  /external/chromium_org/tools/deep_memory_profiler/visualizer/
app.py 13 import urllib namespace
74 self.redirect('/?' + urllib.urlencode(req_params))
92 self.response.write(url + '?' + urllib.urlencode(req_params))
  /external/chromium_org/tools/memory_inspector/memory_inspector/backends/
prebuilts_fetcher.py 13 import urllib namespace
36 urllib.urlretrieve(url, local_file_path)
  /external/chromium_org/tools/
omahaproxy.py 17 import urllib namespace
24 data = json.load(urllib.urlopen(URL))
  /external/clang/tools/scan-view/
scan-view 10 import urllib namespace
27 o = urllib.urlopen(url)
34 import urllib, webbrowser namespace
  /prebuilts/misc/darwin-x86/analyzer/tools/scan-view/
scan-view 10 import urllib namespace
27 o = urllib.urlopen(url)
34 import urllib, webbrowser namespace
  /prebuilts/misc/linux-x86/analyzer/tools/scan-view/
scan-view 10 import urllib namespace
27 o = urllib.urlopen(url)
34 import urllib, webbrowser namespace
  /external/chromium_org/third_party/skia/gm/rebaseline_server/
download_actuals_test.py 25 import urllib namespace
  /external/chromium_org/tools/telemetry/telemetry/util/
bootstrap.py 21 import urllib namespace
36 davclient_src = urllib.urlopen(_DAVCLIENT_URL).read()
89 urllib.urlretrieve(self.root_url + src_path, dst_path)
149 exec urllib.urlopen(url).read()

Completed in 1087 milliseconds

1 2 3 4 5