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

1 2 34 5 6 7 8 91011>>

  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
15.10.2-1.js 63 actualmatch = string.match(pattern);
70 actualmatch = string.match(pattern);
77 actualmatch = string.match(pattern);
84 actualmatch = string.match(pattern);
91 actualmatch = string.match(pattern);
98 actualmatch = string.match(pattern);
105 actualmatch = string.match(pattern);
112 actualmatch = string.match(pattern);
119 actualmatch = string.match(pattern);
126 actualmatch = string.match(pattern)
    [all...]
octal-001.js 61 actualmatch = string.match(pattern);
73 actualmatch = string.match(pattern);
80 actualmatch = string.match(pattern);
87 actualmatch = string.match(pattern);
94 actualmatch = string.match(pattern);
101 actualmatch = string.match(pattern);
regress-87231.js 34 * Recall that "?" means "match 0 or 1 times". Here, it should NOT do
35 * greedy matching: it should match 0 times instead of 1. This allows
36 * the 2nd subexpression to make the only match it can: the single 'A'.
37 * Such "altruism" is the only way there can be a successful global match...
59 actualmatch = string.match(pattern);
65 actualmatch = string.match(pattern);
71 actualmatch = string.match(pattern);
82 actualmatch = string.match(pattern);
88 actualmatch = string.match(pattern);
94 actualmatch = string.match(pattern)
    [all...]
octal-002.js 84 * We should get no match from the regexp /.\011/, because it should be
91 actualmatch = string.match(pattern);
99 * Should get a match now, because the octal escape sequence in the regexp
105 actualmatch = string.match(pattern);
118 actualmatch = string.match(pattern);
124 * This one should produce a match. The two-character string
130 actualmatch = string.match(pattern);
142 actualmatch = string.match(pattern);
154 actualmatch = string.match(pattern);
166 actualmatch = string.match(pattern)
    [all...]
regress-57572.js 48 actualmatch = string.match(pattern);
55 actualmatch = string.match(pattern);
62 actualmatch = string.match(pattern);
69 actualmatch = string.match(pattern);
78 actualmatch = string.match(pattern);
85 actualmatch = string.match(pattern);
92 actualmatch = string.match(pattern);
99 actualmatch = string.match(pattern);
  /external/webkit/JavaScriptCore/tests/mozilla/js1_2/regexp/
backslash.js 41 // 'abcde'.match(new RegExp('\e'))
42 testcases[count++] = new TestCase ( SECTION, "'abcde'.match(new RegExp('\e'))",
43 String(["e"]), String('abcde'.match(new RegExp('\e'))));
45 // 'ab\\cde'.match(new RegExp('\\\\'))
46 testcases[count++] = new TestCase ( SECTION, "'ab\\cde'.match(new RegExp('\\\\'))",
47 String(["\\"]), String('ab\\cde'.match(new RegExp('\\\\'))));
49 // 'ab\\cde'.match(/\\/) (using literal)
50 testcases[count++] = new TestCase ( SECTION, "'ab\\cde'.match(/\\\\/)",
51 String(["\\"]), String('ab\\cde'.match(/\\/)));
53 // 'before ^$*+?.()|{}[] after'.match(new RegExp('\^\$\*\+\?\.\(\)\|\{\}\[\]')
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-179524.js 38 * SUMMARY: JS shouldn't crash on extraneous args to str.match(), etc.
43 * it is NOT converted to one, unlike the case for str.match(), str.search().
52 var summary = "Don't crash on extraneous arguments to str.match(), etc.";
65 actual = str.match(re);
70 actual = str.match(re, 'i');
75 actual = str.match(re, 'g', '');
80 actual = str.match(re, 'z', new Object(), new Date());
135 * Now test the case where str.match()'s first argument is not a regexp object.
143 actual = str.match('a').toString();
144 expect = str.match(/a/).toString()
    [all...]
  /external/iptables/extensions/
