Searched refs:match (Results 26 - 50 of 2033) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/
H A Ddiff.rb39 # an empty match at the end forces the loop below to handle the unmatched tails
43 matches.each_with_index do |match, i|
44 match_starts_at_current_position_in_old = (position_in_old == match.start_in_old)
45 match_starts_at_current_position_in_new = (position_in_new == match.start_in_new)
63 position_in_old, match.start_in_old,
64 position_in_new, match.start_in_new)
67 if match.size != 0
69 match.start_in_old, match.end_in_old,
70 match
[all...]
/external/chromium_org/components/omnibox/
H A Dbase_search_provider.cc97 bool BaseSearchProvider::ShouldPrefetch(const AutocompleteMatch& match) { argument
98 return match.GetAdditionalInfo(kShouldPrefetchKey) == kTrue;
109 // that if this match is from a keyword provider, then the user is in keyword
111 // this match to look as if it was received/created synchronously.
122 void BaseSearchProvider::DeleteMatch(const AutocompleteMatch& match) { argument
123 DCHECK(match.deletable);
124 if (!match.GetAdditionalInfo(BaseSearchProvider::kDeletionUrlKey).empty()) {
126 match.GetAdditionalInfo(BaseSearchProvider::kDeletionUrlKey),
133 match.GetTemplateURL(template_url_service_, false);
138 match
174 SetDeletionURL(const std::string& deletion_url, AutocompleteMatch* match) argument
356 AutocompleteMatch match = CreateSearchSuggestion( local
458 DeleteMatchFromMatches( const AutocompleteMatch& match) argument
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dchrome_info_map_unittest.cc78 const Extension* match = info_map->extensions().GetExtensionOrAppByURL( local
80 EXPECT_TRUE(match &&
81 match->permissions_data()->HasAPIPermission(
83 match = info_map->extensions().GetExtensionOrAppByURL(app_url);
84 EXPECT_TRUE(match &&
85 match->permissions_data()->HasAPIPermission(
88 match &&
89 match->permissions_data()->HasAPIPermission(APIPermission::kTab));
92 match = info_map->extensions().GetExtensionOrAppByURL(
94 EXPECT_TRUE(match
[all...]
/external/chromium_org/build/android/
H A Dsymbolize.py36 match = re.search(TRACE_LINE, data)
37 if not match:
41 frame = match.group('frame')
42 lib = match.group('lib')
43 addr = match.group('addr')
61 post = match.end('addr')
66 pre = match.start('frame')
67 post = match.end('addr')
/external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/bin/build/
H A Dsource.py42 .*? # Non greedy match of any characters (including newlines)
83 match = _PROVIDE_REGEX.match(line)
84 if match:
85 self.provides.add(match.group(1))
86 match = _REQUIRES_REGEX.match(line)
87 if match:
88 self.requires.add(match.group(1))
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Dphonenumbermatch.cc17 // Implementation of a mutable match of a phone number within a piece of
78 bool PhoneNumberMatch::Equals(const PhoneNumberMatch& match) const {
79 return ExactlySameAs(match.number_, number_) &&
80 match.raw_string_.compare(raw_string_) == 0 &&
81 match.start_ == start_;
84 void PhoneNumberMatch::CopyFrom(const PhoneNumberMatch& match) { argument
85 raw_string_ = match.raw_string();
86 start_ = match.start();
87 number_ = match.number();
/external/chromium_org/tools/gyp/test/msvs/buildevents/
H A Dgyptest-ninja-warnings.py22 match=TestCmd.match_re_dotall) variable
27 match=TestCmd.match_re_dotall) variable
/external/chromium_org/v8/test/mjsunit/
H A Dregexp-standalones.js36 var result = string.match(pattern);
42 result = string.match(pattern);
49 result = string.match(pattern);
54 result = string.match(pattern);
61 result = string.match(pattern);
66 result = string.match(pattern);
71 result = string.match(pattern);
76 result = string.match(pattern);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-crbug-142087.js36 assertArrayEquals(expected_match, string.match(/(_)|(_|)/g, ""));
38 '***************************************'.match(/((\\)|(\*)|(\$))/g, ".");
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/perl/bin/
H A Dfailed-syscalls-report5 if ! expr match "$1" "-" > /dev/null ; then
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/bin/
H A Dsyscall-counts-report5 if ! expr match "$1" "-" > /dev/null ; then
/external/lohit-fonts/lohit-odia-ttf/
H A D66-lohit-odia.conf4 <match>
14 </match>
16 <match target="font">
23 </match>
/external/chromium_org/tools/gyp/test/errors/
H A Dgyptest-errors.py26 match=TestCmd.match_re) variable
30 match=TestCmd.match_re_dotall) variable
35 match=TestCmd.match_re) variable
40 match=TestCmd.match_re_dotall) variable
58 match=TestCmd.match_re) variable
/external/llvm/unittests/Support/
H A DRegexTest.cpp23 EXPECT_TRUE(r1.match("916"));
24 EXPECT_TRUE(r1.match("9"));
25 EXPECT_FALSE(r1.match("9a"));
29 EXPECT_TRUE(r2.match("aa216b", &Matches));
34 EXPECT_TRUE(r3.match("9a:513b", &Matches));
40 EXPECT_TRUE(r3.match("9:513b", &Matches));
49 EXPECT_FALSE(r4.match("abb"));
50 EXPECT_TRUE(r4.match(String, &Matches));
58 EXPECT_FALSE(r5.match(String));
59 EXPECT_FALSE(r5.match("X
[all...]
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DDateParser.java62 lexer.match(',');
63 lexer.match(' ');
65 lexer.match(' ');
67 lexer.match(' ');
71 this.lexer.match('\n');
H A DAcceptParser.java78 this.lexer.match(TokenTypes.ID);
81 this.lexer.match('/');
82 this.lexer.match(TokenTypes.ID);
91 this.lexer.match(',');
96 this.lexer.match(TokenTypes.ID);
99 this.lexer.match('/');
100 this.lexer.match(TokenTypes.ID);
H A DInReplyToParser.java78 this.lexer.match(TokenTypes.ID);
81 this.lexer.match('@');
82 this.lexer.match(TokenTypes.ID);
95 this.lexer.match(',');
100 this.lexer.match(TokenTypes.ID);
103 this.lexer.match('@');
104 this.lexer.match(TokenTypes.ID);
/external/robolectric/
H A Dupdate-downloads.rb19 match = /robolectric-?([0-9]\.[0-9](\.[0-9])?)?(-all)?(-src)?\.jar/.match(f)
20 version = match[1] if match
22 prerelease = /\.rc/.match(f)
/external/chromium_org/chrome/browser/autocomplete/
H A Dbookmark_provider.cc96 // will match against 'define' but not against 'indefinite'.
99 // exact match. 'def' will match against 'define' but 'de' will not match.
102 // - Terms enclosed in quotes comprises a phrase that must match exactly.
104 // exact order to match.
118 // match is discarded.
119 AutocompleteMatch match(BookmarkMatchToACMatch(input, fixed_up_input, *i));
120 if (match.relevance > 0)
121 matches_.push_back(match);
148 operator ()(const query_parser::Snippet::MatchPosition& match) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLPreloadScanner.cpp49 static bool match(const StringImpl* impl, const QualifiedName& qName) function in namespace:blink
54 static bool match(const AtomicString& name, const QualifiedName& qName) function in namespace:blink
60 static bool match(const String& name, const QualifiedName& qName) function in namespace:blink
85 if (match(tagImpl, imgTag))
87 if (match(tagImpl, inputTag))
89 if (match(tagImpl, linkTag))
91 if (match(tagImpl, scriptTag))
118 if (match(m_tagImpl, imgTag)
119 || match(m_tagImpl, sourceTag)) {
124 if ( !match(m_tagImp
[all...]
/external/chromium_org/third_party/icu/source/samples/csdet/
H A Dcsdet.c29 int32_t inputLength, match, matchCount = 0; local
56 for(match = 0; match < matchCount; match += 1) {
57 const char *name = ucsdet_getName(csm[match], &status);
58 const char *lang = ucsdet_getLanguage(csm[match], &status);
59 int32_t confidence = ucsdet_getConfidence(csm[match], &status);
/external/chromium_org/v8/tools/
H A Dcheck-name-clashes.py30 def __init__(self, match):
31 self.name = match.group(1)
35 def __init__(self, match):
36 self.name = match.group(1)
37 self.args = [s.strip() for s in match.group(2).split(",")]
40 self.AddLine(match.group(3))
86 match = MACRO.match(line)
87 if match:
88 found_macro = Macro(match)
[all...]
/external/icu/icu4c/source/samples/csdet/
H A Dcsdet.c29 int32_t inputLength, match, matchCount = 0; local
56 for(match = 0; match < matchCount; match += 1) {
57 const char *name = ucsdet_getName(csm[match], &status);
58 const char *lang = ucsdet_getLanguage(csm[match], &status);
59 int32_t confidence = ucsdet_getConfidence(csm[match], &status);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/host/
H A DPlatform.js79 var match = userAgent.match(/Windows NT (\d+)\.(?:\d+)/);
80 if (match && match[1] >= 6)
84 var match = userAgent.match(/Mac OS X\s*(?:(\d+)_(\d+))?/);
85 if (!match || match[1] != 10)
87 switch (Number(match[2])) {
/external/chromium_org/third_party/mesa/src/src/glx/
H A Dclientinfo.c88 char *match = strstr(haystack, "GLX_ARB_create_context"); local
90 if (match == NULL)
93 match += ext_length;
95 switch (match[0]) {
102 if (strncmp(match, "_profile", prof_length) == 0
103 && (match[prof_length] == '\0'
104 || match[prof_length] == ' ')) {
106 match += prof_length;
111 haystack = match;

Completed in 9046 milliseconds

1234567891011>>