Searched defs:unescape (Results 1 - 25 of 50) sorted by relevance

12

/external/clang/tools/scan-build-py/libscanbuild/
H A Dshell.py58 def unescape(arg): function in function:decode
66 return [unescape(arg) for arg in shlex.split(string)]
/external/python/cpython3/Lib/html/
H A D__init__.py9 __all__ = ['escape', 'unescape']
122 def unescape(s): function
H A Dparser.py15 from html import unescape namespace
163 self.handle_data(unescape(rawdata[i:j]))
196 self.handle_data(unescape(rawdata[i:k]))
247 self.handle_data(unescape(rawdata[i:n]))
326 attrvalue = unescape(attrvalue)
466 def unescape(self, s): member in class:HTMLParser
467 warnings.warn('The unescape method is deprecated and will be removed '
468 'in 3.5, use html.unescape() instead.',
470 return unescape(s)
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
H A Dgroup-file-parser.rb130 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/
H A DCookie.java91 n = unescape(x.nextTo("=;"));
99 v = unescape(x.nextTo(';'));
150 public static String unescape(String s) { method in class:Cookie
/external/valgrind/coregrind/m_demangle/
H A Drust-demangle.c112 static int unescape (const char **in, char **out, const char *seq, char value);
275 if (!(unescape (&in, &out, "$C$", ',')
276 || unescape (&in, &out, "$SP$", '@')
277 || unescape (&in, &out, "$BP$", '*')
278 || unescape (&in, &out, "$RF$", '&')
279 || unescape (&in, &out, "$LT$", '<')
280 || unescape (&in, &out, "$GT$", '>')
281 || unescape (&in, &out, "$LP$", '(')
282 || unescape (&in, &out, "$RP$", ')')
283 || unescape (
350 unescape (const char **in, char **out, const char *seq, char value) function
[all...]
/external/icu/icu4c/source/i18n/
H A Dnumber_affixutils.cpp155 AffixUtils::unescape(const CharSequence &affixPattern, NumberStringBuilder &output, int32_t position, function in class:AffixUtils
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DWebPlatformUrlTestData.java95 element.input = unescape(parts[i++]);
100 : unescape(base);
106 element.set(nameAndValue[0], unescape(nameAndValue[1]));
114 private static String unescape(String s) throws EOFException { method in class:WebPlatformUrlTestData
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
H A Dfilters.py144 def unescape(self, text): member in class:XMLEntityEscaper
156 html_entities_unescape = _html_entities_escaper.unescape
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
H A DIETFUtils.java23 private static String unescape(String elt) method in class:IETFUtils
159 values.addElement(unescape(value));
177 values.addElement(unescape(value));
184 builder.addRDN(oid, unescape(value));
201 builder.addRDN(oid, unescape(value));
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/
H A DAffixUtils.java100 * (one that would be returned by {@link #unescape}), assuming that all interpolated symbols
266 * Executes the unescape state machine. Replaces the unquoted characters "-", "+", "%", "‰", and
278 public static int unescape( method in class:AffixUtils
302 * Sames as {@link #unescape}, but only calculates the code point count. More efficient than {@link #unescape}
/external/icu/icu4c/source/tools/genrb/
H A Dread.c182 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/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
H A DAffixUtils.java98 * (one that would be returned by {@link #unescape}), assuming that all interpolated symbols
264 * Executes the unescape state machine. Replaces the unquoted characters "-", "+", "%", "‰", and
276 public static int unescape( method in class:AffixUtils
300 * Sames as {@link #unescape}, but only calculates the code point count. More efficient than {@link #unescape}
/external/libmojo/third_party/markupsafe/
H A D__init__.py123 def unescape(self): member in class:Markup
127 >>> Markup("Main &raquo; <em>About</em>").unescape()
154 return Markup(stripped).unescape()
/external/python/cpython2/Lib/
H A DHTMLParser.py308 attrvalue = self.unescape(attrvalue)
447 def unescape(self, s): member in class:HTMLParser
/external/python/cpython2/Lib/xml/sax/
H A Dsaxutils.py39 def unescape(data, entities={}): function
42 You can unescape other strings of data by passing a dictionary as
/external/python/cpython3/Lib/xml/sax/
H A Dsaxutils.py34 def unescape(data, entities={}): function
37 You can unescape other strings of data by passing a dictionary as
/external/autotest/frontend/client/src/autotest/common/
H A DUtils.java131 public static String unescape(String text) { method in class:Utils
/external/python/cpython3/Lib/test/
H A Dtest_htmlparser.py566 # Maybe HTMLParser should use self.unescape for these
577 from html import unescape namespace
581 self.assertEqual(p.unescape(s), unescape(s))
/external/webrtc/webrtc/base/
H A Dstringencode.cc48 size_t unescape(char * buffer, size_t buflen, function in namespace:rtc
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DX509Name.java688 private String unescape(String elt) method in class:X509Name
857 this.values.addElement(unescape(value));
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DUtility.java924 public static String unescape(String s) { method in class:Utility
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUtility.java920 public static String unescape(String s) { method in class:Utility
/external/python/cpython2/Lib/test/
H A Dtest_sax.py11 from xml.sax.saxutils import XMLGenerator, escape, unescape, quoteattr, \
237 # ===== unescape
239 self.assertEqual(unescape("Donald Duck &amp; Co"), "Donald Duck & Co")
242 self.assertEqual(unescape("&lt;Donald Duck &amp; Co&gt;"),
246 self.assertEqual(unescape("Hei på deg", {"å" : "&aring;"}),
250 self.assertEqual(unescape("&amp;foo;", {"&foo;": "splat"}), "&foo;")
12 XMLFilterBase, prepare_input_source namespace
/external/icu/icu4c/source/common/
H A Dunistr.cpp624 UnicodeString UnicodeString::unescape() const { function in class:UnicodeString

Completed in 895 milliseconds

12