Searched refs:match (Results 176 - 200 of 1089) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/inspector/front-end/
H A DColor.js302 var match = this.value.match(simple);
303 if (match) {
306 if (match[1]) { // hex
307 var hex = match[1].toUpperCase();
315 } else if (match[2]) { // rgb
317 var rgb = match[2].split(/\s*,\s*/);
320 } else if (match[3]) { // nickname
321 var nickname = match[3].toLowerCase();
327 } else if (match[
[all...]
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
H A Dtokenizer.py116 match = matcher.regex.match(string, index)
118 if match:
125 # Add the match.
126 self.__AddToken(self._CreateToken(match.group(), matcher.type, line,
127 line_number, match.groupdict()))
129 # Change the mode to the correct one for after this match.
133 index = match.end()
139 # first character to the string of consecutive non match characters.
/external/iptables/extensions/
H A Dlibxt_multiport.c25 "multiport match options:\n"
28 " match source port(s)\n"
31 " match destination port(s)\n"
33 " match both source and destination port(s)\n"
40 "multiport match options:\n"
43 " match source port(s)\n"
46 " match destination port(s)\n"
48 " match both source and destination port(s)\n");
281 __multiport_print(const struct xt_entry_match *match, int numeric, argument
285 = (const struct xt_multiport *)match
314 multiport_print(const void *ip_void, const struct xt_entry_match *match, int numeric) argument
321 multiport_print6(const void *ip_void, const struct xt_entry_match *match, int numeric) argument
328 __multiport_print_v1(const struct xt_entry_match *match, int numeric, uint16_t proto) argument
368 multiport_print_v1(const void *ip_void, const struct xt_entry_match *match, int numeric) argument
375 multiport_print6_v1(const void *ip_void, const struct xt_entry_match *match, int numeric) argument
382 __multiport_save(const struct xt_entry_match *match, uint16_t proto) argument
409 multiport_save(const void *ip_void, const struct xt_entry_match *match) argument
416 multiport_save6(const void *ip_void, const struct xt_entry_match *match) argument
423 __multiport_save_v1(const struct xt_entry_match *match, uint16_t proto) argument
457 multiport_save_v1(const void *ip_void, const struct xt_entry_match *match) argument
464 multiport_save6_v1(const void *ip_void, const struct xt_entry_match *match) argument
[all...]
H A Dlibxt_connlimit.c23 "connlimit match options:\n"
24 " --connlimit-upto n match if the number of existing connections is 0..n\n"
25 " --connlimit-above n match if the number of existing connections is >n\n"
49 static void connlimit_init(struct xt_entry_match *match) argument
51 struct xt_connlimit_info *info = (void *)match->data;
60 const unsigned int revision = (*cb->match)->u.user.revision;
129 const struct xt_entry_match *match, int numeric)
131 const struct xt_connlimit_info *info = (const void *)match->data;
140 const struct xt_entry_match *match, int numeric)
142 const struct xt_connlimit_info *info = (const void *)match
128 connlimit_print4(const void *ip, const struct xt_entry_match *match, int numeric) argument
139 connlimit_print6(const void *ip, const struct xt_entry_match *match, int numeric) argument
150 connlimit_save4(const void *ip, const struct xt_entry_match *match) argument
168 connlimit_save6(const void *ip, const struct xt_entry_match *match) argument
[all...]
H A Dlibxt_owner.c15 /* match and invert flags */
35 uint8_t match, invert; /* flags */ member in struct:ipt_owner_info
44 uint8_t match, invert; /* flags */ member in struct:ip6t_owner_info
64 "owner match options:\n"
76 "owner match options:\n"
87 "owner match options:\n"
152 info->match |= IPT_OWNER_UID;
162 info->match |= IPT_OWNER_GID;
168 info->match |= IPT_OWNER_PID;
173 info->match |
428 owner_mt_print_v0(const void *ip, const struct xt_entry_match *match, int numeric) argument
441 owner_mt6_print_v0(const void *ip, const struct xt_entry_match *match, int numeric) argument
452 owner_mt_print(const void *ip, const struct xt_entry_match *match, int numeric) argument
463 owner_mt_save_v0(const void *ip, const struct xt_entry_match *match) argument
475 owner_mt6_save_v0(const void *ip, const struct xt_entry_match *match) argument
485 owner_mt_save(const void *ip, const struct xt_entry_match *match) argument
[all...]
H A Dlibxt_tos.c2 * Shared library add-on to iptables to add tos match support
44 "tos match options:\n"
81 static void tos_mt_print_v0(const void *ip, const struct xt_entry_match *match, argument
84 const struct ipt_tos_info *info = (const void *)match->data;
86 printf(" tos match ");
93 static void tos_mt_print(const void *ip, const struct xt_entry_match *match, argument
96 const struct xt_tos_match_info *info = (const void *)match->data;
98 printf(" tos match");
106 static void tos_mt_save_v0(const void *ip, const struct xt_entry_match *match) argument
108 const struct ipt_tos_info *info = (const void *)match
115 tos_mt_save(const void *ip, const struct xt_entry_match *match) argument
[all...]
/external/v8/test/mjsunit/
H A Dstring-match.js29 * @fileoverview Test String.prototype.match
34 var matchResult = input.match(regexp);
35 assertEquals(result, matchResult, name + "-match");
37 var match = input.substring(from, to);
45 assertEquals(match, lastMatch, name + "-match-string_g");
47 // Returns array of match and captures.
48 assertEquals(match, matchResult[0], name + "-match-string");
55 assertEquals(match, RegEx
[all...]
/external/webkit/Tools/Scripts/webkitpy/common/checkout/
H A Ddiff_parser.py43 def match(pattern, string): function
47 return _regexp_compile_cache[pattern].match(string)
66 matched = match(pattern, line)
81 if match(r"^diff --git \w/", first_diff_line):
151 file_declaration = match(r"^Index: (?P<FilePath>.+)", line)
159 lines_changed = match(r"^@@ -(?P<OldStartLine>\d+)(,\d+)? \+(?P<NewStartLine>\d+)(,\d+)? @@", line)
/external/chromium/chrome/browser/autocomplete/
H A Dautocomplete_edit.cc103 // Weird edge case to match other browsers: if the edit is empty, revert to
131 AutocompleteMatch match; local
132 GetInfoForCurrentText(&match, NULL);
133 return match;
248 AutocompleteMatch match; local
249 GetInfoForCurrentText(&match, NULL);
250 *url = match.destination_url;
288 // match. This would make the autocompleted text disappear, leaving our user
309 AutocompleteMatch match;
310 GetInfoForCurrentText(&match, NUL
315 AutocompleteMatch match; local
434 AutocompleteMatch match; local
513 const AutocompleteMatch& match = local
605 AutocompleteMatch match; local
901 InfoForCurrentSelection( AutocompleteMatch* match, GURL* alternate_nav_url) const argument
928 GetInfoForCurrentText( AutocompleteMatch* match, GURL* alternate_nav_url) const argument
[all...]
H A Dautocomplete_classifier.cc23 AutocompleteMatch* match,
38 *match = *result.default_match();
20 Classify(const string16& text, const string16& desired_tld, bool allow_exact_keyword_match, AutocompleteMatch* match, GURL* alternate_nav_url) argument
H A Dhistory_contents_provider.h47 // Adds ACMatchClassifications to match from the offset positions in
50 AutocompleteMatch* match) const;
62 void AddBookmarkTitleMatchToResults(const bookmark_utils::TitleMatch& match);
/external/icu4c/common/
H A Ducnv_ext.c108 * or if the match length fits with the current converter state
110 #define UCNV_EXT_TO_U_VERIFY_SISO_MATCH(sisoState, match) \
111 ((sisoState)<0 || ((sisoState)==0) == (match==1))
132 return 0; /* no extension data, no match */
145 return 0; /* no match of a DBCS sequence in SBCS mode */
158 /* match input units until there is a full match or the input is consumed */
172 /* remember longest match so far */
177 /* match pre[] then src[] */
183 /* all input consumed, partial match */
283 int32_t match; local
333 int32_t match; local
371 int32_t match, length; local
752 int32_t match; local
811 int32_t match; local
865 int32_t match; local
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_omnibox_apitest.cc42 AutocompleteMatch match = result.match_at(i); local
43 std::string provider_name = match.provider->name();
45 UTF16ToUTF8(match.contents).c_str(),
118 AutocompleteMatch match = result.match_at(0); local
119 EXPECT_EQ(AutocompleteMatch::SEARCH_WHAT_YOU_TYPED, match.type);
120 EXPECT_FALSE(match.deletable);
122 match = result.match_at(1);
123 ASSERT_TRUE(match.template_url);
124 EXPECT_TRUE(match.template_url->IsExtensionKeyword());
125 EXPECT_EQ(ASCIIToUTF16("keyword"), match
188 AutocompleteMatch match = result.match_at(4); local
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammarSpelunker.java67 protected void match(String expecting) throws IOException { method in class:GrammarSpelunker
68 //System.out.println("match "+expecting+"; is "+token);
108 match("grammar");
115 match("options");
116 match("{");
122 match(";");
126 match("}");
131 match("import");
137 match(";");
/external/chromium/chrome/browser/autofill/
H A Dname_field.cc90 // so we match "initials" here (and just fill in a first name there,
93 string16 match = l10n_util::GetStringUTF16(IDS_AUTOFILL_FIRST_NAME_RE); local
94 if (!ParseText(&q, match, &v->first_name_))
102 match = l10n_util::GetStringUTF16(IDS_AUTOFILL_MIDDLE_INITIAL_RE);
103 if (ParseText(&q, match, &v->middle_name_)) {
106 match = l10n_util::GetStringUTF16(IDS_AUTOFILL_MIDDLE_NAME_RE);
107 ParseText(&q, match, &v->middle_name_);
111 match = l10n_util::GetStringUTF16(IDS_AUTOFILL_LAST_NAME_RE);
112 if (!ParseText(&q, match, &v->last_name_))
/external/chromium/chrome/common/extensions/docs/js/
H A Dbootstrap.js21 (window.location.href.match("^file:")) &&
43 (window.location.href.match("^file:")) &&
/external/icu4c/test/perf/strsrchperf/
H A Dstrsrchperf.h119 int32_t match; local
121 match = usearch_first(srch, status);
122 while (match != USEARCH_DONE) {
123 match = usearch_next(srch, status);
128 int32_t match; local
130 match = usearch_last(srch, status);
131 while (match != USEARCH_DONE) {
132 match = usearch_previous(srch, status);
/external/linux-tools-perf/scripts/python/bin/
H A Dsctop-report7 if expr match "$i" "-" > /dev/null ; then
/external/llvm/include/llvm/Support/
H A DPatternMatch.h19 // if (match(Exp, m_Or(m_And(m_Value(X), m_ConstantInt(C1)),
40 bool match(Val *V, const Pattern &P) { function in namespace:llvm::PatternMatch
41 return const_cast<Pattern&>(P).match(V);
52 bool match(OpTy *V) { function in struct:llvm::PatternMatch::OneUse_match
53 return V->hasOneUse() && SubPattern.match(V);
64 bool match(ITy *V) { return isa<Class>(V); } function in struct:llvm::PatternMatch::class_match
80 bool match(ITy *V) { function in struct:llvm::PatternMatch::match_zero
96 bool match(ITy *V) { function in struct:llvm::PatternMatch::apint_match
126 bool match(ITy *V) { function in struct:llvm::PatternMatch::constantint_match
146 /// cst_pred_ty - This helper class is used to match scala
151 bool match(ITy *V) { function in struct:llvm::PatternMatch::cst_pred_ty
172 bool match(ITy *V) { function in struct:llvm::PatternMatch::api_pred_ty
237 bool match(ITy *V) { function in struct:llvm::PatternMatch::bind_ty
261 bool match(ITy *V) { function in struct:llvm::PatternMatch::specificval_ty
274 bool match(ITy *V) { function in struct:llvm::PatternMatch::bind_const_intval_ty
300 bool match(OpTy *V) { function in struct:llvm::PatternMatch::BinaryOp_match
431 bool match(OpTy *V) { function in struct:llvm::PatternMatch::BinOp2_match
475 bool match(OpTy *V) { function in struct:llvm::PatternMatch::Exact_match
499 bool match(OpTy *V) { function in struct:llvm::PatternMatch::CmpClass_match
538 bool match(OpTy *V) { function in struct:llvm::PatternMatch::SelectClass_match
573 bool match(OpTy *V) { function in struct:llvm::PatternMatch::CastClass_match
627 bool match(OpTy *V) { function in struct:llvm::PatternMatch::not_match
654 bool match(OpTy *V) { function in struct:llvm::PatternMatch::neg_match
680 bool match(OpTy *V) { function in struct:llvm::PatternMatch::fneg_match
712 bool match(OpTy *V) { function in struct:llvm::PatternMatch::brc_match
742 bool match(OpTy *V) { function in struct:llvm::PatternMatch::MaxMin_match
771 static bool match(ICmpInst::Predicate Pred) { function in struct:llvm::PatternMatch::smax_pred_ty
778 static bool match(ICmpInst::Predicate Pred) { function in struct:llvm::PatternMatch::smin_pred_ty
785 static bool match(ICmpInst::Predicate Pred) { function in struct:llvm::PatternMatch::umax_pred_ty
792 static bool match(ICmpInst::Predicate Pred) { function in struct:llvm::PatternMatch::umin_pred_ty
[all...]
/external/markdown/markdown/extensions/
H A Dmeta.py69 m1 = META_RE.match(line)
74 m2 = META_MORE_RE.match(line)
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DChallengeParser.java89 lexer.match(TokenTypes.ID);
102 this.lexer.match(',');
H A DContentDispositionParser.java77 this.lexer.match(TokenTypes.ID);
85 this.lexer.match('\n');
H A DEventParser.java75 this.lexer.match(TokenTypes.ID);
83 this.lexer.match('\n');
H A DMimeVersionParser.java78 this.lexer.match('.');
87 this.lexer.match('\n');
H A DReasonParser.java75 this.lexer.match(TokenTypes.ID);
83 this.lexer.match(',');

Completed in 8114 milliseconds

1234567891011>>