/external/libcxx/test/std/input.output/iostream.format/quoted.manip/ |
D | quoted.pass.cpp | 87 std::string unquote ( const char *p, char delim='"', char escape='\\' ) { in unquote() function 157 std::wstring unquote ( const wchar_t *p, wchar_t delim='"', wchar_t escape='\\' ) { in unquote() function 204 assert ( unquote ( "\"abc" ) == "abc" ); in main() 205 assert ( unquote ( L"\"abc" ) == L"abc" ); in main() 207 assert ( unquote ( "abc" ) == "abc" ); // no delimiter in main() 208 assert ( unquote ( L"abc" ) == L"abc" ); // no delimiter in main() 209 assert ( unquote ( "abc def" ) == "abc" ); // no delimiter in main() 210 assert ( unquote ( L"abc def" ) == L"abc" ); // no delimiter in main() 212 assert ( unquote ( "" ) == "" ); // nothing there in main() 213 assert ( unquote ( L"" ) == L"" ); // nothing there in main()
|
/external/libcxx/test/std/experimental/string.view/string.view.nonmem/ |
D | quoted.pass.cpp | 86 std::string unquote ( const char *p, char delim='"', char escape='\\' ) { in unquote() function 152 std::wstring unquote ( const wchar_t *p, wchar_t delim='"', wchar_t escape='\\' ) { in unquote() function 199 assert ( unquote ( "\"abc" ) == "abc" ); in main() 200 assert ( unquote ( L"\"abc" ) == L"abc" ); in main() 202 assert ( unquote ( "abc" ) == "abc" ); // no delimiter in main() 203 assert ( unquote ( L"abc" ) == L"abc" ); // no delimiter in main() 204 assert ( unquote ( "abc def" ) == "abc" ); // no delimiter in main() 205 assert ( unquote ( L"abc def" ) == L"abc" ); // no delimiter in main() 207 assert ( unquote ( "" ) == "" ); // nothing there in main() 208 assert ( unquote ( L"" ) == L"" ); // nothing there in main()
|
/external/chromium-trace/catapult/third_party/WebOb/webob/ |
D | compat.py | 60 from urllib import unquote as url_unquote 87 def unquote(string): function 101 return unquote(s.encode('ascii')).decode('latin-1') 111 name = unquote(nv[0]) 112 value = unquote(nv[1])
|
/external/chromium-trace/catapult/third_party/webapp2/webapp2_extras/ |
D | json.py | 103 def unquote(value, *args, **kwargs): function 108 return decode(urllib.unquote(value), *args, **kwargs)
|
D | routes.py | 214 if not self.regex.match(urllib.unquote(request.path)):
|
/external/chromium-trace/catapult/third_party/webapp2/docs/api/webapp2_extras/ |
D | json.rst | 15 base64 and to quote or unquote the values. 22 .. autofunction:: unquote
|
/external/chromium-trace/catapult/third_party/Paste/paste/util/ |
D | quoting.py | 8 from six.moves.urllib.parse import quote, unquote 81 url_unquote = unquote
|
/external/chromium-trace/catapult/third_party/webapp2/tests/ |
D | request_test.py | 149 z = urllib.unquote(y).decode('utf8') 164 w = urllib.unquote(req.cookies.get('foo').encode('utf8')).decode('utf8') 179 unquoted_cookie_value = urllib.unquote(cookie_value).decode('utf-8')
|
D | extras_json_test.py | 33 … self.assertEqual(json.unquote('%22%3Cscript%3Ealert%28%5C%22hello%5C%22%29%3C%5C/script%3E%22'),
|
D | webapp1_test.py | 121 final_value = urllib.unquote(stored_value).decode('utf-8')
|
/external/jetty/src/java/org/eclipse/jetty/util/ |
D | QuotedStringTokenizer.java | 467 public static String unquote(String s) in unquote() method in QuotedStringTokenizer 469 return unquote(s,false); in unquote() 477 public static String unquote(String s, boolean lenient) in unquote() method in QuotedStringTokenizer
|
D | StringUtil.java | 215 public static String unquote(String s) in unquote() method in StringUtil 217 return QuotedStringTokenizer.unquote(s); in unquote()
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ |
D | compat.py | 55 from boto.vendored.six.moves.urllib.parse import parse_qs, quote, unquote, \
|
/external/chromium-trace/catapult/third_party/Paste/paste/ |
D | url.py | 7 from six.moves.urllib.parse import parse_qsl, quote, unquote, urlencode 105 return self._add_vars({unquote(name): unquote(value)})
|
D | wsgilib.py | 21 from six.moves.urllib.parse import unquote, urlsplit 307 path_info = unquote(path_info)
|
/external/clang/tools/clang-format/ |
D | clang-format-bbedit.applescript | 8 …return do shell script "python -c \"import urllib, urlparse, sys; print urllib.unquote(urlparse.ur…
|
/external/clang/tools/scan-view/share/ |
D | ScanView.py | 194 name = urllib.unquote(name.replace('+', ' ')) 195 value = urllib.unquote(value.replace('+', ' ')) 652 path = posixpath.normpath(urllib.unquote(o.path))
|
/external/autotest/frontend/afe/ |
D | rpc_handler.py | 55 return urllib.unquote(request.META['QUERY_STRING'])
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/s3/ |
D | bucketlistresultset.py | 42 marker = urllib.parse.unquote(marker)
|
/external/chromium-trace/catapult/third_party/webapp2/ |
D | TODO | 43 #2398 (routing based on the URL scheme), #2636 and #5128 (unquote URL paths
|
/external/jetty/src/java/org/eclipse/jetty/client/security/ |
D | SecurityListener.java | 110 itemValue = StringUtil.unquote( itemValue ); in scrapeAuthenticationDetails()
|
/external/chromium-trace/catapult/perf_insights/third_party/cloudstorage/ |
D | api_utils.py | 105 return urllib.unquote(filename)
|
/external/autotest/server/hosts/ |
D | remote.py | 276 return [urllib.unquote(label) for label in all_labels]
|
/external/jetty/src/java/org/eclipse/jetty/server/ |
D | Response.java | 957 … _characterEncoding = QuotedStringTokenizer.unquote(contentType.substring(i8)); in setContentType() 981 … _characterEncoding = QuotedStringTokenizer.unquote(contentType.substring(i8,i2)); in setContentType() 987 … _characterEncoding = QuotedStringTokenizer.unquote(contentType.substring(i8)); in setContentType()
|
/external/autotest/client/cros/ |
D | httpd.py | 114 path = posixpath.normpath(urllib.unquote(path))
|