Searched refs:urllib (Results 1 - 25 of 62) sorted by relevance

123

/external/chromium_org/tools/json_schema_compiler/highlighters/
H A Dhilite_me_highlighter.py5 import urllib namespace
17 urllib.urlencode([
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Durlfetcher.py31 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.
H A Dzipfileset.py24 import urllib namespace
42 temp_file = NetworkTransaction().run(lambda: urllib.urlretrieve(zip_url)[0])
H A Dpath.py35 import urllib namespace
113 # when converting filenames to files. Instead of using urllib's default
116 return urllib.quote(path, safe='/+:')
/external/chromium_org/third_party/jstemplate/
H A Dcompile.py9 import urllib namespace
23 params = urllib.urlencode(
/external/chromium_org/chrome/test/chromedriver/
H A Darchive.py9 import urllib namespace
32 return urllib.urlopen(url % _GetDownloadPlatform()).read()
65 urllib.urlretrieve(url, zip_path)
/external/chromium_org/tools/deep_memory_profiler/visualizer/
H A Dapp.py13 import urllib namespace
74 self.redirect('/?' + urllib.urlencode(req_params))
92 self.response.write(url + '?' + urllib.urlencode(req_params))
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/
H A Dconfirmdiff.py29 import urllib namespace
55 url = "file://%s" % urllib.quote(pretty_diff_file.name)
/external/chromium_org/tools/
H A Domahaproxy.py17 import urllib namespace
24 data = json.load(urllib.urlopen(URL))
H A Dsync-webkit-git.py21 import urllib namespace
74 f = urllib.urlopen(deps_url)
/external/chromium_org/chrome/test/pyautolib/
H A Dfetch_prebuilt_pyauto.py28 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/
H A Dscan-view10 import urllib namespace
27 o = urllib.urlopen(url)
34 import urllib, webbrowser namespace
/external/chromium_org/tools/telemetry_tools/
H A Dtelemetry_bootstrap.py21 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()
/external/wpa_supplicant_8/wpa_supplicant/examples/
H A Dwpas-test.py16 import urllib namespace
22 r += urllib.quote(chr(c))
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/
H A Dmain.py13 import urllib namespace
52 'userid': urllib.quote_plus(userid),
/external/chromium-trace/
H A Dupdate.py3 import httplib, json, optparse, os, urllib, shutil, subprocess, sys namespace
57 params = urllib.urlencode([
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/
H A Dmain.py13 import urllib namespace
53 'userid': urllib.quote_plus(userid),
/external/chromium_org/chrome/test/functional/
H A Dwebpagereplay.py19 import urllib namespace
176 if (200 == urllib.urlopen(http_up_url, None, {}).getcode() and
177 200 == urllib.urlopen(https_up_url, None, {}).getcode()):
214 urllib.urlopen(url % self.http_port, None, {})
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/
H A D__init__.py25 import urllib namespace
86 return urllib.quote(s, safe='~')
138 return urllib.urlencode(data)
206 return urllib.urlencode(data)
328 return urllib.urlencode(self, True).replace('+', '%20')
357 urllib.urlencode(query, True), fragment)
387 encoded_str = urllib.urlencode(sorted(items))
503 params[param_parts[0]] = urllib.unquote(param_parts[1].strip('\"'))
511 parameters[k] = urllib.unquote(v[0])
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/
H A D__init__.py25 import urllib namespace
86 return urllib.quote(s, safe='~')
138 return urllib.urlencode(data)
206 return urllib.urlencode(data)
328 return urllib.urlencode(self, True).replace('+', '%20')
357 urllib.urlencode(query, True), fragment)
387 encoded_str = urllib.urlencode(sorted(items))
503 params[param_parts[0]] = urllib.unquote(param_parts[1].strip('\"'))
511 parameters[k] = urllib.unquote(v[0])
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
H A Dgardeningserver.py32 import urllib namespace
50 # We can't use urllib.encode() here because that encodes spaces as plus signs and the buildbots don't decode those properly.
51 arg_string = ('?' + '&'.join("%s=%s" % (key, urllib.quote(value)) for (key, value) in args.items())) if args else ''
/external/chromium_org/third_party/jinja2/
H A D_compat.py139 from urllib.parse import quote_from_bytes as url_quote
141 from urllib import quote as url_quote
/external/chromium_org/tools/oopif/
H A Diframe_server.py32 import urllib namespace
153 'params': urllib.urlencode(params.__dict__),
/external/chromium_org/tools/python/google/
H A Dhttpd_utils.py14 import urllib namespace
35 response = urllib.urlopen(url)
/external/chromium_org/v8/test/test262/
H A Dtestcfg.py33 import urllib namespace
99 urllib.urlretrieve(archive_url, archive_name)

Completed in 3865 milliseconds

123