OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:testPattern
(Results
1 - 12
of
12
) 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
...]
/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
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);
/external/icu4c/test/intltest/
dtptngts.cpp
433
UnicodeString
testPattern
=gen->getBestPattern(UnicodeString("MMMMdd"), status);
434
testPattern
=gen->getBestPattern(UnicodeString("MMMddHmm"), status);
[
all
...]
plurfmts.cpp
318
UnicodeString
testPattern
= UNICODE_STRING_SIMPLE("other{other}");
321
helperTestResults(oneRuleLocales, 4,
testPattern
, pluralResults);
329
testPattern
= UNICODE_STRING_SIMPLE("one{one} other{other}");
334
helperTestResults(singular1Locales, 52,
testPattern
, pluralResults);
339
testPattern
= UNICODE_STRING_SIMPLE("one{one} other{other}");
343
helperTestResults(singular01Locales, 3,
testPattern
, pluralResults);
348
testPattern
= UNICODE_STRING_SIMPLE("zero{zero} one{one} other{other}");
358
helperTestResults(zeroSingularLocales, 1,
testPattern
, pluralResults);
363
testPattern
= UNICODE_STRING_SIMPLE("one{one} two{two} other{other}");
369
helperTestResults(singularDualLocales, 1,
testPattern
, pluralResults)
[
all
...]
tchcfmt.cpp
339
const char*
testPattern
= "0#none|1#one|2#many";
340
ChoiceFormat form_pat(
testPattern
, status );
regextst.cpp
[
all
...]
/libcore/luni/src/test/java/libcore/java/util/regex/
OldMatcherTest.java
62
String
testPattern
= "(abb)";
65
Pattern pat = Pattern.compile(
testPattern
);
111
String
testPattern
= "(abb)";
113
Pattern pat = Pattern.compile(
testPattern
);
122
String
testPattern
= "abb";
124
Pattern pat = Pattern.compile(
testPattern
);
140
String
testPattern
= "abb";
142
Pattern pat = Pattern.compile(
testPattern
);
158
String
testPattern
= "(((abb)a)(bb))";
160
Pattern pat = Pattern.compile(
testPattern
);
[
all
...]
/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
...]
/libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
PatternTest.java
172
public void
testPattern
() {
[
all
...]
Completed in 776 milliseconds