HomeSort by relevance Sort by last modified time
    Searched refs:match (Results 26 - 50 of 736) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webkit/JavaScriptCore/tests/mozilla/js1_2/regexp/
ignoreCase.js 49 // 'ABC def ghi'.match(/[a-z]+/ig)
50 testcases[count++] = new TestCase ( SECTION, "'ABC def ghi'.match(/[a-z]+/ig)",
51 String(["ABC","def","ghi"]), String('ABC def ghi'.match(/[a-z]+/ig)));
53 // 'ABC def ghi'.match(/[a-z]+/i)
54 testcases[count++] = new TestCase ( SECTION, "'ABC def ghi'.match(/[a-z]+/i)",
55 String(["ABC"]), String('ABC def ghi'.match(/[a-z]+/i)));
57 // 'ABC def ghi'.match(/([a-z]+)/ig)
58 testcases[count++] = new TestCase ( SECTION, "'ABC def ghi'.match(/([a-z]+)/ig)",
59 String(["ABC","def","ghi"]), String('ABC def ghi'.match(/([a-z]+)/ig)));
61 // 'ABC def ghi'.match(/([a-z]+)/i
    [all...]
vertical_bar.js 41 // 'abc'.match(new RegExp('xyz|abc'))
42 testcases[count++] = new TestCase ( SECTION, "'abc'.match(new RegExp('xyz|abc'))",
43 String(["abc"]), String('abc'.match(new RegExp('xyz|abc'))));
45 // 'this is a test'.match(new RegExp('quiz|exam|test|homework'))
46 testcases[count++] = new TestCase ( SECTION, "'this is a test'.match(new RegExp('quiz|exam|test|homework'))",
47 String(["test"]), String('this is a test'.match(new RegExp('quiz|exam|test|homework'))));
49 // 'abc'.match(new RegExp('xyz|...'))
50 testcases[count++] = new TestCase ( SECTION, "'abc'.match(new RegExp('xyz|...'))",
51 String(["abc"]), String('abc'.match(new RegExp('xyz|...'))));
53 // 'abc'.match(new RegExp('(.)..|abc')
    [all...]
RegExp_leftContext.js 41 // 'abc123xyz'.match(/123/); RegExp.leftContext
42 'abc123xyz'.match(/123/);
43 testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/123/); RegExp.leftContext",
46 // 'abc123xyz'.match(/456/); RegExp.leftContext
47 'abc123xyz'.match(/456/);
48 testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/456/); RegExp.leftContext",
51 // 'abc123xyz'.match(/abc123xyz/); RegExp.leftContext
52 'abc123xyz'.match(/abc123xyz/);
53 testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/abc123xyz/); RegExp.leftContext",
56 // 'xxxx'.match(/$/); RegExp.leftContex
    [all...]
RegExp_leftContext_as_array.js 41 // 'abc123xyz'.match(/123/); RegExp['$`']
42 'abc123xyz'.match(/123/);
43 testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/123/); RegExp['$`']",
46 // 'abc123xyz'.match(/456/); RegExp['$`']
47 'abc123xyz'.match(/456/);
48 testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/456/); RegExp['$`']",
51 // 'abc123xyz'.match(/abc123xyz/); RegExp['$`']
52 'abc123xyz'.match(/abc123xyz/);
53 testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/abc123xyz/); RegExp['$`']",
56 // 'xxxx'.match(/$/); RegExp['$`'
    [all...]
RegExp_rightContext.js 41 // 'abc123xyz'.match(/123/); RegExp.rightContext
42 'abc123xyz'.match(/123/);
43 testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/123/); RegExp.rightContext",
46 // 'abc123xyz'.match(/456/); RegExp.rightContext
47 'abc123xyz'.match(/456/);
48 testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/456/); RegExp.rightContext",
51 // 'abc123xyz'.match(/abc123xyz/); RegExp.rightContext
52 'abc123xyz'.match(/abc123xyz/);
53 testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/abc123xyz/); RegExp.rightContext",
56 // 'xxxx'.match(/$/); RegExp.rightContex
    [all...]
