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

1 2 3 4 5 6 7 8 91011

  /external/clang/tools/scan-build-py/libscanbuild/
shell.py 58 def unescape(arg): function in function:decode
66 return [unescape(arg) for arg in shlex.split(string)]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
group-file-parser.rb 130 def unescape( text ) method in class:ANTLR3.Template.GroupFile.Parser
156 unescape( token.text[ 1...-1 ] )
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
Cookie.java 91 n = unescape(x.nextTo("=;"));
99 v = unescape(x.nextTo(';'));
150 public static String unescape(String s) { method in class:Cookie
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/sax/
saxutils.py 39 def unescape(data, entities={}): function
40 """Unescape &, <, and > in a string of data.
42 You can unescape other strings of data by passing a dictionary as
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/sax/
saxutils.py 46 def unescape(data, entities={}): function
47 """Unescape &, <, and > in a string of data.
49 You can unescape other strings of data by passing a dictionary as
  /external/icu/icu4c/source/tools/genrb/
read.c 182 c = unescape(buf, status);
242 c = unescape(buf, status);
288 c = unescape(buf, status);
435 U_CFUNC UChar32 unescape(UCHARBUF *buf, UErrorCode *status) { function
  /external/libmojo/third_party/markupsafe/
__init__.py 123 def unescape(self): member in class:Markup
124 r"""Unescape markup again into an text_type string. This also resolves
127 >>> Markup("Main &raquo; <em>About</em>").unescape()
146 r"""Unescape markup into an text_type string and strip all tags. This
154 return Markup(stripped).unescape()
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/sax/
saxutils.py 39 def unescape(data, entities={}): function
40 """Unescape &amp;, &lt;, and &gt; in a string of data.
42 You can unescape other strings of data by passing a dictionary as
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/sax/
saxutils.py 39 def unescape(data, entities={}): function
40 """Unescape &amp;, &lt;, and &gt; in a string of data.
42 You can unescape other strings of data by passing a dictionary as
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/
saxutils.py 39 def unescape(data, entities={}): function
40 """Unescape &amp;, &lt;, and &gt; in a string of data.
42 You can unescape other strings of data by passing a dictionary as
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
saxutils.py 39 def unescape(data, entities={}): function
40 """Unescape &amp;, &lt;, and &gt; in a string of data.
42 You can unescape other strings of data by passing a dictionary as
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
HTMLParser.py 308 attrvalue = self.unescape(attrvalue)
447 def unescape(self, s): member in class:HTMLParser
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
HTMLParser.py 252 attrvalue = self.unescape(attrvalue)
365 def unescape(self, s): member in class:HTMLParser
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
tokenizer.py 113 def unescape(self): member in class:Token
444 token = self.get().unescape()
485 token = self.get().unescape()
502 token = self.get().unescape()
514 token = self.get().unescape()
544 token = self.get().unescape()
  /external/webrtc/webrtc/base/
stringencode.cc 48 size_t unescape(char * buffer, size_t buflen, function in namespace:rtc
  /prebuilts/gdb/darwin-x86/lib/python2.7/
HTMLParser.py 305 attrvalue = self.unescape(attrvalue)
444 def unescape(self, s): member in class:HTMLParser
  /prebuilts/gdb/linux-x86/lib/python2.7/
HTMLParser.py 305 attrvalue = self.unescape(attrvalue)
444 def unescape(self, s): member in class:HTMLParser
  /prebuilts/go/darwin-x86/src/net/url/
url.go 170 return unescape(s, encodeQueryComponent)
177 // PathUnescape is identical to QueryUnescape except that it does not unescape '+' to ' ' (space).
179 return unescape(s, encodePathSegment)
182 // unescape unescapes a string; the mode specifies
184 func unescape(s string, mode encoding) (string, error) { func
446 if url.Fragment, err = unescape(frag, encodeFragment); err != nil {
554 if userinfo, err = unescape(userinfo, encodeUserPassword); err != nil {
560 if username, err = unescape(username, encodeUserPassword); err != nil {
563 if password, err = unescape(password, encodeUserPassword); err != nil {
594 host1, err := unescape(host[:zone], encodeHost
    [all...]
  /prebuilts/go/linux-x86/src/net/url/
url.go 170 return unescape(s, encodeQueryComponent)
177 // PathUnescape is identical to QueryUnescape except that it does not unescape '+' to ' ' (space).
179 return unescape(s, encodePathSegment)
182 // unescape unescapes a string; the mode specifies
184 func unescape(s string, mode encoding) (string, error) { func
446 if url.Fragment, err = unescape(frag, encodeFragment); err != nil {
554 if userinfo, err = unescape(userinfo, encodeUserPassword); err != nil {
560 if username, err = unescape(username, encodeUserPassword); err != nil {
563 if password, err = unescape(password, encodeUserPassword); err != nil {
594 host1, err := unescape(host[:zone], encodeHost
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
HTMLParser.py 305 attrvalue = self.unescape(attrvalue)
444 def unescape(self, s): member in class:HTMLParser
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
HTMLParser.py 305 attrvalue = self.unescape(attrvalue)
444 def unescape(self, s): member in class:HTMLParser
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
IETFUtils.java 23 private static String unescape(String elt) method in class:IETFUtils
159 values.addElement(unescape(value)); method
177 values.addElement(unescape(value)); method
184 builder.addRDN(oid, unescape(value));
201 builder.addRDN(oid, unescape(value));
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Utility.java 923 public static String unescape(String s) { method in class:Utility
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Utility.java 919 public static String unescape(String s) { method in class:Utility
    [all...]
  /external/autotest/frontend/client/src/autotest/common/
Utils.java 131 public static String unescape(String text) { method in class:Utils

Completed in 1368 milliseconds

1 2 3 4 5 6 7 8 91011