Searched refs:match (Results 201 - 225 of 2033) sorted by relevance

1234567891011>>

/external/lldb/test/lang/objc/foundation/
H A DTestFoundationDisassembly.py30 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/chrome/browser/autocomplete/
H A Dhistory_url_provider.cc146 // 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
151 CalculateRelevanceScoreUsingScoringParams( const history::HistoryMatch& match, int old_relevance, const HUPScoringParams& scoring_params) argument
180 RecordAdditionalInfoFromUrlRow(const history::URLRow& info, AutocompleteMatch* match) argument
231 CanPromoteMatchForInlineAutocomplete(const history::HistoryMatch& match) argument
245 ConvertToHostOnly(const history::HistoryMatch& match, const base::string16& input) argument
999 const history::HistoryMatch& match = params->matches[0]; local
[all...]
/external/chromium_org/third_party/WebKit/Source/build/scripts/
H A Drjsmin.py147 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
[all...]
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DViaParser.java56 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('\
[all...]
H A DRetryAfterParser.java95 this.lexer.match(';');
97 lexer.match(TokenTypes.ID);
101 this.lexer.match('=');
114 this.lexer.match('=');
116 lexer.match(TokenTypes.ID);
/external/smali/smali/src/main/java/org/jf/smali/
H A DsmaliTreeWalker.java441 match(input,I_CLASS_DEF,FOLLOW_I_CLASS_DEF_in_smali_file52);
442 match(input, Token.DOWN, null);
459 match(input, Token.UP, null);
582 CLASS_DESCRIPTOR9=(CommonTree)match(input,CLASS_DESCRIPTOR,FOLLOW_CLASS_DESCRIPTOR_in_class_spec110);
619 match(input,I_SUPER,FOLLOW_I_SUPER_in_super_spec130);
620 match(input, Token.DOWN, null);
621 CLASS_DESCRIPTOR11=(CommonTree)match(input,CLASS_DESCRIPTOR,FOLLOW_CLASS_DESCRIPTOR_in_super_spec132);
622 match(input, Token.UP, null);
655 match(input,I_IMPLEMENTS,FOLLOW_I_IMPLEMENTS_in_implements_spec152);
656 match(inpu
[all...]
/external/chromium_org/sandbox/win/src/
H A Dpolicy_engine_opcodes.cc45 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,
113 MakeOpNumberMatch(int16 selected_param, unsigned long match, uint32 options) argument
123 MakeOpVoidPtrMatch(int16 selected_param, const void* match, uint32 options) argument
196 MakeOpUlongAndMatch(int16 selected_param, unsigned long match, uint32 options) argument
396 Evaluate(const ParameterSet* call_params, size_t param_count, MatchContext* match) argument
437 EvaluateHelper(const ParameterSet* parameters, MatchContext* match) argument
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dcrashlogs.py62 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/mesa/src/src/getopt/
H A Dgetopt_long.c156 * 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 !
[all...]
/external/chromium_org/tools/valgrind/
H A Dgdb_helper.py16 match = GDB_LINE_RE.match(output_line)
17 if match:
18 return match.groups()[1], match.groups()[0]
/external/iproute2/include/
H A Dip6tables.h11 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/
H A Dgetopt_long.c156 * 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 !
[all...]
/external/iptables/iptables/
H A Dxshared.c38 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
228 xs_init_match(struct xtables_match *match) argument
[all...]
/external/doclava/src/com/google/doclava/parser/
H A DJavaLexer.java248 match('0');
287 match('0');
399 match("0x");
407 match("0X");
508 match('.');
558 match('.');
746 match('.');
1055 match('\'');
1118 match('\'');
1141 match('\"');
[all...]
/external/iproute2/examples/diffserv/
H A DEdge32-ca-u3258 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 i
[all...]
/external/chromium_org/components/autofill/core/browser/
H A Dform_field.cc70 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) {
117 if (match)
118 *match = field;
68 ParseField(AutofillScanner* scanner, const base::string16& pattern, AutofillField** match) argument
75 ParseFieldSpecifics(AutofillScanner* scanner, const base::string16& pattern, int match_type, AutofillField** match) argument
91 ParseEmptyLabel(AutofillScanner* scanner, AutofillField** match) argument
111 MatchAndAdvance(AutofillScanner* scanner, const base::string16& pattern, int match_type, AutofillField** match) argument
/external/chromium_org/components/query_parser/
H A Dsnippet_unittest.cc88 // 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
[all...]
/external/chromium_org/testing/gtest/test/
H A Dgtest_xml_output_unittest.py186 match = re.match(r'(\d+)-(\d\d)-(\d\d)T(\d\d):(\d\d):(\d\d)', date_time_str)
188 re.match,
191 year=int(match.group(1)), month=int(match.group(2)),
192 day=int(match.group(3)), hour=int(match.group(4)),
193 minute=int(match.group(5)), second=int(match.group(6)))
246 "'%s' exited with code %s, which doesn't match "
[all...]
/external/chromium_org/third_party/closure_linter/closure_linter/
H A Dscopeutil_test.py84 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/chromium_org/third_party/libvpx/source/libvpx/tools/
H A Dcpplint.py390 # match those on a word boundary.
511 return _regexp_compile_cache[pattern].match(s)
1047 line = line.replace(r'\\', 'XX') # after this, \\" does not match to \"
1078 # Found the end of the string, match leading space for this
1209 if not _RE_PATTERN_INCLUDE.match(elided):
1458 '#ifndef and #define don\'t match, suggested CPP variable is: %s' %
1639 if _RE_PATTERN_INVALID_INCREMENT.match(line):
1918 _MATCH_ASM.match(line)):
2029 if _MATCH_ASM.match(line):
2209 match
[all...]
/external/clang/include/clang/ASTMatchers/
H A DASTMatchFinder.h11 // over the AST and invokes a given callback on every match.
14 // subtree match on the AST. Next, a callback that is executed every time the
19 // the match or construct changes that can be applied to the code.
56 /// that will trigger the callbacks specified via addMatcher(...) when a match
68 /// \brief Contains all information for a given match.
70 /// Every time a match is found, the MatchFinder will invoke the registered
71 /// MatchCallback with a MatchResult containing information about the match.
75 /// \brief Contains the nodes bound on the current match.
93 /// \brief Called on every match by the \c MatchFinder.
119 /// Calls 'Action' with the BoundNodes on every match
159 template <typename T> void match(const T &Node, ASTContext &Context) { function in class:clang::ast_matchers::MatchFinder
240 match(MatcherT Matcher, const ast_type_traits::DynTypedNode &Node, function in namespace:clang::ast_matchers
251 match(MatcherT Matcher, const NodeT &Node, ASTContext &Context) { function in namespace:clang::ast_matchers
[all...]
/external/gtest/test/
H A Dgtest_xml_output_unittest.py186 match = re.match(r'(\d+)-(\d\d)-(\d\d)T(\d\d):(\d\d):(\d\d)', date_time_str)
188 re.match,
191 year=int(match.group(1)), month=int(match.group(2)),
192 day=int(match.group(3)), hour=int(match.group(4)),
193 minute=int(match.group(5)), second=int(match.group(6)))
246 "'%s' exited with code %s, which doesn't match "
[all...]
/external/iptables/extensions/
H A Dlibip6t_mh.c66 "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, argument
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) argument
[all...]
/external/libvpx/libvpx/tools/
H A Dcpplint.py390 # match those on a word boundary.
511 return _regexp_compile_cache[pattern].match(s)
1047 line = line.replace(r'\\', 'XX') # after this, \\" does not match to \"
1078 # Found the end of the string, match leading space for this
1209 if not _RE_PATTERN_INCLUDE.match(elided):
1458 '#ifndef and #define don\'t match, suggested CPP variable is: %s' %
1639 if _RE_PATTERN_INVALID_INCREMENT.match(line):
1918 _MATCH_ASM.match(line)):
2029 if _MATCH_ASM.match(line):
2209 match
[all...]
/external/valgrind/main/none/tests/s390x/
H A Ddfptest.c21 int match; \
27 : "=d" (match) : "f" (f), "a" (num) : "cc"); \
28 match; \
33 int match; \
39 : "=d" (match) : "f" (f), "a" (num) : "cc"); \
40 match; \
45 int match; \
51 : "=d" (match) : "f" (f), "a" (num) : "cc"); \
52 match; \

Completed in 718 milliseconds

1234567891011>>