/external/webkit/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");
|
/external/icu4c/test/intltest/ |
plurfmts.cpp | 282 UnicodeString testPattern = UNICODE_STRING_SIMPLE("other{other}"); 285 helperTestRusults(oneRuleLocales, 4, testPattern, pluralResults); 291 testPattern = UNICODE_STRING_SIMPLE("one{one} other{other}"); 296 helperTestRusults(singular1Locales, 19, testPattern, pluralResults); 301 testPattern = UNICODE_STRING_SIMPLE("one{one} other{other}"); 305 helperTestRusults(singular01Locales, 2, testPattern, pluralResults); 310 testPattern = UNICODE_STRING_SIMPLE("zero{zero} one{one} other{other}"); 320 helperTestRusults(zeroSingularLocales, 1, testPattern, pluralResults); 325 testPattern = UNICODE_STRING_SIMPLE("one{one} two{two} other{other}"); 331 helperTestRusults(singularDualLocales, 1, testPattern, pluralResults) [all...] |
plurfmts.h | 42 UnicodeString& testPattern,
|
srchtest.h | 62 void TestPattern();
|
dtptngts.cpp | 333 UnicodeString testPattern=gen->getBestPattern(UnicodeString("MMMMdd"), status); 334 testPattern=gen->getBestPattern(UnicodeString("MMMddHmm"), status); 633 testPattern=test->getBestPattern(UnicodeString("MMMMdd"), status);
|
tchcfmt.cpp | 327 const char* testPattern = "0#none|1#one|2#many"; 328 ChoiceFormat form_pat( testPattern, status );
|
srchtest.cpp | 132 CASE(9, TestPattern) 1003 void StringSearchTest::TestPattern() [all...] |
regextst.cpp | [all...] |
/dalvik/libcore/regex/src/test/java/org/apache/harmony/regex/tests/java/util/regex/ |
MatcherTest.java | 137 String testPattern = "(abb)"; 140 Pattern pat = Pattern.compile(testPattern); 229 public void testPattern() { 252 String testPattern = "(abb)"; 254 Pattern pat = Pattern.compile(testPattern); 379 String testPattern = "abb"; 381 Pattern pat = Pattern.compile(testPattern); 407 String testPattern = "abb"; 409 Pattern pat = Pattern.compile(testPattern); 435 String testPattern = "(((abb)a)(bb))" [all...] |
PatternTest.java | 218 public void testPattern() { [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/icu4c/test/cintltst/ |
udatpg_test.c | 56 static const UChar testPattern[]={ 0x48, 0x48, 0x3a, 0x6d, 0x6d, 0 }; /* HH:mm */ 147 length = udatpg_getSkeleton(dtpg, testPattern, 5, result, 20, &errorCode); 166 length = udatpg_getBaseSkeleton(dtpg, testPattern, 5, result, 20, &errorCode);
|
usrchtst.c | 904 static void TestPattern(void) [all...] |