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

1 23 4 5 6 7 8 91011>>

  /external/python/cpython2/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
  /external/python/cpython3/Lib/xml/sax/
saxutils.py 34 def unescape(data, entities={}): function
35 """Unescape &, <, and > in a string of data.
37 You can unescape other strings of data by passing a dictionary as
  /prebuilts/gdb/darwin-x86/lib/python2.7/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
  /prebuilts/gdb/linux-x86/lib/python2.7/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
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/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
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/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
  /external/curl/tests/unit/
unit1396.c 50 /* unescape, this => that */
  /external/libmicrohttpd/src/microhttpd/
internal.c 127 * @param val value to unescape (modified in the process)
  /external/toybox/toys/posix/
paste.c 80 if ((c = unescape(*dpos))) {
  /external/v8/src/inspector/build/
check_injected_script_source.py 56 "encodeURI", "encodeURIComponent", "escape", "unescape", "Map", "Set"
  /prebuilts/tools/common/proguard/proguard4.7/docs/
sections.html 57 document.write(unescape("%3Cscript src='"+base+"piwik.js' type='text/javascript'%3E%3C/script%3E"));
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
UtilityTest.java 49 String result = Utility.unescape(input);
51 errln("FAIL: Utility.unescape() returned " + result + ", exp. " + expect);
  /external/icu/icu4c/source/test/intltest/
datadrivennumberformattestsuite.cpp 86 columnTypes[i], columnValues[i].unescape(), status);
138 parts[2].unescape(),
tstnorm.cpp 72 return str.unescape();
360 a = a.unescape();
367 exp = exp.unescape();
379 UnicodeString exp = UnicodeString(DATA[i+2], "").unescape();
821 left=UnicodeString(cases[i][1], "").unescape();
822 right=UnicodeString(cases[i][2], "").unescape();
823 expect=UnicodeString(cases[i][3], "").unescape();
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
UtilityTest.java 46 String result = Utility.unescape(input);
48 errln("FAIL: Utility.unescape() returned " + result + ", exp. " + expect);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_sax.py 11 from xml.sax.saxutils import XMLGenerator, escape, unescape, quoteattr, \
115 # ===== unescape
117 self.assertEqual(unescape("Donald Duck & Co"), "Donald Duck & Co")
120 self.assertEqual(unescape("<Donald Duck & Co>"),
124 self.assertEqual(unescape("Hei på deg", {"å" : "å"}),
128 self.assertEqual(unescape("&foo;", {"&foo;": "splat"}), "&foo;")
  /external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
vt320.java 469 Numpad[i] = unEscape(res);
475 FunctionKey[i] = unEscape(res);
479 FunctionKeyShift[i] = unEscape(res);
483 FunctionKeyCtrl[i] = unEscape(res);
487 FunctionKeyAlt[i] = unEscape(res);
493 PrevScn[i] = unEscape(res);
497 NextScn[i] = unEscape(res);
501 KeyEnd[i] = unEscape(res);
505 KeyHome[i] = unEscape(res);
509 Insert[i] = unEscape(res)
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/text/
SpoofCheckerTest.java 374 String s2 = Utility.unescape("\\u0441\\u0445\\u0455"); // Cyrillic "cxs"
453 String uInput = Utility.unescape(input);
454 String uExpected = Utility.unescape(expected);
538 String s = Utility.unescape("abcd\\u0301ef");
545 String s2 = Utility.unescape("abcd\\u0301\\u0302\\u0301ef");
553 String s3 = Utility.unescape("abcd\\u00e1\\u0301xyz");
647 String identifier = Utility.unescape("ABC\\U0001D7CF\\U0001D7D0\\U0001D7D1");
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/text/
SpoofCheckerTest.java 371 String s2 = Utility.unescape("\\u0441\\u0445\\u0455"); // Cyrillic "cxs"
450 String uInput = Utility.unescape(input);
451 String uExpected = Utility.unescape(expected);
535 String s = Utility.unescape("abcd\\u0301ef");
542 String s2 = Utility.unescape("abcd\\u0301\\u0302\\u0301ef");
550 String s3 = Utility.unescape("abcd\\u00e1\\u0301xyz");
644 String identifier = Utility.unescape("ABC\\U0001D7CF\\U0001D7D0\\U0001D7D1");
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/number/
AffixUtils.java 100 * (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/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
AffixUtils.java 98 * (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/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
RemoteDebugEventSocketListener.cs 573 // this unescape is slow but easy to understand
574 txt = StringExtensions.replaceAll(txt, "%0A", "\n"); // unescape \n
575 txt = StringExtensions.replaceAll(txt, "%0D", "\r"); // unescape \r
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
RemoteDebugEventSocketListener.cs 729 // this unescape is slow but easy to understand
730 txt = txt.Replace( "%0A", "\n" ); // unescape \n
731 txt = txt.Replace( "%0D", "\r" ); // unescape \r
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
RemoteDebugEventSocketListener.java 514 // this unescape is slow but easy to understand
515 txt = txt.replaceAll("%0A","\n"); // unescape \n
516 txt = txt.replaceAll("%0D","\r"); // unescape \r
  /external/python/cpython3/Doc/tools/extensions/
pyspecific.py 81 issue = utils.unescape(text)
91 title = utils.unescape(title)
92 target = utils.unescape(target)

Completed in 595 milliseconds

1 23 4 5 6 7 8 91011>>