RegExp_lastParen.js 41 // 'abcd'.match(/(abc)d/); RegExp.lastParen
42 'abcd'.match(/(abc)d/);
43 testcases[count++] = new TestCase ( SECTION, "'abcd'.match(/(abc)d/); RegExp.lastParen",
46 // 'abcd'.match(new RegExp('(abc)d')); RegExp.lastParen
47 'abcd'.match(new RegExp('(abc)d'));
48 testcases[count++] = new TestCase ( SECTION, "'abcd'.match(new RegExp('(abc)d')); RegExp.lastParen",
51 // 'abcd'.match(/(bcd)e/); RegExp.lastParen
52 'abcd'.match(/(bcd)e/);
53 testcases[count++] = new TestCase ( SECTION, "'abcd'.match(/(bcd)e/); RegExp.lastParen",
56 // 'abcdefg'.match(/(a(b(c(d)e)f)g)/); RegExp.lastPare
    [all...]
alphanumeric.js 46 "'" + alphanumeric + "'.match(new RegExp('\\w+'))",
47 String([alphanumeric]), String(alphanumeric.match(new RegExp('\\w+'))));
51 "'" + non_alphanumeric + "'.match(new RegExp('\\W+'))",
52 String([non_alphanumeric]), String(non_alphanumeric.match(new RegExp('\\W+'))));
56 "'" + non_alphanumeric + "'.match(new RegExp('\\w'))",
57 null, non_alphanumeric.match(new RegExp('\\w')));
61 "'" + alphanumeric + "'.match(new RegExp('\\W'))",
62 null, alphanumeric.match(new RegExp('\\W')));
68 "'" + s + "'.match(new RegExp('\\w+'))",
69 String([alphanumeric]), String(s.match(new RegExp('\\w+'))))
    [all...]
whitespace.js 46 "'" + whitespace + "'.match(new RegExp('\\s+'))",
47 String([whitespace]), String(whitespace.match(new RegExp('\\s+'))));
51 "'" + non_whitespace + "'.match(new RegExp('\\S+'))",
52 String([non_whitespace]), String(non_whitespace.match(new RegExp('\\S+'))));
56 "'" + non_whitespace + "'.match(new RegExp('\\s'))",
57 null, non_whitespace.match(new RegExp('\\s')));
61 "'" + whitespace + "'.match(new RegExp('\\S'))",
62 null, whitespace.match(new RegExp('\\S')));
68 "'" + s + "'.match(new RegExp('\\s+'))",
69 String([whitespace]), String(s.match(new RegExp('\\s+'))))
    [all...]
hexadecimal.js 47 "'" + testString + "'.match(new RegExp('" + testPattern + "'))",
48 String(["ABCDEFGHIJKLMNOPQRSTUVWXYZ"]), String(testString.match(new RegExp(testPattern))));
55 "'" + testString + "'.match(new RegExp('" + testPattern + "'))",
56 String(["abcdefghijklmnopqrstuvwxyz"]), String(testString.match(new RegExp(testPattern))));
63 "'" + testString + "'.match(new RegExp('" + testPattern + "'))",
64 String([" !\"#$%&'()*+,-./0123"]), String(testString.match(new RegExp(testPattern))));
71 "'" + testString + "'.match(new RegExp('" + testPattern + "'))",
72 String(["456789:;<=>?@"]), String(testString.match(new RegExp(testPattern))));
79 "'" + testString + "'.match(new RegExp('" + testPattern + "'))",
80 String(["{|}~"]), String(testString.match(new RegExp(testPattern))))
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
perlstress-001.js 56 actualmatch = string.match(pattern);
107 actualmatch = string.match(pattern);
114 actualmatch = string.match(pattern);
121 actualmatch = string.match(pattern);
128 actualmatch = string.match(pattern);
135 actualmatch = string.match(pattern);
142 actualmatch = string.match(pattern);
149 actualmatch = string.match(pattern);
156 actualmatch = string.match(pattern);
163 actualmatch = string.match(pattern)
    [all...]
perlstress-002.js 45 * null match in Perl. Thus we set |expectedmatch| = |null| in each section.
79 actualmatch = string.match(pattern);
86 actualmatch = string.match(pattern);
93 actualmatch = string.match(pattern);
100 actualmatch = string.match(pattern);
107 actualmatch = string.match(pattern);
114 actualmatch = string.match(pattern);
121 actualmatch = string.match(pattern);
128 actualmatch = string.match(pattern);
135 actualmatch = string.match(pattern)
    [all...]
regress-67773.js 48 actualmatch = string.match(pattern);
54 actualmatch = string.match(pattern);
60 actualmatch = string.match(pattern);
68 actualmatch = string.match(pattern);
74 actualmatch = string.match(pattern);
80 actualmatch = string.match(pattern);
86 actualmatch = string.match(pattern);
87 expectedmatch = null; // because string doesn't match at end
94 actualmatch = string.match(pattern);
102 actualmatch = string.match(pattern)
    [all...]
  /external/qemu/
