Searched defs:unquote (Results 1 - 25 of 70) sorted by relevance

123

/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/experimental/string.view/string.view.nonmem/
H A Dquoted.pass.cpp88 std::string unquote ( const char *p, char delim='"', char escape='\\' ) { function
154 std::wstring unquote ( const wchar_t *p, wchar_t delim='"', wchar_t escape='\\' ) { function
201 assert ( unquote ( "\"abc" ) == "abc" );
202 assert ( unquote ( L"\"abc" ) == L"abc" );
204 assert ( unquote ( "abc" ) == "abc" ); // no delimiter
205 assert ( unquote ( L"abc" ) == L"abc" ); // no delimiter
206 assert ( unquote ( "abc def" ) == "abc" ); // no delimiter
207 assert ( unquote ( L"abc def" ) == L"abc" ); // no delimiter
209 assert ( unquote ( "" ) == "" ); // nothing there
210 assert ( unquote (
[all...]
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/strings/string.view/string.view.nonmem/
H A Dquoted.pass.cpp88 std::string unquote ( const char *p, char delim='"', char escape='\\' ) { function
154 std::wstring unquote ( const wchar_t *p, wchar_t delim='"', wchar_t escape='\\' ) { function
201 assert ( unquote ( "\"abc" ) == "abc" );
202 assert ( unquote ( L"\"abc" ) == L"abc" );
204 assert ( unquote ( "abc" ) == "abc" ); // no delimiter
205 assert ( unquote ( L"abc" ) == L"abc" ); // no delimiter
206 assert ( unquote ( "abc def" ) == "abc" ); // no delimiter
207 assert ( unquote ( L"abc def" ) == L"abc" ); // no delimiter
209 assert ( unquote ( "" ) == "" ); // nothing there
210 assert ( unquote (
[all...]
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/string.view/string.view.nonmem/
H A Dquoted.pass.cpp88 std::string unquote ( const char *p, char delim='"', char escape='\\' ) { function
154 std::wstring unquote ( const wchar_t *p, wchar_t delim='"', wchar_t escape='\\' ) { function
201 assert ( unquote ( "\"abc" ) == "abc" );
202 assert ( unquote ( L"\"abc" ) == L"abc" );
204 assert ( unquote ( "abc" ) == "abc" ); // no delimiter
205 assert ( unquote ( L"abc" ) == L"abc" ); // no delimiter
206 assert ( unquote ( "abc def" ) == "abc" ); // no delimiter
207 assert ( unquote ( L"abc def" ) == L"abc" ); // no delimiter
209 assert ( unquote ( "" ) == "" ); // nothing there
210 assert ( unquote (
[all...]
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/string.view/string.view.nonmem/
H A Dquoted.pass.cpp88 std::string unquote ( const char *p, char delim='"', char escape='\\' ) { function
154 std::wstring unquote ( const wchar_t *p, wchar_t delim='"', wchar_t escape='\\' ) { function
201 assert ( unquote ( "\"abc" ) == "abc" );
202 assert ( unquote ( L"\"abc" ) == L"abc" );
204 assert ( unquote ( "abc" ) == "abc" ); // no delimiter
205 assert ( unquote ( L"abc" ) == L"abc" ); // no delimiter
206 assert ( unquote ( "abc def" ) == "abc" ); // no delimiter
207 assert ( unquote ( L"abc def" ) == L"abc" ); // no delimiter
209 assert ( unquote ( "" ) == "" ); // nothing there
210 assert ( unquote (
[all...]
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/input.output/iostream.format/quoted.manip/
H A Dquoted.pass.cpp101 std::basic_string<CharT, Traits> unquote ( const CharT *p, char delim='"', char escape='\\' ) { function
166 assert ( unquote ( "\"abc" ) == "abc" );
167 assert ( unquote ( L"\"abc" ) == L"abc" );
169 assert ( unquote ( "abc" ) == "abc" ); // no delimiter
170 assert ( unquote ( L"abc" ) == L"abc" ); // no delimiter
171 assert ( unquote ( "abc def" ) == "abc" ); // no delimiter
172 assert ( unquote ( L"abc def" ) == L"abc" ); // no delimiter
174 assert ( unquote ( "" ) == "" ); // nothing there
175 assert ( unquote ( L"" ) == L"" ); // nothing there
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/iostream.format/quoted.manip/
H A Dquoted.pass.cpp101 std::basic_string<CharT, Traits> unquote ( const CharT *p, char delim='"', char escape='\\' ) { function
166 assert ( unquote ( "\"abc" ) == "abc" );
167 assert ( unquote ( L"\"abc" ) == L"abc" );
169 assert ( unquote ( "abc" ) == "abc" ); // no delimiter
170 assert ( unquote ( L"abc" ) == L"abc" ); // no delimiter
171 assert ( unquote ( "abc def" ) == "abc" ); // no delimiter
172 assert ( unquote ( L"abc def" ) == L"abc" ); // no delimiter
174 assert ( unquote ( "" ) == "" ); // nothing there
175 assert ( unquote ( L"" ) == L"" ); // nothing there
/prebuilts/gdb/darwin-x86/lib/python2.7/email/
H A Dquoprimime.py43 'unquote',
105 def unquote(s):
304 decoded += unquote(line[i:i+3])
329 return unquote(s)
104 def unquote(s): function
H A Dutils.py20 '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/gdb/linux-x86/lib/python2.7/email/
H A Dquoprimime.py43 'unquote',
105 def unquote(s):
304 decoded += unquote(line[i:i+3])
329 return unquote(s)
104 def unquote(s): function
H A Dutils.py20 '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/darwin-x86/2.7.5/lib/python2.7/email/
H A Dquoprimime.py43 'unquote',
105 def unquote(s):
304 decoded += unquote(line[i:i+3])
329 return unquote(s)
104 def unquote(s): function
H A Dutils.py20 '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/
H A Dquoprimime.py43 'unquote',
105 def unquote(s):
304 decoded += unquote(line[i:i+3])
329 return unquote(s)
104 def unquote(s): function
H A Dutils.py20 '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/gdb/darwin-x86/lib/python2.7/
H A Durlparse.py325 # 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('+', ' '))
H A Drfc822.py468 # XXX Should fix unquote() and quote() to be really conformant.
472 def unquote(s): function
H A Durllib.py36 "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(pat
1204 def unquote(s): function
[all...]
H A Durllib2.py112 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)
1379 host = unquote(host)
1389 dirs = map(unquote, dirs)
/prebuilts/gdb/linux-x86/lib/python2.7/
H A Durlparse.py325 # 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('+', ' '))
H A Drfc822.py468 # XXX Should fix unquote() and quote() to be really conformant.
472 def unquote(s): function
H A Durllib.py36 "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(pat
1204 def unquote(s): function
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A Durlparse.py325 # 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('+', ' '))
H A Drfc822.py468 # XXX Should fix unquote() and quote() to be really conformant.
472 def unquote(s): function
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A Durlparse.py325 # 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('+', ' '))
H A Drfc822.py468 # XXX Should fix unquote() and quote() to be really conformant.
472 def unquote(s): function

Completed in 707 milliseconds

123