HomeSort by relevance Sort by last modified time
    Searched refs:match (Results 101 - 125 of 2257) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/compiler-rt/lib/sanitizer_common/scripts/
gen_dynamic_list.py 59 match = re.match('__interceptor_(.*)', func)
60 if match:
64 orig_name = match.group(1)
69 if re.match('__sanitizer_(.*)', func):
  /external/lldb/source/Plugins/SymbolFile/DWARF/
UniqueDWARFASTType.cpp 34 // Make sure the tags match
40 // Make sure the file and line match
44 // file and line. Now verify all of the parent DIEs match.
47 bool match = true; local
49 while (!done && match && parent_arg_die && parend_pos_die)
64 match = false;
70 match = false;
84 if (match)
  /external/nist-sip/java/gov/nist/javax/sip/parser/
CallInfoParser.java 77 this.lexer.match('<');
81 this.lexer.match('>');
88 this.lexer.match(',');
94 this.lexer.match('<');
98 this.lexer.match('>');
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(',');
  /external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/
X509CRLSelectorTest.java 179 * Tests if CRLs with any issuers match the selector in the case of
180 * null issuerNames criteria, if specified issuers match the selector,
181 * and if not specified issuer does not match the selector.
193 assertTrue("Any CRL issuers should match in the case of null issuers.",
194 selector.match(crl1) && selector.match(crl2));
200 assertTrue("The CRL should match the selection criteria.",
201 selector.match(crl1) && selector.match(crl2));
202 assertFalse("The CRL should not match the selection criteria."
    [all...]
  /external/iptables/extensions/
libxt_policy.c 30 "policy match options:\n"
31 " --dir in|out match policy applied during decapsulation/\n"
33 " --pol none|ipsec match policy\n"
34 " --strict match entire policy instead of single element\n"
37 "[!] --reqid reqid match reqid\n"
38 "[!] --spi spi match SPI\n"
39 "[!] --proto proto match protocol (ah/esp/ipcomp)\n"
40 "[!] --mode mode match mode (transport/tunnel)\n"
41 "[!] --tunnel-src addr/mask match tunnel source\n"
42 "[!] --tunnel-dst addr/mask match tunnel destination\n
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/x509v3/
v3nametest.c 91 "set emailAddress: email: [postmaster@example.com] does not match [Postmaster@example.com]",
92 "set emailAddress: email: [postmaster@EXAMPLE.COM] does not match [Postmaster@example.com]",
93 "set emailAddress: email: [Postmaster@example.com] does not match [postmaster@example.com]",
94 "set emailAddress: email: [Postmaster@example.com] does not match [postmaster@EXAMPLE.COM]",
105 "set rfc822Name: email: [postmaster@example.com] does not match [Postmaster@example.com]",
106 "set rfc822Name: email: [Postmaster@example.com] does not match [postmaster@example.com]",
107 "set rfc822Name: email: [Postmaster@example.com] does not match [postmaster@EXAMPLE.COM]",
108 "set rfc822Name: email: [postmaster@EXAMPLE.COM] does not match [Postmaster@example.com]",
309 const char *nameincert, int match, const char *name)
312 if (match < 0
332 int match, ret; local
    [all...]
  /cts/tests/tests/drm/jni/
android_drm_cts_NativeCodeTest.cpp 39 const char *match = "Result: Parcel(00000000 '....')"; local
40 if (!strncmp(buffer, match, strlen(match))) {
  /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/chromium_org/chrome/browser/autocomplete/
autocomplete_controller.cc 40 // Converts the given match to a type (and possibly subtype) based on the AQS
44 const AutocompleteMatch::Type& match,
59 (match != AutocompleteMatchType::SEARCH_SUGGEST_PERSONALIZED)) {
60 DCHECK((match == AutocompleteMatchType::SEARCH_SUGGEST) ||
61 (match == AutocompleteMatchType::NAVSUGGEST));
65 switch (match) {
160 bool IsTrivialAutocompletion(const AutocompleteMatch& match) {
161 return match.type == AutocompleteMatchType::SEARCH_WHAT_YOU_TYPED ||
162 match.type == AutocompleteMatchType::URL_WHAT_YOU_TYPED ||
163 match.type == AutocompleteMatchType::SEARCH_OTHER_ENGINE
629 AutocompleteMatch* match = result->match_at(index); local
    [all...]
history_provider.cc 22 void HistoryProvider::DeleteMatch(const AutocompleteMatch& match) {
25 DCHECK(match.deletable);
34 DCHECK(match.destination_url.is_valid());
35 history_service->DeleteURL(match.destination_url);
37 DeleteMatchFromMatches(match);
56 void HistoryProvider::DeleteMatchFromMatches(const AutocompleteMatch& match) {
60 if (i->destination_url == match.destination_url && i->type == match.type) {
98 ACMatchClassification::MATCH | url_style));
  /external/chromium_org/media/
PRESUBMIT.py 93 # A general-purpose chunk of regex to match whitespace and/or comments
108 # This should match a uma histogram enumeration macro expression.
122 # We want to match across lines, but still report a line number, so we keep
128 # will often span multiple lines, so finding a match looking just at the
130 match = uma_macro_re.search(contents)
131 while match:
132 line_number += contents.count('\n', 0, match.start())
133 max_arg = match.group(1) # The third argument.
135 if (not uma_max_re.match(max_arg) and match.group(2) !
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
check_injected_script_source.py 63 for match in re.finditer(black_list_call_regex, line):
65 print "ERROR: Black list function call in %s at line %02d column %02d: %s" % (os.path.basename(fileName), i + 1, match.start(), match.group(0))
  /external/chromium_org/tools/grit/grit/
lazy_re_unittest.py 25 self.assertTrue(rex.match('bingo'))
30 self.assertTrue(rex.match('bingo'))
34 self.assertTrue(rex.match('bingo'))
  /external/chromium_org/tools/gyp/test/mac/
gyptest-app-error.py 19 def match(a, b): function
30 test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode'], match=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/lldb/examples/python/
delta.py 89 match = timestamp_regex.match (line)
90 if match:
91 curr_time = float (match.group(2))
98 print '%s%.6f %+.6f%s' % (match.group(1), curr_time - base_time, delta, match.group(3))
  /device/moto/shamu/camera/QCamera2/util/
QCameraQueue.h 53 void flushNodes(match_fn match);
54 void flushNodes(match_fn_data match, void *spec_data);
  /external/chromium_org/android_webview/tools/
find_copyrights.pl 133 my $match = $1;
134 if ($match !~ m%^\s*$copyright_disindicator_regex%i) {
135 $match =~ s/([,.])?\s*$//;
136 $match =~ s/$copyright_indicator_regex//ig;
137 $match =~ s/^\s+//;
138 $match =~ s/\s{2,}/ /g;
139 $match =~ s/\\@/@/g;
140 $copyright = $match;
  /external/chromium_org/chrome/browser/ui/cocoa/omnibox/
omnibox_popup_cell.h 23 // The match which will be rendered for this row in omnibox dropdown.
26 // NSAttributedString instances for various match components.
36 // The width of widest match contents in a set of infinite suggestions.
43 - (void)setMatch:(const AutocompleteMatch&)match;
49 // Returns the width of the match contents.
53 // given match. It is costly to compute this offset, so it is computed once and
55 + (CGFloat)computeContentsOffset:(const AutocompleteMatch&)match;
  /external/chromium_org/tools/gyp/test/variables/filelist/
gyptest-filelist-golden.py 38 if not test.match(contents, expect):
45 if not test.match(contents, expect):
  /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);

Completed in 863 milliseconds

1 2 3 45 6 7 8 91011>>