HomeSort by relevance Sort by last modified time
    Searched refs:match (Results 126 - 150 of 1831) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/
X509CRLSelectorTest.java 181 * Tests if CRLs with any issuers match the selector in the case of
182 * null issuerNames criteria, if specified issuers match the selector,
183 * and if not specified issuer does not match the selector.
195 assertTrue("Any CRL issuers should match in the case of null issuers.",
196 selector.match(crl1) && selector.match(crl2));
202 assertTrue("The CRL should match the selection criteria.",
203 selector.match(crl1) && selector.match(crl2));
204 assertFalse("The CRL should not match the selection criteria."
    [all...]
  /external/iptables/extensions/
libxt_policy.c 26 "policy match options:\n"
27 " --dir in|out match policy applied during decapsulation/\n"
29 " --pol none|ipsec match policy\n"
30 " --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
    [all...]
libxt_connmark.c 40 "connmark match options:\n"
41 "[!] --mark value[/mask] Match ctmark value with optional mask\n");
81 connmark_print(const void *ip, const struct xt_entry_match *match, int numeric)
83 const struct xt_connmark_info *info = (const void *)match->data;
85 printf(" CONNMARK match ");
92 connmark_mt_print(const void *ip, const struct xt_entry_match *match, int numeric)
94 const struct xt_connmark_mtinfo1 *info = (const void *)match->data;
96 printf(" connmark match ");
102 static void connmark_save(const void *ip, const struct xt_entry_match *match)
104 const struct xt_connmark_info *info = (const void *)match->data
    [all...]
libxt_mark.c 18 "mark match options:\n"
19 "[!] --mark value[/mask] Match nfmark value with optional mask\n");
59 mark_mt_print(const void *ip, const struct xt_entry_match *match, int numeric)
61 const struct xt_mark_mtinfo1 *info = (const void *)match->data;
63 printf(" mark match");
70 mark_print(const void *ip, const struct xt_entry_match *match, int numeric)
72 const struct xt_mark_info *info = (const void *)match->data;
74 printf(" MARK match");
82 static void mark_mt_save(const void *ip, const struct xt_entry_match *match)
84 const struct xt_mark_mtinfo1 *info = (const void *)match->data
    [all...]
  /external/webkit/Source/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/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
run_all.py 61 match = _TEST_MODULE_PATTERN.search(filename)
62 if match:
63 module_names.append(match.group(1))
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ErrorInfoParser.java 80 this.lexer.match('<');
84 this.lexer.match('>');
91 this.lexer.match(',');
ExpiresParser.java 68 lexer.match(TokenTypes.EXPIRES);
70 lexer.match(':');
73 lexer.match('\n');
RecordRouteParser.java 69 this.lexer.match(TokenTypes.RECORD_ROUTE);
71 this.lexer.match(':');
80 this.lexer.match(',');
RouteParser.java 65 this.lexer.match(TokenTypes.ROUTE);
67 this.lexer.match(':');
76 this.lexer.match(',');
CallIDParser.java 66 this.lexer.match(TokenTypes.CALL_ID);
68 this.lexer.match(':');
  /external/openfst/src/include/fst/
arcfilter.h 69 // True if specified labels match (don't match) when keep_match is
83 bool match = labels_.Find(label) != labels_.End(); local
84 return keep_match_ ? match : !match;
  /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'
  /external/skia/tests/
ReadWriteAlphaTest.cpp 66 // make sure the original & read back versions match
67 bool match = true; local
72 match = false;
77 REPORTER_ASSERT(reporter, match);
94 match = true;
99 match = false;
104 REPORTER_ASSERT(reporter, match);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
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...]
  /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) {
  /device/asus/deb/recovery/
Android.mk 8 # should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk
  /device/asus/flo/recovery/
Android.mk 8 # should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk
  /device/asus/grouper/recovery/
Android.mk 8 # should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk
  /device/lge/mako/recovery/
Android.mk 8 # should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk
  /external/chromium/chrome/browser/autocomplete/
history_contents_provider.cc 91 // None of our results are applicable for best match.
212 AutocompleteMatch match(this, score, true, MatchInTitle(result) ?
214 match.contents = StringForURLDisplay(result.url(), true, trim_http_);
215 match.fill_into_edit =
217 match.contents);
218 match.destination_url = result.url();
219 match.contents_class.push_back(
221 match.description = result.title();
222 match.starred =
226 ClassifyDescription(result, &match);
    [all...]
  /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/linux-tools-perf/scripts/perl/bin/
rwtop-report 7 if expr match "$i" "-" > /dev/null ; then

Completed in 1933 milliseconds

1 2 3 4 56 7 8 91011>>