HomeSort by relevance Sort by last modified time
    Searched defs:unquote (Results 1 - 25 of 36) sorted by null

1 2

  /external/chromium-trace/trace-viewer/third_party/webapp2/webapp2_extras/
json.py 103 def unquote(value, *args, **kwargs): function
104 """Decodes a value using urllib.unquote and deserializes it from JSON.
108 return decode(urllib.unquote(value), *args, **kwargs)
  /external/libcxx/test/std/experimental/string.view/string.view.nonmem/
quoted.pass.cpp 86 std::string unquote ( const char *p, char delim='"', char escape='\\' ) { function
152 std::wstring unquote ( const wchar_t *p, wchar_t delim='"', wchar_t escape='\\' ) { function
199 assert ( unquote ( "\"abc" ) == "abc" );
200 assert ( unquote ( L"\"abc" ) == L"abc" );
202 assert ( unquote ( "abc" ) == "abc" ); // no delimiter
203 assert ( unquote ( L"abc" ) == L"abc" ); // no delimiter
204 assert ( unquote ( "abc def" ) == "abc" ); // no delimiter
205 assert ( unquote ( L"abc def" ) == L"abc" ); // no delimiter
207 assert ( unquote ( "" ) == "" ); // nothing there
208 assert ( unquote ( L"" ) == L"" ); // nothing ther
    [all...]
  /external/libcxx/test/std/input.output/iostream.format/quoted.manip/
quoted.pass.cpp 87 std::string unquote ( const char *p, char delim='"', char escape='\\' ) { function
157 std::wstring unquote ( const wchar_t *p, wchar_t delim='"', wchar_t escape='\\' ) { function
204 assert ( unquote ( "\"abc" ) == "abc" );
205 assert ( unquote ( L"\"abc" ) == L"abc" );
207 assert ( unquote ( "abc" ) == "abc" ); // no delimiter
208 assert ( unquote ( L"abc" ) == L"abc" ); // no delimiter
209 assert ( unquote ( "abc def" ) == "abc" ); // no delimiter
210 assert ( unquote ( L"abc def" ) == L"abc" ); // no delimiter
212 assert ( unquote ( "" ) == "" ); // nothing there
213 assert ( unquote ( L"" ) == L"" ); // nothing ther
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/quoted.manip/
quoted.pass.cpp 87 std::string unquote ( const char *p, char delim='"', char escape='\\' ) { function
157 std::wstring unquote ( const wchar_t *p, wchar_t delim='"', wchar_t escape='\\' ) { function
204 assert ( unquote ( "\"abc" ) == "abc" );
205 assert ( unquote ( L"\"abc" ) == L"abc" );
207 assert ( unquote ( "abc" ) == "abc" ); // no delimiter
208 assert ( unquote ( L"abc" ) == L"abc" ); // no delimiter
209 assert ( unquote ( "abc def" ) == "abc" ); // no delimiter
210 assert ( unquote ( L"abc def" ) == L"abc" ); // no delimiter
212 assert ( unquote ( "" ) == "" ); // nothing there
213 assert ( unquote ( L"" ) == L"" ); // nothing ther
    [all...]
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/util/
quoting.py 8 from six.moves.urllib.parse import quote, unquote namespace
81 url_unquote = unquote
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
quoprimime.py 43 'unquote',
105 def unquote(s):
304 decoded += unquote(line[i:i+3])
329 return unquote(s)
104 def unquote(s): function
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
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
quoprimime.py 43 'unquote',
105 def unquote(s):
304 decoded += unquote(line[i:i+3])
329 return unquote(s)
104 def unquote(s): function
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
  /external/chromium-trace/trace-viewer/third_party/WebOb/webob/
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])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
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('+', ' '))
rfc822.py 468 # XXX Should fix unquote() and quote() to be really conformant.
472 def unquote(s): function
    [all...]
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...]
urllib2.py 112 from urllib import (unwrap, unquote, splittype, splithost, quote, namespace
265 self.host = unquote(self.host)
735 user_pass = '%s:%s' % (unquote(user), unquote(password))
738 hostport = unquote(hostport)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
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('+', ' '))
rfc822.py 468 # XXX Should fix unquote() and quote() to be really conformant.
472 def unquote(s): function
    [all...]
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...]
urllib2.py 112 from urllib import (unwrap, unquote, splittype, splithost, quote, namespace
265 self.host = unquote(self.host)
735 user_pass = '%s:%s' % (unquote(user), unquote(password))
738 hostport = unquote(hostport)
    [all...]
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/
url.py 7 from six.moves.urllib.parse import parse_qsl, quote, unquote, urlencode namespace
105 return self._add_vars({unquote(name): unquote(value)})
wsgilib.py 21 from six.moves.urllib.parse import unquote, urlsplit namespace
307 path_info = unquote(path_info)
httpserver.py 33 from six.moves.urllib.parse import unquote, urlsplit namespace
198 path = unquote(path)
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/util/
QuotedStringTokenizer.java 421 /** Unquote a string, NOT converting unicode sequences
422 * @param s The string to unquote.
467 public static String unquote(String s) method in class:QuotedStringTokenizer
469 return unquote(s,false);
473 /** Unquote a string.
474 * @param s The string to unquote.
477 public static String unquote(String s, boolean lenient) method in class:QuotedStringTokenizer
StringUtil.java 215 public static String unquote(String s) method in class:StringUtil
217 return QuotedStringTokenizer.unquote(s);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
Utils.java 256 public static String unquote(String s) { method in class:Utils
  /prebuilts/tools/common/m2/repository/org/eclipse/jetty/jetty-util/8.1.14.v20131031/
jetty-util-8.1.14.v20131031.jar 

Completed in 2478 milliseconds

1 2