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

  /external/chromium_org/native_client_sdk/src/tools/lib/
quote.py 27 def unquote(input_str, specials, escape='\\'): function
  /external/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...]
  /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...]
  /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
  /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_org/chrome/browser/extensions/api/web_request/
form_data_parser.cc 405 static const char unquote[] = "\\E"; local
428 result.append(unquote);
  /external/owasp/sanitizer/tools/findbugs/lib/
yjp-controller-api-redist.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.util_6.1.23.v201004211559.jar 
com.ibm.icu_4.2.1.v20100412.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/tools/common/google-api-java-client/1.8.0-rc/
google-api-java-client-min-repackaged.jar 

Completed in 491 milliseconds