libip6t_eui64.c 35 struct ip6t_entry_match **match)
48 const struct ip6t_entry_match *match,
55 static void save(const struct ip6t_ip6 *ip, const struct ip6t_entry_match *match)
libip6t_2connmark.c 36 "CONNMARK match v%s options:\n"
37 "[!] --mark value[/mask] Match nfmark value with optional mask\n"
47 /* Initialize the match. */
61 struct ip6t_entry_match **match)
63 struct ipt_connmark_info *markinfo = (struct ipt_connmark_info *)(*match)->data;
104 "MARK match: You must specify `--mark'");
110 const struct ip6t_entry_match *match,
113 struct ipt_connmark_info *info = (struct ipt_connmark_info *)match->data;
115 printf("CONNMARK match ");
123 save(const struct ip6t_ip6 *ip, const struct ip6t_entry_match *match)
    [all...]
libipt_2connmark.c 36 "CONNMARK match v%s options:\n"
37 "[!] --mark value[/mask] Match nfmark value with optional mask\n"
47 /* Initialize the match. */
61 struct ipt_entry_match **match)
63 struct ipt_connmark_info *markinfo = (struct ipt_connmark_info *)(*match)->data;
104 "MARK match: You must specify `--mark'");
110 const struct ipt_entry_match *match,
113 struct ipt_connmark_info *info = (struct ipt_connmark_info *)match->data;
115 printf("CONNMARK match ");
123 save(const struct ipt_ip *ip, const struct ipt_entry_match *match)
    [all...]
libipt_comment.c 1 /* Shared library add-on to iptables to add comment match support.
5 * Initial comment match
22 "COMMENT match options:\n"
50 struct ipt_entry_match **match)
52 struct ipt_comment_info *commentinfo = (struct ipt_comment_info *)(*match)->data;
77 "COMMENT match: You must specify `--comment'");
83 const struct ipt_entry_match *match,
86 struct ipt_comment_info *commentinfo = (struct ipt_comment_info *)match->data;
94 save(const struct ipt_ip *ip, const struct ipt_entry_match *match)
96 struct ipt_comment_info *commentinfo = (struct ipt_comment_info *)match->data
    [all...]
libip6t_mac.c 22 " Match source MAC address\n"
61 struct ip6t_entry_match **match)
63 struct ip6t_mac_info *macinfo = (struct ip6t_mac_info *)(*match)->data;
102 const struct ip6t_entry_match *match,
107 if (((struct ip6t_mac_info *)match->data)->invert)
110 print_mac(((struct ip6t_mac_info *)match->data)->srcaddr);
114 static void save(const struct ip6t_ip6 *ip, const struct ip6t_entry_match *match)
116 if (((struct ip6t_mac_info *)match->data)->invert)
120 print_mac(((struct ip6t_mac_info *)match->data)->srcaddr);
libip6t_policy.c 29 " --dir in|out match policy applied during decapsulation/\n"
31 " --pol none|ipsec match policy\n"
32 " --strict match entire policy instead of single element\n"
34 "[!] --reqid reqid match reqid\n"
35 "[!] --spi spi match SPI\n"
36 "[!] --proto proto match protocol (ah/esp/ipcomp)\n"
37 "[!] --mode mode match mode (transport/tunnel)\n"
38 "[!] --tunnel-src addr/masklen match tunnel source\n"
39 "[!] --tunnel-dst addr/masklen match tunnel destination\n"
156 exit_error(PARAMETER_PROBLEM, "policy match: invalid policy `%s'", s)
    [all...]
libipt_2set.c 30 " 'name' is the set name from to match,\n"
41 /* Initialize the match. */
42 static void init(struct ipt_entry_match *match, unsigned int *nfcache)
45 (struct ipt_set_info_match *) match->data;
56 unsigned int *nfcache, struct ipt_entry_match **match)
59 (struct ipt_set_info_match *) (*match)->data;
131 const struct ipt_entry_match *match, int numeric)
134 (struct ipt_set_info_match *) match->data;
141 const struct ipt_entry_match *match)
144 (struct ipt_set_info_match *) match->data
    [all...]