acl.c 83 if (fnmatch(entry->match, party, 0) == 0)
88 if (strcmp(entry->match, party) == 0)
107 free(entry->match);
116 const char *match)
121 entry->match = qemu_strdup(match);
133 const char *match,
143 return qemu_acl_append(acl, deny, match);
147 entry->match = qemu_strdup(match);
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/gtk/
fonts.conf 8 <match target="pattern">
15 </match>
20 <match target="pattern">
27 </match>
32 <match target="pattern">
39 </match>
124 <match target="pattern">
134 </match>
135 <match target="pattern">
145 </match>
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/qt/
fonts.conf 8 <match target="pattern">
15 </match>
20 <match target="pattern">
27 </match>
32 <match target="pattern">
39 </match>
124 <match target="pattern">
134 </match>
135 <match target="pattern">
145 </match>
    [all...]
  /external/icu4c/i18n/
csrmbcs.h 50 * Test the match of this charset with the input text data
57 * bits 0-7: the match confidence, ranging from 0-100
59 * bits 8-15: The match reason, an enum-like value.
74 int32_t match(InputText* det) = 0;
103 int32_t match(InputText *det);
125 int32_t match(InputText* det) = 0;
147 int32_t match(InputText *det);
162 int32_t match(InputText *det);
180 int32_t match(InputText *det);
199 int32_t match(InputText *det)
    [all...]
csrsbcs.h 61 virtual int32_t match(InputText *det) = 0;
129 int32_t match(InputText *textIn);
139 int32_t match(InputText *textIn);
149 int32_t match(InputText *textIn);
159 int32_t match(InputText *textIn);
169 int32_t match(InputText *textIn);
179 int32_t match(InputText *textIn);
189 int32_t match(InputText *textIn);
199 int32_t match(InputText *textIn);
209 int32_t match(InputText *textIn)
    [all...]
csr2022.h 47 * @return match quality, in the range of 0-100.
60 int32_t match(InputText *textIn);
69 int32_t match(InputText *textIn);
80 int32_t match(InputText *textIn);
csrucode.h 37 * @see com.ibm.icu.text.CharsetRecognizer#match(com.ibm.icu.text.CharsetDetector)
39 int32_t match(InputText* textIn) = 0;
51 int32_t match(InputText* textIn);
62 int32_t match(InputText* textIn);
75 int32_t match(InputText* textIn);
  /external/icu4c/samples/csdet/
csdet.c 29 int32_t inputLength, match, matchCount = 0; local
56 for(match = 0; match < matchCount; match += 1) {
57 const char *name = ucsdet_getName(csm[match], &status);
58 const char *lang = ucsdet_getLanguage(csm[match], &status);
59 int32_t confidence = ucsdet_getConfidence(csm[match], &status);
  /external/webkit/WebCore/inspector/front-end/
Script.js 42 var match = pattern.exec(source);
44 if (match)
45 this.sourceURL = WebInspector.UIString("(program): %s", match[1]);
  /external/webkit/WebKitTools/android/flex-2.5.4a/MISC/
debflex.awk 42 if (match ($0, /^%%/)) {
53 if (section == 2 && match ($0, /^[^ \t]/)) {
87 if (0 == match(field[i], /\"\n+\"[)]/)) {
109 if (match(field[i], /accepting rule at line /)) {
  /external/webkit/WebKitTools/pywebsocket/test/
run_all.py 48 match = _TEST_MODULE_PATTERN.search(filename)
49 if match:
50 module_names.append(match.group(1))
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/String/
match-002.js 2 * File Name: String/match-002.js
11 * String.match( regexp )
20 * RegExp.prototype.exec repeatedly until there is no match. If there is a
21 * match with an empty string (in other words, if the value of
27 * Note that the match function is intentionally generic; it does not
36 var SECTION = "String/match-002.js";
38 var TITLE = "String.prototype.match( regexp )";
105 string + ".match(" + regexp +")",
107 string.match(regexp) );
113 "( " + string + " ).match(" + str_regexp +").length"
    [all...]
  /external/iptables/extensions/
libipt_policy.c 28 " --dir in|out match policy applied during decapsulation/\n"
30 " --pol none|ipsec match policy\n"
31 " --strict match entire policy instead of single element\n"
33 "[!] --reqid reqid match reqid\n"
34 "[!] --spi spi match SPI\n"
35 "[!] --proto proto match protocol (ah/esp/ipcomp)\n"
36 "[!] --mode mode match mode (transport/tunnel)\n"
37 "[!] --tunnel-src addr/mask match tunnel source\n"
38 "[!] --tunnel-dst addr/mask match tunnel destination\n"
116 exit_error(PARAMETER_PROBLEM, "policy match: invalid policy `%s'", s)
    [all...]

Completed in 633 milliseconds

12 3 4 5 6 7 8 91011>>