HomeSort by relevance Sort by last modified time
    Searched full:match (Results 1 - 25 of 10247) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/memcheck/tests/
match-overrun.vgtest 1 prog: match-overrun
2 vgopts: -q --suppressions=match-overrun.supp
  /external/webkit/LayoutTests/fast/xpath/
ensure-null-namespace-expected.txt 1 Test for bug 12581: XPath //title shouldn't match <title> in XHTML.
empty-string-substring-expected.txt 1 Test for bug 11815: XPathEvaluator behavior does not match Firefox - substring() and empty element.
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/
asterisk.js 41 // 'abcddddefg'.match(new RegExp('d*'))
42 testcases[count++] = new TestCase ( SECTION, "'abcddddefg'.match(new RegExp('d*'))",
43 String([""]), String('abcddddefg'.match(new RegExp('d*'))));
45 // 'abcddddefg'.match(new RegExp('cd*'))
46 testcases[count++] = new TestCase ( SECTION, "'abcddddefg'.match(new RegExp('cd*'))",
47 String(["cdddd"]), String('abcddddefg'.match(new RegExp('cd*'))));
49 // 'abcdefg'.match(new RegExp('cx*d'))
50 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(new RegExp('cx*d'))",
51 String(["cd"]), String('abcdefg'.match(new RegExp('cx*d'))));
53 // 'xxxxxxx'.match(new RegExp('(x*)(x+)')
    [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...]
special_characters.js 42 testcases[count++] = new TestCase ( SECTION, "'^abcdefghi'.match(/\^abc/)", String(["^abc"]), String('^abcdefghi'.match(/\^abc/)));
45 testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/^abc/)", String(["abc"]), String('abcdefghi'.match(/^abc/)));
48 testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/fghi$/)", String(["ghi"]), String('abcdefghi'.match(/ghi$/)));
51 testcases[count++] = new TestCase ( SECTION, "'eeeefghi'.match(/e*/)", String(["eeee"]), String('eeeefghi'.match(/e*/)));
54 testcases[count++] = new TestCase ( SECTION, "'abcdeeeefghi'.match(/e+/)", String(["eeee"]), String('abcdeeeefghi'.match(/e+/)))
    [all...]
interval.js 41 // 'aaabbbbcccddeeeefffff'.match(new RegExp('b{2}c'))
42 testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{2}c'))",
43 String(["bbc"]), String('aaabbbbcccddeeeefffff'.match(new RegExp('b{2}c'))));
45 // 'aaabbbbcccddeeeefffff'.match(new RegExp('b{8}'))
46 testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{8}'))",
47 null, 'aaabbbbcccddeeeefffff'.match(new RegExp('b{8}')));
49 // 'aaabbbbcccddeeeefffff'.match(new RegExp('b{2,}c'))
50 testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{2,}c'))",
51 String(["bbbbc"]), String('aaabbbbcccddeeeefffff'.match(new RegExp('b{2,}c'))));
53 // 'aaabbbbcccddeeeefffff'.match(new RegExp('b{8,}c')
    [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...]
RegExp_lastParen_as_array.js 41 // 'abcd'.match(/(abc)d/); RegExp['$+']
42 'abcd'.match(/(abc)d/);
43 testcases[count++] = new TestCase ( SECTION, "'abcd'.match(/(abc)d/); RegExp['$+']",
46 // 'abcd'.match(/(bcd)e/); RegExp['$+']
47 'abcd'.match(/(bcd)e/);
48 testcases[count++] = new TestCase ( SECTION, "'abcd'.match(/(bcd)e/); RegExp['$+']",
51 // 'abcdefg'.match(/(a(b(c(d)e)f)g)/); RegExp['$+']
52 'abcdefg'.match(/(a(b(c(d)e)f)g)/);
53 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(/(a(b(c(d)e)f)g)/); RegExp['$+']",
56 // 'abcdefg'.match(new RegExp('(a(b(c(d)e)f)g)')); RegExp['$+'
    [all...]
character_class.js 41 // 'abcde'.match(new RegExp('ab[ercst]de'))
42 testcases[count++] = new TestCase ( SECTION, "'abcde'.match(new RegExp('ab[ercst]de'))",
43 String(["abcde"]), String('abcde'.match(new RegExp('ab[ercst]de'))));
45 // 'abcde'.match(new RegExp('ab[erst]de'))
46 testcases[count++] = new TestCase ( SECTION, "'abcde'.match(new RegExp('ab[erst]de'))",
47 null, 'abcde'.match(new RegExp('ab[erst]de')));
49 // 'abcdefghijkl'.match(new RegExp('[d-h]+'))
50 testcases[count++] = new TestCase ( SECTION, "'abcdefghijkl'.match(new RegExp('[d-h]+'))",
51 String(["defgh"]), String('abcdefghijkl'.match(new RegExp('[d-h]+'))));
53 // 'abc6defghijkl'.match(new RegExp('[1234567].{2}')
    [all...]
parentheses.js 41 // 'abc'.match(new RegExp('(abc)'))
42 testcases[count++] = new TestCase ( SECTION, "'abc'.match(new RegExp('(abc)'))",
43 String(["abc","abc"]), String('abc'.match(new RegExp('(abc)'))));
45 // 'abcdefg'.match(new RegExp('a(bc)d(ef)g'))
46 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(new RegExp('a(bc)d(ef)g'))",
47 String(["abcdefg","bc","ef"]), String('abcdefg'.match(new RegExp('a(bc)d(ef)g'))));
49 // 'abcdefg'.match(new RegExp('(.{3})(.{4})'))
50 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(new RegExp('(.{3})(.{4})'))",
51 String(["abcdefg","abc","defg"]), String('abcdefg'.match(new RegExp('(.{3})(.{4})'))));
53 // 'aabcdaabcd'.match(new RegExp('(aa)bcd\1')
    [all...]
