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

1 2 3 4 5

  /external/libcxx/test/std/input.output/iostream.format/quoted.manip/
quoted.pass.cpp 101 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
  /external/libcxx/test/std/strings/string.view/string.view.nonmem/
quoted.pass.cpp 88 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 ( L"" ) == L"" ); // nothing ther
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/string.view/string.view.nonmem/
quoted.pass.cpp 88 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 ( L"" ) == L"" ); // nothing ther
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/iostream.format/quoted.manip/
quoted.pass.cpp 101 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/strings/string.view/string.view.nonmem/
quoted.pass.cpp 88 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 ( L"" ) == L"" ); // nothing ther
    [all...]
  /system/core/logcat/
logcat_system.cpp 28 static std::string unquote(const char*& cp, const char*& delim) { function
54 str += unquote(cp, delim);
60 args.push_back(unquote(cp, delim));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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/python/cpython2/Lib/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',
228 # rfc822.unquote() doesn't properly de-backslash-ify in Python pre-2.3.
229 def unquote(str):
288 value = unquote(value)
310 s = urllib.unquote(s)
324 rawval = unquote(value[2])
332 return unquote(value)
221 def unquote(str): function
  /external/python/cpython3/Lib/email/
quoprimime.py 39 'unquote',
118 def unquote(s): function
263 decoded += unquote(line[i:i+3])
287 return unquote(s)
utils.py 22 'unquote',
224 # rfc822.unquote() doesn't properly de-backslash-ify in Python pre-2.3.
225 def unquote(str): function
283 value = unquote(value)
308 s = urllib.parse.unquote(s, encoding="latin-1")
322 return unquote(value)
336 return unquote(text)
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
urlparse.py 326 # unquote method for parse_qs and parse_qsl
336 def unquote(s): function
337 """unquote('abc%20def') -> 'abc def'."""
345 append(unquote(str(bits[i])).decode('latin1'))
424 name = unquote(nv[0].replace('+', ' '))
425 value = unquote(nv[1].replace('+', ' '))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
urlparse.py 308 # unquote method for parse_qs and parse_qsl
317 def unquote(s): function
318 """unquote('abc%20def') -> 'abc def'."""
393 name = unquote(nv[0].replace('+', ' '))
394 value = unquote(nv[1].replace('+', ' '))
  /external/python/cpython2/Lib/
urlparse.py 326 # unquote method for parse_qs and parse_qsl
336 def unquote(s): function
337 """unquote('abc%20def') -> 'abc def'."""
345 append(unquote(str(bits[i])).decode('latin1'))
424 name = unquote(nv[0].replace('+', ' '))
425 value = unquote(nv[1].replace('+', ' '))
  /packages/apps/Dialer/java/com/android/voicemail/impl/sms/
StatusMessage.java 81 provisioningStatus = unquote(getString(wrappedData, OmtpConstants.PROVISIONING_STATUS));
97 private static String unquote(String string) { method in class:StatusMessage
  /prebuilts/gdb/darwin-x86/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('+', ' '))

Completed in 1393 milliseconds

1 2 3 4 5