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

1 2 3 4 5 6 78 91011>>

  /external/oprofile/libpp/
filename_spec.cpp 35 bool filename_spec::match(filename_spec const & rhs, function in class:filename_spec
38 if (!tid.match(rhs.tid) || !cpu.match(rhs.cpu) ||
39 !tgid.match(rhs.tgid) || count != rhs.count ||
47 // PP:3.3 if binary is not empty we must match either the
  /cts/tests/tests/content/src/android/content/cts/
IntentFilter_AuthorityEntryTest.java 56 assertEquals(IntentFilter.NO_MATCH_DATA, mAuthorityEntry.match(uri));
58 assertEquals(IntentFilter.NO_MATCH_DATA, mAuthorityEntry.match(uri));
61 assertEquals(IntentFilter.NO_MATCH_DATA, mAuthorityEntry.match(uri));
64 assertEquals(IntentFilter.MATCH_CATEGORY_HOST, mAuthorityEntry.match(uri));
68 assertEquals(IntentFilter.MATCH_CATEGORY_HOST, mAuthorityEntry.match(uri));
72 assertEquals(IntentFilter.MATCH_CATEGORY_PORT, mAuthorityEntry.match(uri));
76 assertEquals(IntentFilter.MATCH_CATEGORY_HOST, mAuthorityEntry.match(uri));
  /external/chromium_org/chrome/browser/autocomplete/
history_url_provider.cc 146 // Returns a new relevance score for the given |match| based on the
152 const history::HistoryMatch& match,
159 base::Time::Now() - match.url_info.last_visit();
163 match.url_info.typed_count());
167 if (match.url_info.typed_count() == 0) {
170 match.url_info.visit_count());
178 // puts them in the additional info field of the |match| for display in
181 AutocompleteMatch* match) {
182 match->RecordAdditionalInfo("typed count", info.typed_count());
183 match->RecordAdditionalInfo("visit count", info.visit_count())
999 const history::HistoryMatch& match = params->matches[0]; local
    [all...]
  /external/chromium_org/tools/
unused-symbols-report.py 63 match = symbol_re.search(line)
64 if not match:
66 symbol, path = match.groups()
73 match = path_re.match(path)
74 if not match:
77 target, path = match.groups()
  /external/chromium_org/ui/app_list/search/
tokenized_string_match_unittest.cc 16 // Returns a string of |text| marked the hits in |match| using block bracket.
19 const TokenizedStringMatch& match) {
22 const TokenizedStringMatch::Hits& hits = match.hits();
46 TokenizedStringMatch match; local
49 EXPECT_FALSE(match.Calculate(base::UTF8ToUTF16(kTestCases[i].query), text))
56 TEST(TokenizedStringMatchTest, Match) {
75 TokenizedStringMatch match; local
78 EXPECT_TRUE(match.Calculate(base::UTF8ToUTF16(kTestCases[i].query), text));
79 EXPECT_EQ(kTestCases[i].expect, MatchHit(text, match));
95 // Acronym match is better than something in the middle
    [all...]
  /external/lldb/test/lang/objc/foundation/
TestFoundationDisassembly.py 30 match = re.search(" (/.*/Foundation.framework/.*)$", line)
31 if match:
32 foundation_framework = match.group(1)
35 self.assertTrue(match, "Foundation.framework path located")
50 match = codeRE.search(line)
51 if match:
52 func = match.group(1)
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
rjsmin.py 147 match = _re.compile(what).match
148 result = ''.join([chr(c) for c in xrange(127) if not match(chr(c))])
153 match = _re.compile(id_literal_(keep)).match
154 result = ''.join([chr(c) for c in xrange(127) if not match(chr(c))])
186 def space_subber(match):
189 groups = match.groups()
252 def subber(match):
254 groups = match.groups(
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ViaParser.java 56 lexer.match(TokenTypes.ID);
61 lexer.match('/');
63 lexer.match(TokenTypes.ID);
70 lexer.match('/');
72 lexer.match(TokenTypes.ID);
149 lexer.match(LexerCore.ID);
172 lexer.match(LexerCore.ID);
203 this.lexer.match(TokenTypes.VIA);
205 this.lexer.match(':'); // expect a colon.
220 this.lexer.match('\n')
    [all...]
RetryAfterParser.java 95 this.lexer.match(';');
97 lexer.match(TokenTypes.ID);
101 this.lexer.match('=');
114 this.lexer.match('=');
116 lexer.match(TokenTypes.ID);
  /external/chromium_org/sandbox/win/src/
policy_engine_opcodes.cc 45 MatchContext* match);
110 // Argument 0 is the stored number to match.
114 unsigned long match,
118 opcode->SetArgument(0, match);
124 const void* match,
128 opcode->SetArgument(0, match);
157 // Argument 0 is the stored lower bound to match.
158 // Argument 1 is the stored upper bound to match.
194 // Argument 0 is the stored number to match.
197 unsigned long match,
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
crashlogs.py 62 match = first_line_regex.match(f[0:f.find('\n')])
63 if match and match.group('process_name') == process_name and (pid is None or int(match.group('pid')) == pid):
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
phonenumbermatcher.h 90 // Returns true if the text sequence has another match.
93 // Gets next match from text sequence.
94 bool Next(PhoneNumberMatch* match);
104 // Attempts to extract a match from a candidate string. Returns true if a
105 // match is found, otherwise returns false. The value "offset" refers to the
107 bool Find(int index, PhoneNumberMatch* match);
115 // Attempts to extract a match from candidate. Returns true if the match was
118 PhoneNumberMatch* match);
120 // Attempts to extract a match from a candidate string if the whole candidat
    [all...]
  /external/chromium_org/third_party/mesa/src/src/getopt/
getopt_long.c 156 * Returns -1 if short_too is set and the option does not match long_options.
164 int i, match; local
167 match = -1;
185 /* exact match */
186 match = i;
191 * a partial match of a single character.
196 if (match == -1) /* partial match */
197 match = i;
207 if (match != -1) { /* option found *
    [all...]
  /external/iproute2/include/
ip6tables.h 11 struct ip6tables_match *match; member in struct:ip6tables_rule_match
23 /* Size of match data. */
26 /* Size of match data relevent for userspace comparison purposes */
32 /* Initialize the match. */
40 struct ip6t_entry_match **match);
45 /* Prints out the match iff non-NULL: put space at end */
47 const struct ip6t_entry_match *match, int numeric);
51 const struct ip6t_entry_match *match);
134 extern struct ip6tables_match *find_match(const char *name, enum ip6t_tryload, struct ip6tables_rule_match **match);
  /external/mesa3d/src/getopt/