plus.js 41 // 'abcdddddefg'.match(new RegExp('d+'))
42 testcases[count++] = new TestCase ( SECTION, "'abcdddddefg'.match(new RegExp('d+'))",
43 String(["ddddd"]), String('abcdddddefg'.match(new RegExp('d+'))));
45 // 'abcdefg'.match(new RegExp('o+'))
46 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(new RegExp('o+'))",
47 null, 'abcdefg'.match(new RegExp('o+')));
49 // 'abcdefg'.match(new RegExp('d+'))
50 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(new RegExp('d+'))",
51 String(['d']), String('abcdefg'.match(new RegExp('d+'))));
53 // 'abbbbbbbc'.match(new RegExp('(b+)(b+)(b+)')
    [all...]
  /external/kernel-headers/original/linux/netfilter_ipv6/
ip6t_owner.h 4 /* match and invert flags */
15 u_int8_t match, invert; /* flags */ member in struct:ip6t_owner_info
  /external/skia/tools/tests/skdiff/identical-bits-or-pixels/output-expected/
command_line 1 out/Debug/skdiff --nodiffs --match identical-bits --match identical-pixels tools/tests/skdiff/baseDir tools/tests/skdiff/comparisonDir tools/tests/skdiff/identical-bits-or-pixels/output-actual
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_ipv6/
ip6t_owner.h 4 /* match and invert flags */
15 u_int8_t match, invert; /* flags */ member in struct:ip6t_owner_info
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_ipv6/
ip6t_owner.h 4 /* match and invert flags */
15 u_int8_t match, invert; /* flags */ member in struct:ip6t_owner_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_ipv6/
ip6t_owner.h 4 /* match and invert flags */
15 u_int8_t match, invert; /* flags */ member in struct:ip6t_owner_info
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Selector.java 6 boolean match(Object obj); method in interface:Selector
  /external/nist-sip/java/javax/sip/header/
SIPIfMatchHeader.java 4 String NAME = "SIP-If-Match";
  /external/chromium/chrome/browser/autofill/
form_field_unittest.cc 12 TEST(FormFieldTest, Match) {
15 // Empty strings match.
16 EXPECT_TRUE(FormField::Match(&field, string16(), true));
20 EXPECT_TRUE(FormField::Match(&field, string16(), true));
24 EXPECT_TRUE(FormField::Match(&field, ASCIIToUTF16("^$"), true));
26 // Strictly empty pattern does not match non-empty string.
28 EXPECT_FALSE(FormField::Match(&field, ASCIIToUTF16("^$"), true));
30 // Non-empty pattern doesn't match empty string.
32 EXPECT_FALSE(FormField::Match(&field, ASCIIToUTF16("a"), true));
36 EXPECT_TRUE(FormField::Match(&field, ASCIIToUTF16("^head"), true))
    [all...]
  /external/openssh/
mdoc2man.awk 77 if(match(words[w],"^Li|Pf$")) {
79 } else if(match(words[w],"^Xo$")) {
82 if(length(line)&&!(match(line," $")||prenl))
84 } else if(match(words[w],"^Xc$")) {
90 } else if(match(words[w],"^Bd$")) {
92 if(match(words[w+1],"-literal")) {
97 } else if(match(words[w],"^Ed$")) {
100 } else if(match(words[w],"^Ns$")) {
105 } else if(match(words[w],"^No$")) {
109 } else if(match(words[w],"^Dq$"))
    [all...]
  /external/webkit/Tools/DumpRenderTree/chromium/
fonts.conf 5 <match target="font">
7 </match>
9 <match target="pattern">
16 </match>
18 <match target="pattern">
25 </match>
27 <match target="pattern">
34 </match>
38 <match target="pattern">
45 </match>
    [all...]
  /external/iptables/extensions/
libip6t_rt.man 0 Match on IPv6 routing header
4 Match the type (numeric).
7 Match the `segments left' field (range).
10 Match the length of this header.
13 Match the reserved field, too (type=0)
16 Match type=0 addresses (list).
libipt_unclean.man 1 This module takes no options, but attempts to match packets which seem
  /external/valgrind/unittest/
match_output.py 13 match = False
18 match = True
19 # print 'match: %s =~ %s' % (line, line_re)
21 if not match:
22 print 'no match for: %s' % (line_re)
34 print >>sys.stderr, 'File does not match the template'

Completed in 409 milliseconds

1 2 3 4 5 6 7 8 91011>>