/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
nturl2path.py | 22 return urllib.unquote('\\'.join(components)) 32 path = path + '\\' + urllib.unquote(comp)
|
macurl2path.py | 49 # and finally unquote slashes and other funny characters 50 return urllib.unquote(rv)
|
urlparse.py | 325 # unquote method for parse_qs and parse_qsl 335 def unquote(s): function 336 """unquote('abc%20def') -> 'abc def'.""" 344 append(unquote(str(bits[i])).decode('latin1')) 423 name = unquote(nv[0].replace('+', ' ')) 424 value = unquote(nv[1].replace('+', ' '))
|
SimpleHTTPServer.py | 114 displaypath = cgi.escape(urllib.unquote(self.path)) 152 path = posixpath.normpath(urllib.unquote(path))
|
robotparser.py | 109 line[1] = urllib.unquote(line[1].strip()) 136 parsed_url = urlparse.urlparse(urllib.unquote(url))
|
urllib.py | 36 "urlcleanup", "quote", "quote_plus", "unquote", "unquote_plus", 56 return unquote(pathname) 299 host = unquote(host) 324 proxy_passwd = unquote(proxy_passwd) 330 user_passwd = unquote(user_passwd) 394 host = unquote(host) 414 proxy_passwd = unquote(proxy_passwd) 419 user_passwd = unquote(user_passwd) 517 host = unquote(host) 527 path = unquote(path 1204 def unquote(s): function [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
nturl2path.py | 22 return urllib.unquote('\\'.join(components)) 32 path = path + '\\' + urllib.unquote(comp)
|
macurl2path.py | 49 # and finally unquote slashes and other funny characters 50 return urllib.unquote(rv)
|
urlparse.py | 325 # unquote method for parse_qs and parse_qsl 335 def unquote(s): function 336 """unquote('abc%20def') -> 'abc def'.""" 344 append(unquote(str(bits[i])).decode('latin1')) 423 name = unquote(nv[0].replace('+', ' ')) 424 value = unquote(nv[1].replace('+', ' '))
|
SimpleHTTPServer.py | 114 displaypath = cgi.escape(urllib.unquote(self.path)) 152 path = posixpath.normpath(urllib.unquote(path))
|
robotparser.py | 109 line[1] = urllib.unquote(line[1].strip()) 136 parsed_url = urlparse.urlparse(urllib.unquote(url))
|
urllib.py | 36 "urlcleanup", "quote", "quote_plus", "unquote", "unquote_plus", 56 return unquote(pathname) 299 host = unquote(host) 324 proxy_passwd = unquote(proxy_passwd) 330 user_passwd = unquote(user_passwd) 394 host = unquote(host) 414 proxy_passwd = unquote(proxy_passwd) 419 user_passwd = unquote(user_passwd) 517 host = unquote(host) 527 path = unquote(path 1204 def unquote(s): function [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/ |
utils.py | 20 'unquote', 229 # rfc822.unquote() doesn't properly de-backslash-ify in Python pre-2.3. 230 def unquote(str): 289 value = unquote(value) 311 s = urllib.unquote(s) 325 rawval = unquote(value[2]) 333 return unquote(value) 222 def unquote(str): function
|
message.py | 87 return value[0], value[1], utils.unquote(value[2]) 89 return utils.unquote(value) 515 def get_params(self, failobj=None, header='content-type', unquote=True): 526 Content-Type. If unquote is True, the value is unquoted. 532 if unquote: 538 unquote=True): 560 VALUE item in the 3-tuple) is always unquoted, unless unquote is set 567 if unquote: 607 unquote=requote): 632 for p, v in self.get_params(header=header, unquote=requote) [all...] |
quoprimime.py | 43 'unquote', 105 def unquote(s): 304 decoded += unquote(line[i:i+3]) 329 return unquote(s) 104 def unquote(s): function
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/ |
utils.py | 20 'unquote', 229 # rfc822.unquote() doesn't properly de-backslash-ify in Python pre-2.3. 230 def unquote(str): 289 value = unquote(value) 311 s = urllib.unquote(s) 325 rawval = unquote(value[2]) 333 return unquote(value) 222 def unquote(str): function
|
message.py | 87 return value[0], value[1], utils.unquote(value[2]) 89 return utils.unquote(value) 515 def get_params(self, failobj=None, header='content-type', unquote=True): 526 Content-Type. If unquote is True, the value is unquoted. 532 if unquote: 538 unquote=True): 560 VALUE item in the 3-tuple) is always unquoted, unless unquote is set 567 if unquote: 607 unquote=requote): 632 for p, v in self.get_params(header=header, unquote=requote) [all...] |
quoprimime.py | 43 'unquote', 105 def unquote(s): 304 decoded += unquote(line[i:i+3]) 329 return unquote(s) 104 def unquote(s): function
|
/external/chromium_org/native_client_sdk/src/tools/tests/ |
quote_test.py | 36 sys.stdout.write('Invoking unquote(%s, %s, %s)\n' % 41 return quote.unquote(in_string, specials, *args, **kwargs) 109 parser.add_option('-u', '--unquote-input', dest='unquote_input', 110 action='store_true', help='Unquote command line argument') 124 # NB: there are inputs x for which quote(unquote(x) != x, but 125 # there should be no input x for which unquote(quote(x)) != x. 127 qq = quote.unquote(word, options.special_chars, options.quote) 128 sys.stdout.write('unquote(%s) = %s\n' 130 # There is no expected output for unquote -- this is just for 135 qq = quote.unquote(q, options.special_chars, options.quote [all...] |
/external/chromium_org/native_client_sdk/src/tools/ |
quote.py | 27 def unquote(input_str, specials, escape='\\'): function
|
/external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/third_party/fancy_urllib/ |
__init__.py | 316 user_pass = "%s:%s" % (urllib2.unquote(user), urllib2.unquote(password)) 320 hostport = urllib2.unquote(hostport)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_rfc822.py | 249 eq(rfc822.unquote('"foo\\\\wacky\\"name"'), 'foo\\wacky"name')
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/ |
simple_server.py | 82 env['PATH_INFO'] = urllib.unquote(path)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_rfc822.py | 249 eq(rfc822.unquote('"foo\\\\wacky\\"name"'), 'foo\\wacky"name')
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/ |
simple_server.py | 82 env['PATH_INFO'] = urllib.unquote(path)
|