HomeSort by relevance Sort by last modified time
    Searched refs:urllib (Results 1 - 25 of 117) 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/remoting/tools/
gaia_auth.py 7 import urllib namespace
18 params = urllib.urlencode({'Email': email, 'Passwd': passwd,
23 f = urllib.urlopen(self._url, params);
gettoken.py 13 import urllib namespace
  /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.
zipfileset.py 24 import urllib namespace
42 temp_file = NetworkTransaction().run(lambda: urllib.urlretrieve(zip_url)[0])
  /external/chromium_org/third_party/jstemplate/
compile.py 9 import urllib namespace
23 params = urllib.urlencode(
  /external/chromium_org/chrome/test/webdriver/test/
continuous_archive.py 9 import urllib namespace
20 return urllib.urlopen(url % _GetDownloadPlatform()).read()
46 urllib.urlretrieve(url, path)
81 urllib.urlretrieve(url, zip_path)
util.py 14 import urllib namespace
19 Also quotes the url using urllib.quote().
26 quoted_path = drive.upper() + urllib.quote((rest.replace('\\', '/')))
29 quoted_path = urllib.quote(abs_path)
  /external/chromium_org/chrome/test/chromedriver/
archive.py 9 import urllib namespace
32 return urllib.urlopen(url % _GetDownloadPlatform()).read()
65 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...]
test_urllibnet.py 7 import urllib namespace
39 f = _open_with_retry(urllib.urlopen, "http://www.python.org/")
43 """Tests urllib.urlopen using the network.
58 return _open_with_retry(urllib.urlopen, *args)
108 open_url = urllib.FancyURLopener().open(URL)
149 # urllib.urlopen, "http://www.sadflkjsasadf.com/")
150 urllib.urlopen, "http://sadflkjsasf.i.nvali.d/")
153 """Tests urllib.urlretrieve using the network."""
156 return _open_with_retry(urllib.urlretrieve, *args)
207 ("urllib.urlopen.. has been removed", DeprecationWarning))
    [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...]
test_urllibnet.py 7 import urllib namespace
39 f = _open_with_retry(urllib.urlopen, "http://www.python.org/")
43 """Tests urllib.urlopen using the network.
58 return _open_with_retry(urllib.urlopen, *args)
108 open_url = urllib.FancyURLopener().open(URL)
149 # urllib.urlopen, "http://www.sadflkjsasadf.com/")
150 urllib.urlopen, "http://sadflkjsasf.i.nvali.d/")
153 """Tests urllib.urlretrieve using the network."""
156 return _open_with_retry(urllib.urlretrieve, *args)
207 ("urllib.urlopen.. has been removed", DeprecationWarning))
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/
confirmdiff.py 29 import urllib namespace
55 url = "file://%s" % urllib.quote(pretty_diff_file.name)
  /external/chromium_org/tools/
omahaproxy.py 17 import urllib namespace
24 data = json.load(urllib.urlopen(URL))
  /external/chromium_org/chrome/test/pyautolib/
fetch_prebuilt_pyauto.py 28 import urllib namespace
138 chrome_zip = urllib.urlretrieve(self._chrome_zip_url)[0]
142 remoting_zip = urllib.urlretrieve(self._remoting_zip_url)[0]
147 pyautolib_py = urllib.urlretrieve(self._pyautolib_py_url)[0]
150 pyautolib_so = urllib.urlretrieve(self._pyautolib_so_url)[0]
154 ffmpegsumo_so = urllib.urlretrieve(self._ffmpegsumo_so_url)[0]
157 chromedriver = urllib.urlretrieve(self._chromedriver_url)[0]
  /external/clang/tools/scan-view/
scan-view 10 import urllib namespace
27 o = urllib.urlopen(url)
34 import urllib, webbrowser namespace
  /external/chromium_org/tools/telemetry_tools/
telemetry_bootstrap.py 21 import urllib namespace
34 davclient_src = urllib.urlopen(_DAVCLIENT_URL).read()
84 urllib.urlretrieve(self.root_url + src_path, dst_path)
131 DownloadDeps(destination_dir, urllib.urlopen(url).read())
  /external/chromium_org/tools/perf/
run_measurement 8 import urllib namespace
27 bootstrap_txt = urllib.urlopen('http://src.chromium.org/viewvc/chrome/' +

Completed in 464 milliseconds

1 2 3 4 5