HomeSort by relevance Sort by last modified time
    Searched full:unescape (Results 26 - 50 of 320) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/icu/icu4c/source/test/intltest/
tstnrapi.cpp 25 UnicodeString s=UnicodeString("a\\u0308\\uac00\\U0002f800", "").unescape();
69 nfkc!=UnicodeString("TE\\u0139TELTELTELTELTELTELTELTELTEL", "").unescape() ||
70 nfkd!=UnicodeString("TEL\\u0301TELTELTELTELTELTELTELTELTEL", "").unescape()
listformattertest.cpp 182 UnicodeString and_string = UnicodeString("\\u53CA", -1, US_INV).unescape();
183 UnicodeString comma_string = UnicodeString("\\u3001", -1, US_INV).unescape();
197 UnicodeString and_string = UnicodeString(" \\u0438 ", -1, US_INV).unescape();
213 UnicodeString pair_string = UnicodeString(" \\u0d15\\u0d42\\u0d1f\\u0d3e\\u0d24\\u0d46 ", -1, US_INV).unescape();
214 UnicodeString total_string = UnicodeString(" \\u0d0e\\u0d28\\u0d4d\\u0d28\\u0d3f\\u0d35", -1, US_INV).unescape();
itspoof.cpp 110 UnicodeString s2 = UnicodeString("\\u0441\\u0445\\u0455").unescape(); // Cyrillic "cxs"
206 UnicodeString uInput = UnicodeString(input).unescape();
207 UnicodeString uExpected = UnicodeString(expected).unescape();
240 UnicodeString s = UnicodeString("abcd\\u0301ef").unescape();
246 UnicodeString s2 = UnicodeString("abcd\\u0301\\u0302\\u0301ef").unescape();
254 UnicodeString s3 = UnicodeString("abcd\\u00e1\\u0301xyz").unescape();
263 UnicodeString s = UnicodeString("B\\u00c1\\u0301").unescape();
564 UnicodeString testString = UnicodeString(test.fId).unescape();
628 UnicodeString testString = UnicodeString(test.fTestString).unescape();
629 UnicodeSet expectedSet(UnicodeString(test.fExpectedSet).unescape(), status)
    [all...]
strcase.cpp 146 expectedResult = UnicodeString("i\\u0307stanbul, not constantinople!", "").unescape();
261 deseretInput=UnicodeString("\\U0001043C\\U00010414", "").unescape(),
262 deseretLower=UnicodeString("\\U0001043C\\U0001043C", "").unescape(),
263 deseretUpper=UnicodeString("\\U00010414\\U00010414", "").unescape();
279 ljInput=UnicodeString("ab'cD \\uFB00i\\u0131I\\u0130 \\u01C7\\u01C8\\u01C9 \\U0001043C\\U00010414", "").unescape(),
280 ljLower=UnicodeString("ab'cd \\uFB00i\\u0131ii\\u0307 \\u01C9\\u01C9\\u01C9 \\U0001043C\\U0001043C", "").unescape(),
281 ljUpper=UnicodeString("AB'CD FFIII\\u0130 \\u01C7\\u01C7\\u01C7 \\U00010414\\U00010414", "").unescape();
301 sigmas=UnicodeString("i\\u0307\\u03a3\\u0308j \\u0307\\u03a3\\u0308j i\\u00ad\\u03a3\\u0308 \\u0307\\u03a3\\u0308 ", "").unescape(),
302 sigmasLower=UnicodeString("i\\u0307\\u03c3\\u0308j \\u0307\\u03c3\\u0308j i\\u00ad\\u03c2\\u0308 \\u0307\\u03c3\\u0308 ", "").unescape(),
303 sigmasUpper=UnicodeString("I\\u0307\\u03a3\\u0308J \\u0307\\u03a3\\u0308J I\\u00ad\\u03a3\\u0308 \\u0307\\u03a3\\u0308 ", "").unescape();
    [all...]
numberformat2test.cpp     [all...]
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
filters.py 144 def unescape(self, text): member in class:XMLEntityEscaper
145 """Unescape character references.
156 html_entities_unescape = _html_entities_escaper.unescape
  /external/python/cpython2/Doc/library/
xml.sax.utils.rst 28 .. function:: unescape(data[, entities])
30 Unescape ``'&'``, ``'<'``, and ``'>'`` in a string of data.
32 You can unescape other strings of data by passing a dictionary as the optional
  /external/python/cpython3/Doc/library/
xml.sax.utils.rst 29 .. function:: unescape(data, entities={})
31 Unescape ``'&'``, ``'<'``, and ``'>'`` in a string of data.
33 You can unescape other strings of data by passing a dictionary as the optional
  /external/python/cpython3/Lib/test/
test_html.py 20 errmsg = 'unescape(%r) should have returned %r'
22 self.assertEqual(html.unescape(text), expected,
27 self.assertEqual(html.unescape(text), expected,
  /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));
  /cts/tests/tests/net/src/android/net/cts/
UrlQuerySanitizerTest.java 166 assertEquals(escape, uqs.unescape(escape));
171 assertEquals(expectedPlus, uqs.unescape(initialPlus));
172 assertEquals(expectedPercentSignHex, uqs.unescape(initialPercentSign));
  /external/python/cpython2/Doc/tools/extensions/
pyspecific.py 60 issue = utils.unescape(text)
70 title = utils.unescape(title)
71 target = utils.unescape(target)
  /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/python/cpython3/Lib/html/
parser.py 15 from html import unescape
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)
__init__.py 9 __all__ = ['escape', 'unescape']
122 def unescape(s): function
  /external/toybox/toys/posix/
echo.c 65 int slash = *(c++), n = unescape(slash);
  /frameworks/av/media/libstagefright/
DataURISource.cpp 64 // unescape
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/
StringUtils.java 66 // TODO: unescape unicode codepoints
  /prebuilts/go/darwin-x86/src/net/url/
url.go 172 return unescape(s, encodeQueryComponent)
182 // unescape '+' to ' ' (space).
184 return unescape(s, encodePathSegment)
187 // unescape unescapes a string; the mode specifies
189 func unescape(s string, mode encoding) (string, error) { func
459 if url.Fragment, err = unescape(frag, encodeFragment); err != nil {
570 if userinfo, err = unescape(userinfo, encodeUserPassword); err != nil {
576 if username, err = unescape(username, encodeUserPassword); err != nil {
579 if password, err = unescape(password, encodeUserPassword); err != nil {
610 host1, err := unescape(host[:zone], encodeHost
    [all...]
  /prebuilts/go/linux-x86/src/net/url/
url.go 172 return unescape(s, encodeQueryComponent)
182 // unescape '+' to ' ' (space).
184 return unescape(s, encodePathSegment)
187 // unescape unescapes a string; the mode specifies
189 func unescape(s string, mode encoding) (string, error) { func
459 if url.Fragment, err = unescape(frag, encodeFragment); err != nil {
570 if userinfo, err = unescape(userinfo, encodeUserPassword); err != nil {
576 if username, err = unescape(username, encodeUserPassword); err != nil {
579 if password, err = unescape(password, encodeUserPassword); err != nil {
610 host1, err := unescape(host[:zone], encodeHost
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
BasicTest.java     [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
BasicTest.java     [all...]
  /external/v8/src/builtins/
builtins-global.cc 73 // ES6 section B.2.1.2 unescape (string)
81 RETURN_RESULT_OR_FAILURE(isolate, Uri::Unescape(isolate, string));
  /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

Completed in 598 milliseconds

12 3 4 5 6 7 8 91011>>