HomeSort by relevance Sort by last modified time
    Searched refs:testPattern (Results 1 - 14 of 14) sorted by null

  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/
hexadecimal.js 42 var testPattern = '\\x41\\x42\\x43\\x44\\x45\\x46\\x47\\x48\\x49\\x4A\\x4B\\x4C\\x4D\\x4E\\x4F\\x50\\x51\\x52\\x53\\x54\\x55\\x56\\x57\\x58\\x59\\x5A';
47 "'" + testString + "'.match(new RegExp('" + testPattern + "'))",
48 String(["ABCDEFGHIJKLMNOPQRSTUVWXYZ"]), String(testString.match(new RegExp(testPattern))));
50 testPattern = '\\x61\\x62\\x63\\x64\\x65\\x66\\x67\\x68\\x69\\x6A\\x6B\\x6C\\x6D\\x6E\\x6F\\x70\\x71\\x72\\x73\\x74\\x75\\x76\\x77\\x78\\x79\\x7A';
55 "'" + testString + "'.match(new RegExp('" + testPattern + "'))",
56 String(["abcdefghijklmnopqrstuvwxyz"]), String(testString.match(new RegExp(testPattern))));
58 testPattern = '\\x20\\x21\\x22\\x23\\x24\\x25\\x26\\x27\\x28\\x29\\x2A\\x2B\\x2C\\x2D\\x2E\\x2F\\x30\\x31\\x32\\x33';
63 "'" + testString + "'.match(new RegExp('" + testPattern + "'))",
64 String([" !\"#$%&'()*+,-./0123"]), String(testString.match(new RegExp(testPattern))));
66 testPattern = '\\x34\\x35\\x36\\x37\\x38\\x39\\x3A\\x3B\\x3C\\x3D\\x3E\\x3F\\x40'
    [all...]
octal.js 42 var testPattern = '\\101\\102\\103\\104\\105\\106\\107\\110\\111\\112\\113\\114\\115\\116\\117\\120\\121\\122\\123\\124\\125\\126\\127\\130\\131\\132';
47 "'" + testString + "'.match(new RegExp('" + testPattern + "'))",
48 String(["ABCDEFGHIJKLMNOPQRSTUVWXYZ"]), String(testString.match(new RegExp(testPattern))));
50 testPattern = '\\141\\142\\143\\144\\145\\146\\147\\150\\151\\152\\153\\154\\155\\156\\157\\160\\161\\162\\163\\164\\165\\166\\167\\170\\171\\172';
55 "'" + testString + "'.match(new RegExp('" + testPattern + "'))",
56 String(["abcdefghijklmnopqrstuvwxyz"]), String(testString.match(new RegExp(testPattern))));
58 testPattern = '\\40\\41\\42\\43\\44\\45\\46\\47\\50\\51\\52\\53\\54\\55\\56\\57\\60\\61\\62\\63';
63 "'" + testString + "'.match(new RegExp('" + testPattern + "'))",
64 String([" !\"#$%&'()*+,-./0123"]), String(testString.match(new RegExp(testPattern))));
66 testPattern = '\\64\\65\\66\\67\\70\\71\\72\\73\\74\\75\\76\\77\\100'
    [all...]
RegExp_object.js 72 var testPattern = new RegExp("(\\d+)45(\\d+)90");
  /libcore/luni/src/test/java/libcore/java/util/regex/
OldMatcherTest.java 61 String testPattern = "(abb)";
64 Pattern pat = Pattern.compile(testPattern);
110 String testPattern = "(abb)";
112 Pattern pat = Pattern.compile(testPattern);
121 String testPattern = "abb";
123 Pattern pat = Pattern.compile(testPattern);
139 String testPattern = "abb";
141 Pattern pat = Pattern.compile(testPattern);
157 String testPattern = "(((abb)a)(bb))";
159 Pattern pat = Pattern.compile(testPattern);
    [all...]
  /external/icu4c/test/intltest/
plurfmts.h 42 UnicodeString& testPattern,
plurfmts.cpp 315 UnicodeString testPattern = UNICODE_STRING_SIMPLE("other{other}");
318 helperTestRusults(oneRuleLocales, 4, testPattern, pluralResults);
326 testPattern = UNICODE_STRING_SIMPLE("one{one} other{other}");
331 helperTestRusults(singular1Locales, 52, testPattern, pluralResults);
336 testPattern = UNICODE_STRING_SIMPLE("one{one} other{other}");
340 helperTestRusults(singular01Locales, 3, testPattern, pluralResults);
345 testPattern = UNICODE_STRING_SIMPLE("zero{zero} one{one} other{other}");
355 helperTestRusults(zeroSingularLocales, 1, testPattern, pluralResults);
360 testPattern = UNICODE_STRING_SIMPLE("one{one} two{two} other{other}");
366 helperTestRusults(singularDualLocales, 1, testPattern, pluralResults)
    [all...]
dtptngts.cpp 375 UnicodeString testPattern=gen->getBestPattern(UnicodeString("MMMMdd"), status);
376 testPattern=gen->getBestPattern(UnicodeString("MMMddHmm"), status);
    [all...]
tchcfmt.cpp 327 const char* testPattern = "0#none|1#one|2#many";
328 ChoiceFormat form_pat( testPattern, status );
regextst.cpp     [all...]
  /cts/tests/tests/permission/src/android/permission/cts/
NoSystemFunctionPermissionTest.java 132 long[] testPattern = {1, 1, 1, 1, 1};
135 vibrator.vibrate(testPattern, 1);
  /external/apache-harmony/regex/src/test/java/org/apache/harmony/tests/java/util/regex/
MatcherTest.java 150 public void testPattern() {
357 String testPattern = "(abb)";
359 Pattern pat = Pattern.compile(testPattern);
371 testPattern = "(\\d{1,3})";
374 Pattern pat2 = Pattern.compile(testPattern);
PatternTest.java 153 public void testPattern() {
    [all...]
  /external/icu4c/test/cintltst/
udatpg_test.c 58 static const UChar testPattern[]={ 0x48, 0x48, 0x3a, 0x6d, 0x6d, 0 }; /* HH:mm */
149 length = udatpg_getSkeleton(dtpg, testPattern, 5, result, 20, &errorCode);
168 length = udatpg_getBaseSkeleton(dtpg, testPattern, 5, result, 20, &errorCode);
  /libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
PatternTest.java 172 public void testPattern() {
    [all...]

Completed in 1794 milliseconds