libipt_mac.c 22 " Match source MAC address\n"
61 struct ipt_entry_match **match)
63 struct ipt_mac_info *macinfo = (struct ipt_mac_info *)(*match)->data;
102 const struct ipt_entry_match *match,
107 if (((struct ipt_mac_info *)match->data)->invert)
110 print_mac(((struct ipt_mac_info *)match->data)->srcaddr);
114 static void save(const struct ipt_ip *ip, const struct ipt_entry_match *match)
116 if (((struct ipt_mac_info *)match->data)->invert)
120 print_mac(((struct ipt_mac_info *)match->data)->srcaddr);
  /frameworks/base/core/tests/coretests/src/android/app/
SuggestionProvider.java 65 int match = sURLMatcher.match(url); local
66 switch (match) {
87 int match = sURLMatcher.match(url); local
88 switch (match) {
  /external/iproute2/include/
xt-internal.h 22 /* optname to check revision support of match */
25 /* optname to check revision support of match */
38 struct xtables_match *match; member in struct:xtables_rule_match
61 struct xtables_rule_match **match);
  /external/bluetooth/glib/gio/xdgmime/
xdgmimemagic.c 245 _xdg_mime_magic_parse_header (FILE *magic_file, XdgMimeMagicMatch *match)
253 assert (match != NULL);
261 match->priority = _xdg_mime_magic_read_a_number (magic_file, &end_of_file);
264 if (match->priority == -1)
287 match->mime_type = strdup (buffer);
314 XdgMimeMagicMatch *match)
505 matchlet->next = match->matchlet;
506 match->matchlet = matchlet;
593 _xdg_mime_magic_match_compare_to_data (XdgMimeMagicMatch *match,
597 return _xdg_mime_magic_matchlet_compare_level (match->matchlet, data, len, 0)
663 XdgMimeMagicMatch *match; local
707 XdgMimeMagicMatch *match; local
757 XdgMimeMagicMatch *match = NULL; \/* Quiet compiler *\/ local
    [all...]
  /external/skia/src/animator/
SkDisplayList.cpp 61 int SkDisplayList::findGroup(SkDrawable* match, SkTDDrawableArray** list,
66 return SearchForMatch(match, list, parent, found, grandList);
79 int SkDisplayList::SearchForMatch(SkDrawable* match, SkTDDrawableArray** list,
84 if (draw == match)
88 if (apply->scope == match)
90 if (apply->scope->isGroup() && SearchGroupForMatch(apply->scope, match, list, parent, found, grandList, index))
95 if (scope == match)
101 if (draw->isGroup() && SearchGroupForMatch(draw, match, list, parent, found, grandList, index))
108 bool SkDisplayList::SearchGroupForMatch(SkDrawable* draw, SkDrawable* match, SkTDDrawableArray** list,
111 if (group->getOriginal() == match)
    [all...]
  /bionic/libc/kernel/common/linux/netfilter_ipv4/
ipt_owner.h 27 u_int8_t match, invert; member in struct:ipt_owner_info
  /bionic/libc/kernel/common/linux/netfilter_ipv6/
ip6t_owner.h 25 u_int8_t match, invert; member in struct:ip6t_owner_info
  /development/tools/findunused/
findunusedtranslations 55 for $match (@matches) {
56 print "Rewriting $match\n";
61 open(IN, "<$match");
97 open(OUT, ">$match");
  /external/apache-http/src/org/apache/http/cookie/
CookieAttributeHandler.java 72 * @param cookie {@link org.apache.http.cookie.Cookie} to match
73 * @param origin the cookie source to match against
74 * @return <tt>true</tt> if the match is successful; <tt>false</tt> otherwise
76 boolean match(Cookie cookie, CookieOrigin origin); method in interface:CookieAttributeHandler
  /external/iproute2/tc/
emp_ematch.y 31 %type <e> match expr
48 match
50 | match relation expr
58 match: label
  /external/iptables/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

Completed in 1660 milliseconds

1 2 34 5 6 7 8 91011>>