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

1 2 3

  /external/v8/test/mjsunit/
escape.js 29 * @fileoverview Check that the global escape and unescape functions work
36 // Check the unescape chars are not escaped
61 // Check all chars up to 1000 in groups of 10 using unescape as a check
64 assertEquals(s, unescape(escape(s)));
74 assertEquals(example, unescape(escape(example)));
77 // Check unescape can cope with upper and lower case
78 assertEquals(unescape("%41%4A%4a"), "AJJ");
81 assertEquals("%U1234", unescape("%U1234"));
84 assertEquals("%", unescape("%"));
85 assertEquals("%4", unescape("%4"))
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/GlobalObject/
15.1.2.5-1.js 25 unescape( string )
28 The unescape function computes a new version of a string value in which
32 When the unescape function is called with one argument string, the
70 var TITLE = "unescape(string)";
82 array[item++] = new TestCase( SECTION, "unescape.length", 1, unescape.length );
83 array[item++] = new TestCase( SECTION, "unescape.length = null; unescape.length", 1, eval("unescape.length=null; unescape.length") )
    [all...]
15.1.2.5-2.js 25 unescape( string )
31 The unescape function computes a new version of a string value in which
35 When the unescape function is called with one argument string, the
73 var TITLE = "unescape(string)";
89 "unescape( %"+ (ToHexString(CHARCODE)).substring(0,1) +" )",
91 unescape( "%" + (ToHexString(CHARCODE)).substring(0,1) ) );
98 "unescape( %u"+ (ToHexString(CHARCODE)).substring(0,1) +" )",
100 unescape( "%u" + (ToHexString(CHARCODE)).substring(0,1) ) );
109 "unescape( %u"+ (ToUnicodeString(CHARCODE)).substring(0,3)+ " )",
112 unescape( "%u"+(ToUnicodeString(CHARCODE)).substring(0,3)
    [all...]
15.1.2.5-3.js 25 unescape( string )
32 The unescape function computes a new version of a string value in which
36 When the unescape function is called with one argument string, the
75 var TITLE = "unescape(string)";
91 "unescape( %"+ (ToHexString(CHARCODE)).substring(0,1) +
96 unescape( "%" + (ToHexString(CHARCODE)).substring(0,1)+
103 "unescape( %u"+ (ToHexString(CHARCODE)).substring(0,1) +
108 unescape( "%u" + (ToHexString(CHARCODE)).substring(0,1)+
116 "unescape( %u"+ (ToUnicodeString(CHARCODE)).substring(0,3) +
124 unescape( "%" + (ToUnicodeString(CHARCODE)).substring(0,3)
    [all...]
  /external/icu4c/tools/genrb/
read.h 41 UChar32 unescape(UCHARBUF *buf, UErrorCode *status);
read.c 178 c = unescape(buf, status);
238 c = unescape(buf, status);
284 c = unescape(buf, status);
431 UChar32 unescape(UCHARBUF *buf, function
  /external/icu4c/test/intltest/
strcase.cpp 80 expectedResult = UnicodeString("i\\u0307stanbul, not constantinople!", "").unescape();
195 deseretInput=UnicodeString("\\U0001043C\\U00010414", "").unescape(),
196 deseretLower=UnicodeString("\\U0001043C\\U0001043C", "").unescape(),
197 deseretUpper=UnicodeString("\\U00010414\\U00010414", "").unescape();
213 ljInput=UnicodeString("ab'cD \\uFB00i\\u0131I\\u0130 \\u01C7\\u01C8\\u01C9 \\U0001043C\\U00010414", "").unescape(),
214 ljLower=UnicodeString("ab'cd \\uFB00i\\u0131ii\\u0307 \\u01C9\\u01C9\\u01C9 \\U0001043C\\U0001043C", "").unescape(),
215 ljUpper=UnicodeString("AB'CD FFIII\\u0130 \\u01C7\\u01C7\\u01C7 \\U00010414\\U00010414", "").unescape();
235 sigmas=UnicodeString("i\\u0307\\u03a3\\u0308j \\u0307\\u03a3\\u0308j i\\u00ad\\u03a3\\u0308 \\u0307\\u03a3\\u0308 ", "").unescape(),
236 sigmasLower=UnicodeString("i\\u0307\\u03c3\\u0308j \\u0307\\u03c3\\u0308j i\\u00ad\\u03c2\\u0308 \\u0307\\u03c3\\u0308 ", "").unescape(),
237 sigmasUpper=UnicodeString("I\\u0307\\u03a3\\u0308J \\u0307\\u03a3\\u0308J I\\u00ad\\u03a3\\u0308 \\u0307\\u03a3\\u0308 ", "").unescape();
    [all...]
tstnrapi.cpp 23 UnicodeString s=UnicodeString("a\\u0308\\uac00\\U0002f800", "").unescape();
67 nfkc!=UnicodeString("TE\\u0139TELTELTELTELTELTELTELTELTEL", "").unescape() ||
68 nfkd!=UnicodeString("TEL\\u0301TELTELTELTELTELTELTELTELTEL", "").unescape()
itspoof.cpp 112 UnicodeString s2 = UnicodeString("\\u0441\\u0445\\u0455").unescape(); // Cyrillic "cxs"
211 UnicodeString uInput = UnicodeString(input).unescape();
212 UnicodeString uExpected = UnicodeString(expected).unescape();
244 UnicodeString s = UnicodeString("abcd\\u0301ef").unescape();
250 UnicodeString s2 = UnicodeString("abcd\\u0301\\u0302\\u0301ef").unescape();
258 UnicodeString s3 = UnicodeString("abcd\\u00e1\\u0301xyz").unescape();
tstnorm.cpp 70 return str.unescape();
357 a = a.unescape();
364 exp = exp.unescape();
376 UnicodeString exp = UnicodeString(DATA[i+2], "").unescape();
815 left=UnicodeString(cases[i][1], "").unescape();
816 right=UnicodeString(cases[i][2], "").unescape();
817 expect=UnicodeString(cases[i][3], "").unescape();
    [all...]
textfile.cpp 107 line = str.unescape();
tmsgfmt.cpp 664 MessageFormat* msgFmt1 = internalCreate(t1.unescape(), Locale("fr"),err,(char*)"From TestMessageFormat::TestSelectFormat create t1");
677 internalFormat( msgFmt1 , testArgs[i], 2, exp[i].unescape() ,(char*)"From TestMessageFormat::testSelectFormat format t1");
686 MessageFormat* msgFmt2 = internalCreate(t2.unescape(), Locale("fr"),err,(char*)"From TestMessageFormat::TestSelectFormat create t2");
699 internalFormat( msgFmt2 , testArgs[i], 2, exp[i].unescape() ,(char*)"From TestMessageFormat::testSelectFormat format t2");
730 MessageFormat* msgFmt4 = internalCreate(t4.unescape(), Locale("fr"),err,(char*)"From TestMessageFormat::TestSelectFormat create t4");
743 internalFormat( msgFmt4 , testArgs[i], 3, exp[i].unescape() ,(char*)"From TestMessageFormat::testSelectFormat format t4");
753 MessageFormat* msgFmt5 = internalCreate(t5.unescape(), Locale("fr"),err,(char*)"From TestMessageFormat::TestSelectFormat create t5");
768 internalFormat( msgFmt5 , testArgs[i], 3, exp[i].unescape() ,(char*)"From TestMessageFormat::testSelectFormat format t5");
    [all...]
ssearch.cpp 255 text = text.unescape();
262 text = text.unescape();
271 text = text.unescape();
280 text = text.unescape();
593 text = text.unescape();
600 text = text.unescape();
609 text = text.unescape();
618 text = text.unescape();
    [all...]
  /build/tools/droiddoc/templates-pdk/
trailer.cs 6 document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
  /build/tools/droiddoc/templates-sdk/
trailer.cs 6 document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
  /external/webkit/Tools/iExploder/iexploder-1.7.2/tools/
lasthit.rb 66 display_agent = CGI::unescape(agent).sub('U; ', '')
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Statements/
12.10-1.js 145 this.unescape = new Function( "return this.value" );
  /external/webkit/LayoutTests/fast/url/script-tests/
query.js 11 // Escape some questionable 8-bit characters, but never unescape.
  /frameworks/base/core/java/android/net/
UrlQuerySanitizer.java 771 String unescapedParameter = unescape(parameter);
778 String unescapedValue = unescape(value);
828 * Unescape an escaped string.
839 public String unescape(String string) { method in class:UrlQuerySanitizer
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/
15.4.4.3-1.js 98 unescape("%u000B%u000Btrue%u000Bfalse%u000B123%u000B[object Object]%u000Btrue"),
  /cts/tests/tests/net/src/android/net/cts/
UrlQuerySanitizerTest.java 157 method = "unescape",
338 assertEquals(escape, uqs.unescape(escape));
343 assertEquals(expectedPlus, uqs.unescape(initialPlus));
344 assertEquals(expectedPercentSignHex, uqs.unescape(initialPercentSign));
  /external/chromium/base/i18n/
file_util_icu.cc 65 "[[\"*/:<>?\\\\|][:Cc:][:Cf:] - [\\u200c\\u200d]]").unescape(),
  /external/chromium/third_party/libjingle/source/talk/base/
stringencode.h 59 size_t unescape(char * buffer, size_t buflen,
  /external/v8/test/mjsunit/regress/
regress-3247124.js 28 var foo = unescape("%E0%E2%EA%F4%FB%E3%F5%E1%E9%ED%F3%FA%E7%FC%C0%C2%CA%D4%DB%C3%D5%C1%C9%CD%D3%DA%C7%DC");
regress-1200351.js 80 eval("unescape(break.toObject()).prototype.new RegExp.continue.__lookupGetter__(x.slice(1, NaN)) = typeof(null.push(0.2))")
108 eval("String(new RegExp.call(1)).prototype.unescape(parseFloat(-1)) = false<<true.x.lastIndexOf(1)")
152 eval("native {unescape(true),new RegExp.isNull}")
192 eval("SetValueOf(function () { IsSmi(-1) }, unescape(IsPrimitive(void)))")
292 eval("new unescape(false).unshift()")
388 eval("new Iterator(unescape(continue))")
392 eval("function X(x) { return unescape(goto debugger) }; X(new RegExp.push(break).name())")
436 eval("new unescape(debugger.call(null))")
484 eval("new Function(Join(unescape(x), new RegExp.__defineGetter__(debugger,function(){NaN}), 'a'.indexOf(0.2), false.prototype.name, (this)))")
651 eval("for (this instanceof new RegExp.splice() in null>>>=new RegExp.valueOf()) { function () { unescape(1) } }"
    [all...]

Completed in 3875 milliseconds

1 2 3