getopt_long.c 156 * Returns -1 if short_too is set and the option does not match long_options.
164 int i, match; local
167 match = -1;
185 /* exact match */
186 match = i;
191 * a partial match of a single character.
196 if (match == -1) /* partial match */
197 match = i;
207 if (match != -1) { /* option found *
    [all...]
  /external/chromium_org/tools/linux/
dump-static-initializers.py 57 is a protoc-generated file. If a single match is found, it is returned.
61 match = protobuf_filename_re.match(filename)
62 if not match:
64 basename = match.groups(0)
88 match = symbol_code_name_re.match(symbol)
89 if not match:
91 symbol = match.group(1)
108 match = nm_re.match(line
    [all...]
  /external/iptables/iptables/
xshared.c 38 if (m->match->help == NULL)
40 m->match->name);
42 m->match->help();
84 * of an explicitly loaded match or a target. However, we support implicit
85 * loading of the protocol match extension. '-p tcp' means 'l4 proto 6' and at
86 * the same time 'load tcp protocol match on demand if we specify --dport'.
89 * - the parameter has not been parsed by a match (m above)
129 m = matchp->match;
134 if (cs->c < matchp->match->option_offset ||
135 cs->c >= matchp->match->option_offset + XT_OPTION_OFFSET_SCALE
    [all...]
  /external/doclava/src/com/google/doclava/parser/
JavaLexer.java 248 match('0');
287 match('0');
399 match("0x");
407 match("0X");
508 match('.');
558 match('.');
746 match('.');
    [all...]
  /external/iproute2/examples/diffserv/
Edge32-ca-u32 58 match ip tos 0x88 0xfc \
62 match ip tos 0x88 0xfc \
71 match ip tos 0x88 0xfc \
75 match ip tos 0x88 0xfc \
83 match ip tos 0x88 0xfc \
87 match ip tos 0x88 0xfc \
98 match ip tos 0x90 0xfc \
102 match ip tos 0x90 0xfc \
110 match ip tos 0x90 0xfc \
114 match ip tos 0x90 0xfc
    [all...]
  /external/chromium_org/components/autofill/core/browser/
form_field.cc 70 AutofillField** match) {
71 return ParseFieldSpecifics(scanner, pattern, MATCH_DEFAULT, match);
78 AutofillField** match) {
87 return MatchAndAdvance(scanner, pattern, match_type, match);
92 AutofillField** match) {
96 match);
114 AutofillField** match) {
116 if (FormField::Match(field, pattern, match_type)) {
117 if (match)
118 *match = field
    [all...]
  /external/chromium_org/components/query_parser/
snippet_unittest.cc 88 // For testing, we'll compute the match positions manually instead of using
97 // to be more generic depending on how we deal with 'folding for match'
126 Snippet::MatchPositions::const_iterator match; local
128 for (match = snippet.matches().begin();
129 match != snippet.matches().end(); ++match) {
130 star_snippet += snippet.text().substr(pos, match->first - pos);
132 star_snippet += snippet.text().substr(match->first,
133 match->second - match->first)
    [all...]
  /external/chromium_org/third_party/closure_linter/closure_linter/
scopeutil_test.py 84 match = scopeutil.MatchAlias(statement)
85 self.assertEquals(expected_match, match)
164 match = scopeutil.MatchAlias(context)
165 if match:
166 matches.add(match)
182 match = scopeutil.MatchAlias(context)
183 if match:
184 unused_alias, symbol = match
186 matches.add(match)
  /external/iptables/extensions/
libip6t_mh.c 66 "mh match options:\n"
67 "[!] --mh-type type[:type] match mh type\n");
82 unsigned int match = limit; local
88 if (match == limit || len == namelen)
89 match = i;
93 if (match != limit) {
94 return mh_names[match].type;
175 static void mh_print(const void *ip, const struct xt_entry_match *match,
178 const struct ip6t_mh *mhinfo = (struct ip6t_mh *)match->data;
189 static void mh_save(const void *ip, const struct xt_entry_match *match)
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCLexer.java 55 match(';');
75 match('(');
95 match(',');
115 match(')');
135 match('{');
155 match('}');
175 match("for");
196 match("int");
217 match("char");
238 match("void");
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCLexer.java 55 match(';');
75 match('(');
95 match(',');
115 match(')');
135 match('{');
155 match('}');
175 match("for");
196 match("int");
217 match("char");
238 match("void");
    [all...]

Completed in 1536 milliseconds

1 2 3 4 5 6 78 91011>>