/third_party/boost/tools/auto_index/src/ |
D | file_scanning.cpp | 258 std::string unquote(const std::string& s) in unquote() function 347 std::string f = unquote(what[1].str()); in process_script() 370 debug = unquote(what[1].str()); in process_script() 374 add_file_scanner(unquote(what.str(1)), unquote(what.str(2)), unquote(what.str(3)), in process_script() 375 unquote(what.str(4)), unquote(what.str(5)), unquote(what.str(6))); in process_script() 379 std::string d = unquote(what[1].str()); in process_script() 380 std::string m = unquote(what[2].str()); in process_script() 381 bool r = unquote(what[3].str()) == "true"; in process_script() 407 std::string a = unquote(what[2].str()); in process_script() 408 std::string b = unquote(what[3].str()); in process_script() [all …]
|
/third_party/boost/tools/build/src/util/ |
D | utility.jam | 132 rule unquote ( value ? ) 177 assert.result : unquote ; 178 assert.result "" : unquote "" ; 179 assert.result "" : unquote \"\" ; 180 assert.result \" : unquote \"\"\" ; 181 assert.result \"\" : unquote \"\"\"\" ; 182 assert.result foo : unquote foo ; 183 assert.result \"foo : unquote \"foo ; 184 assert.result foo\" : unquote foo\" ; 185 assert.result foo : unquote \"foo\" ; [all …]
|
D | __init__.py | 180 def unquote(s): function
|
/third_party/python/Lib/email/ |
D | utils.py | 222 def unquote(str): function 272 value = unquote(value) 297 s = urllib.parse.unquote(s, encoding="latin-1") 311 return unquote(value) 325 return unquote(text)
|
D | quoprimime.py | 118 def unquote(s): function 263 decoded += unquote(line[i:i+3]) 287 return unquote(s)
|
D | message.py | 99 return value[0], value[1], utils.unquote(value[2]) 101 return utils.unquote(value) 645 def get_params(self, failobj=None, header='content-type', unquote=True): argument 662 if unquote: 668 unquote=True): argument 695 if unquote: 735 unquote=requote): 763 for p, v in self.get_params(header=header, unquote=requote): 799 params = self.get_params(header=header, unquote=requote)
|
/third_party/python/Lib/test/ |
D | test_urllib.py | 1093 result = urllib.parse.unquote(given) 1103 result = urllib.parse.unquote(escape_string) 1107 self.assertRaises((TypeError, AttributeError), urllib.parse.unquote, None) 1108 self.assertRaises((TypeError, AttributeError), urllib.parse.unquote, ()) 1114 result = urllib.parse.unquote(given) 1119 result = urllib.parse.unquote(given) 1124 result = urllib.parse.unquote(given) 1160 result = urllib.parse.unquote(given) 1171 result = urllib.parse.unquote(given) 1214 result = urllib.parse.unquote(given) [all …]
|
D | ssl_servers.py | 65 path = os.path.normpath(urllib.parse.unquote(path))
|
/third_party/python/Lib/ |
D | nturl2path.py | 29 return urllib.parse.unquote('\\'.join(components)) 39 path = path + '\\' + urllib.parse.unquote(comp)
|
/third_party/ninja/src/ |
D | browse.py | 42 from urllib.request import unquote 44 from urllib2 import unquote 170 target = unquote(self.path[1:])
|
/third_party/python/Lib/http/ |
D | server.py | 776 displaypath = urllib.parse.unquote(self.path, 779 displaypath = urllib.parse.unquote(path) 830 path = urllib.parse.unquote(path, errors='surrogatepass') 832 path = urllib.parse.unquote(path) 906 path = urllib.parse.unquote(path) 1092 uqrest = urllib.parse.unquote(rest)
|
/third_party/python/Lib/urllib/ |
D | request.py | 104 urlparse, urlsplit, urljoin, unwrap, quote, unquote, 380 self.host = unquote(self.host) 816 user_pass = '%s:%s' % (unquote(user), 817 unquote(password)) 820 hostport = unquote(hostport) 1550 host = unquote(host) 1560 dirs = list(map(unquote, dirs)) 1684 return unquote(pathname) 1891 host = unquote(host) 1915 proxy_passwd = unquote(proxy_passwd) [all …]
|
D | robotparser.py | 114 line[1] = urllib.parse.unquote(line[1].strip()) 168 parsed_url = urllib.parse.urlparse(urllib.parse.unquote(url))
|
D | parse.py | 644 def unquote(string, encoding='utf-8', errors='replace'): function 772 name = unquote(name, encoding=encoding, errors=errors) 775 value = unquote(value, encoding=encoding, errors=errors) 787 return unquote(string, encoding, errors)
|
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/ |
D | IcuDataDumper.java | 204 RbValue.of(unquote(match.get(1)))); in processLine() 220 wrappedValue += unquote(match.get(0)); in processLine() 296 private static String unquote(String s) { in unquote() method in IcuDataDumper.IcuDataParser
|
/third_party/boost/boost/beast/http/impl/ |
D | rfc7230.ipp | 23 unquote(string_view sr) 53 s_ = unquote(pi_.v.second);
|
D | rfc7230.hpp | 92 unquote(string_view sr);
|
/third_party/boost/libs/beast/include/boost/beast/http/impl/ |
D | rfc7230.ipp | 23 unquote(string_view sr) 53 s_ = unquote(pi_.v.second);
|
D | rfc7230.hpp | 92 unquote(string_view sr);
|
/third_party/boost/tools/build/src/ |
D | build_system.py | 252 test_config = b2.util.unquote(m.group(1)) 293 user_config = b2.util.unquote(user_config)
|
/third_party/python/Lib/wsgiref/ |
D | simple_server.py | 85 env['PATH_INFO'] = urllib.parse.unquote(path, 'iso-8859-1')
|
/third_party/python/Doc/library/ |
D | email.compat32-message.rst | 473 .. method:: get_params(failobj=None, header='content-type', unquote=True) 480 described in :meth:`get_param` and is unquoted if optional *unquote* is 493 .. method:: get_param(param, failobj=None, header='content-type', unquote=True) 522 ``VALUE`` item in the 3-tuple) is always unquoted, unless *unquote* is set 593 :func:`email.utils.unquote`. 601 string will always be unquoted as per :func:`email.utils.unquote`.
|
/third_party/node/deps/icu-small/source/i18n/unicode/ |
D | tzfmt.h | 1026 static UnicodeString& unquote(const UnicodeString& pattern, UnicodeString& result);
|
/third_party/skia/third_party/externals/icu/source/i18n/unicode/ |
D | tzfmt.h | 1026 static UnicodeString& unquote(const UnicodeString& pattern, UnicodeString& result);
|
/third_party/icu/icu4c/source/i18n/unicode/ |
D | tzfmt.h | 1026 static UnicodeString& unquote(const UnicodeString& pattern, UnicodeString& result);
|