Searched defs:match (Results 101 - 125 of 673) sorted by relevance

1234567891011>>

/external/openfst/src/include/fst/
H A Darcfilter.h69 // 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/skia/tests/
H A DMetaDataTest.cpp88 int match = 0; local
93 match += 1;
98 REPORTER_ASSERT(reporter, match == 1);
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DLexer.pm46 # Return a token from this source; i.e., match a token on the char
159 sub match { subroutine
262 $msg = 'required (...)+ loop did not match anything at character '
299 # Lexers can normally match any char in it's vocabulary after matching
/external/apache-http/src/org/apache/http/auth/
H A DAuthScope.java196 * Tests if the authentication scopes match.
198 * @return the match factor. Negative value signifies no match.
199 * Non-negative signifies a match. The greater the returned value
200 * the closer the match.
202 public int match(final AuthScope that) { method in class:AuthScope
/external/apache-http/src/org/apache/http/impl/cookie/
H A DBestMatchSpec.java152 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:BestMatchSpec
160 return getStrict().match(cookie, origin);
162 return getCompat().match(cookie, origin);
H A DRFC2965Spec.java171 public boolean match(final Cookie cookie, CookieOrigin origin) { method in class:RFC2965Spec
179 return super.match(cookie, origin);
/external/chromium_org/chrome/browser/android/omnibox/
H A Domnibox_prerender.cc136 void OmniboxPrerender::DoPrerender(const AutocompleteMatch& match, argument
148 if (prerenderer && prerenderer->IsAllowed(match, web_contents)) {
156 match.destination_url,
/external/chromium_org/chrome/browser/autocomplete/
H A Dautocomplete_browsertest.cc44 AutocompleteMatch match = result.match_at(i); local
46 base::UTF16ToUTF8(match.contents).c_str(),
47 match.provider->GetName()));
152 AutocompleteMatch match = result.match_at(0); local
153 EXPECT_EQ(AutocompleteMatchType::SEARCH_WHAT_YOU_TYPED, match.type);
154 EXPECT_FALSE(match.deletable);
H A Dbuiltin_provider.cc117 base::string16 match = base::ASCIIToUTF16(url::kAboutBlankURL); local
122 AddMatch(match, match.substr(corrected_length), styles);
149 // allowing completions is okay, give the match a high enough score to
161 AutocompleteMatch match(this, kRelevance, false,
163 match.fill_into_edit = match_string;
164 match.inline_autocompletion = inline_completion;
165 match.destination_url = GURL(match_string);
166 match.contents = match_string;
167 match
[all...]
H A Dchrome_autocomplete_provider_client.cc59 AutocompleteMatch* match,
65 page_classification, match, alternate_nav_url);
54 Classify( const base::string16& text, bool prefer_keyword, bool allow_exact_keyword_match, metrics::OmniboxEventProto::PageClassification page_classification, AutocompleteMatch* match, GURL* alternate_nav_url) argument
H A Dhistory_provider.cc22 void HistoryProvider::DeleteMatch(const AutocompleteMatch& match) { argument
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) { argument
60 if (i->destination_url == match.destination_url && i->type == match.type) {
/external/chromium_org/chrome/browser/ui/omnibox/
H A Domnibox_controller.cc34 // instructions from the suggest server. If such a match ranks sufficiently
39 // prefetch suggestion even if it is not the default match. Otherwise we only
42 // verbatim match) or the second entry in the dropdown (which can happen for
43 // non-default matches when a top verbatim match is shown); for other matches,
53 // If the default match should be prefetched, do that.
60 // Otherwise, if the top match is a verbatim match and the very next match
99 // The default match has changed, we need to let the OmniboxEditModel know
101 const AutocompleteResult::const_iterator match(resul
150 DoPreconnect(const AutocompleteMatch& match) argument
[all...]
H A Domnibox_current_page_delegate_impl.cc69 const AutocompleteMatch& match,
75 size_t prefix_length = match.keyword.length() + 1;
79 base::UTF16ToUTF8(match.fill_into_edit.substr(prefix_length)),
102 const AutocompleteMatch& match) {
108 if (prerenderer && prerenderer->IsAllowed(match, web_contents)) {
117 match.destination_url,
67 ProcessExtensionKeyword( TemplateURL* template_url, const AutocompleteMatch& match, WindowOpenDisposition disposition) argument
101 DoPrerender( const AutocompleteMatch& match) argument
/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/omnibox/
H A Dautocomplete_provider.cc81 void AutocompleteProvider::DeleteMatch(const AutocompleteMatch& match) { argument
135 // Make the number of trailing slashes on the output exactly match the input.
138 // beginning with "a" will match.
/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/third_party/WebKit/Tools/Scripts/
H A Dsampstat74 match = re.search(decimalNumberPattern, line) variable
75 if match:
76 results.append(float(match.group(0)))
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dfiles.py90 """Add another directory to the list we match for."""
93 def match(self, fpath): member in class:TreeMatcher
114 def match(self, fpath): member in class:FnmatchMatcher
115 """Does `fpath` match one of our filename patterns?"""
153 string. When mapping paths, if a path starts with a match against
154 `pattern`, then that match is replaced with `result`. This models
159 match an entire tree, and not just its root.
170 # match the whole string, which we don't want.
174 # We want */a/b.py to match on Windows to, so change slash to match
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dcsrucode.cpp32 UBool CharsetRecog_UTF_16_BE::match(InputText* textIn, CharsetMatch *results) const function in class:CharsetRecog_UTF_16_BE
57 UBool CharsetRecog_UTF_16_LE::match(InputText* textIn, CharsetMatch *results) const function in class:CharsetRecog_UTF_16_LE
77 UBool CharsetRecog_UTF_32::match(InputText* textIn, CharsetMatch *results) const function in class:CharsetRecog_UTF_32
/external/chromium_org/third_party/icu/source/test/perf/strsrchperf/
H A Dstrsrchperf.h62 int32_t match; local
64 match = usearch_first(srch, status);
65 while (match != USEARCH_DONE) {
66 match = usearch_next(srch, status);
71 int32_t match; local
73 match = usearch_last(srch, status);
74 while (match != USEARCH_DONE) {
75 match = usearch_previous(srch, status);
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dir_function.cpp34 * \brief Check if two parameter lists match.
46 /* This is set to true if there is an inexact match requiring an implicit
55 * do not match.
106 * match.
129 ir_function_signature *match = NULL; local
134 * "If an exact match is found, the other signatures are ignored, and
135 * the exact match is used. Otherwise, if no exact match is found, then
137 * be applied to the calling arguments if this can make their types match
140 * call such that the call can be made to match multipl
[all...]
H A Ds_expression.cpp177 s_pattern::match(s_expression *expr) function in class:s_pattern
209 if (expr == NULL || !pattern[i].match(expr))
/external/chromium_org/third_party/skia/src/animator/
H A DSkGetCondensedInfo.cpp38 unsigned char match = (unsigned char) type; local
43 if (gTypeIDs[mid] < match)
82 const char* match = *matchPtr; local
84 int index = _searchByName(&info->fName, count, strings, match);
/external/chromium_org/third_party/skia/src/pathops/
H A DSkDQuadImplicit.cpp92 * OPTIMIZATION -- since comparison short-circuits on no match,
96 bool SkDQuadImplicit::match(const SkDQuadImplicit& p2) const { function in class:SkDQuadImplicit
116 return i1.match(i2);
/external/chromium_org/tools/gn/
H A Dbuilder_unittest.cc39 // Returns true if two loads have been requested and they match the given
47 bool match = ( local
51 return match;

Completed in 440 milliseconds

1234567891011>>