Searched defs:match (Results 251 - 275 of 673) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/chrome/browser/predictors/
H A Dautocomplete_action_predictor_unittest.cc354 AutocompleteMatch match; local
355 match.type = AutocompleteMatchType::HISTORY_URL;
358 match.destination_url = GURL(test_url_db[i].url);
360 predictor()->RecommendAction(test_url_db[i].user_text, match))
361 << "Unexpected action for " << match.destination_url;
368 AutocompleteMatch match; local
369 match.type = AutocompleteMatchType::SEARCH_WHAT_YOU_TYPED;
372 match.destination_url = GURL(test_url_db[i].url);
379 predictor()->RecommendAction(test_url_db[i].user_text, match))
380 << "Unexpected action for " << match
[all...]
/external/chromium_org/chrome/browser/ui/app_list/search/
H A Dapp_result.cc67 const TokenizedStringMatch& match) {
68 const TokenizedStringMatch::Hits& hits = match.hits();
77 set_relevance(match.relevance());
66 UpdateFromMatch(const TokenizedString& title, const TokenizedStringMatch& match) argument
/external/chromium_org/chrome/browser/ui/omnibox/
H A Domnibox_popup_model.cc128 const AutocompleteMatch& match = result.match_at(line); local
133 manually_selected_match_.destination_url = match.destination_url;
134 manually_selected_match_.provider_affinity = match.provider;
136 match.is_history_what_you_typed_match;
159 // Update the edit with the new data for this match.
166 match.GetKeywordUIState(service, &keyword, &is_keyword_hint);
169 edit_model_->OnPopupDataChanged(match.inline_autocompletion, NULL,
172 edit_model_->OnPopupDataChanged(match.fill_into_edit, &current_destination,
207 const AutocompleteMatch& match = result().match_at(selected_line_); local
208 DCHECK(match
224 const AutocompleteMatch& match = result().match_at(selected_line_); local
[all...]
H A Domnibox_view.cc104 void OmniboxView::OpenMatch(const AutocompleteMatch& match, argument
110 if (!match.destination_url.is_valid() || !model_)
113 match, disposition, alternate_nav_url, pasted_text, selected_line);
114 OnMatchOpened(match, controller_->GetWebContents());
218 void OmniboxView::OnMatchOpened(const AutocompleteMatch& match, argument
/external/chromium_org/chrome/browser/ui/webui/extensions/
H A Dextension_icon_source.cc72 ExtensionIconSet::MatchType match; member in struct:extensions::ExtensionIconSource::ExtensionIconRequest
78 ExtensionIconSet::MatchType match,
83 IconsInfo::GetIconURL(extension, icon_size, match) != GURL::EmptyGURL();
90 match,
137 request->extension.get(), request->size, request->match);
266 request->extension.get(), request->size, request->match);
325 ExtensionIconSet::MatchType match) {
331 request->match = match;
76 GetIconURL(const Extension* extension, int icon_size, ExtensionIconSet::MatchType match, bool grayscale, bool* exists) argument
319 SetData( int request_id, const content::URLDataSource::GotDataCallback& callback, const Extension* extension, bool grayscale, int size, ExtensionIconSet::MatchType match) argument
/external/chromium_org/chrome/browser/ui/webui/options/
H A Doptions_ui.cc391 const AutocompleteMatch& match = result.match_at(i); local
392 AutocompleteMatchType::Type type = match.type;
402 entry->SetString("title", match.description);
403 entry->SetString("displayURL", match.contents);
404 entry->SetString("url", match.destination_url.spec());
/external/chromium_org/components/bookmarks/browser/
H A Dbookmark_index.cc65 // Used when finding the set of bookmarks that match a query. Each match
73 // when we match only one term, and is filled in when we get more than one
153 // We use a QueryParser to fill in match positions for us. It's not the most
208 // ["thi"] will match the bookmark titled [Thinking], but since
209 // ["thi"] is quoted we don't want to do a prefix match.
229 BookmarkMatch match; local
233 // TODO(mpearson): revise match positions appropriately.
234 match.title_match_positions.swap(title_matches);
244 match
262 Match match; local
274 Match match; local
297 Match* match = &((*matches)[i]); local
316 const Match& match = current_matches[i]; local
[all...]
/external/chromium_org/components/omnibox/
H A Dautocomplete_result.cc33 // Returns the relevance score of |match| demoted appropriately by
35 int GetDemotedRelevance(const AutocompleteMatch& match);
52 const AutocompleteMatch& match) {
54 demotions_.find(match.type);
56 match.relevance : (match.relevance * demotion_it->second);
61 // Compute demoted relevance scores for each match.
100 // Returns true if |match| is allowed to the default match taking into account
104 const AutocompleteMatch& match,
51 GetDemotedRelevance( const AutocompleteMatch& match) argument
103 AllowedToBeDefaultMatchAccountingForDisableInliningExperiment( const AutocompleteMatch& match, const bool has_legal_default_match_without_completion) argument
371 ComputeAlternateNavUrl( const AutocompleteInput& input, const AutocompleteMatch& match) argument
431 HasMatchByDestination(const AutocompleteMatch& match, const ACMatches& matches) argument
459 AutocompleteMatch match = *i; local
[all...]
H A Dautocomplete_result_unittest.cc54 AutocompleteMatch match; local
55 match.destination_url = GURL(data[i].destination_url);
56 match.relevance =
58 match.allowed_to_be_default_match = true;
59 match.type = data[i].type;
60 matches->push_back(match);
101 // Configures |match| from |data|.
103 AutocompleteMatch* match);
133 AutocompleteMatch* match) {
134 match
131 PopulateAutocompleteMatch( const TestData& data, AutocompleteMatch* match) argument
149 AutocompleteMatch match; local
163 const AutocompleteMatch& match = *(result.begin() + i); local
210 AutocompleteMatch match; local
[all...]
/external/chromium_org/components/password_manager/core/browser/
H A Dpassword_form_manager_unittest.cc180 PasswordForm* match = new PasswordForm(saved_match_);
182 p->best_matches_[match->username_value] = match;
183 p->preferred_match_ = match;
212 PasswordForm* match = new PasswordForm(saved_match_); local
213 match->blacklisted_by_user = blacklisted;
214 return match;
242 // are going to match the stored entry in the db.
371 // are going to match the stored entry in the db. (This verifies correct
445 // Make sure we don't match
[all...]
/external/chromium_org/components/policy/core/browser/
H A Dbrowser_policy_connector.cc48 // Regexes that match many of the larger public email providers as we know
73 // just return that the pattern doesn't match the domain. This is safe
90 UBool match = matcher.matches(status); local
92 return !!match; // !! == convert from UBool to bool.
/external/chromium_org/components/signin/core/browser/
H A Dsignin_manager.cc320 UBool match = matcher.matches(status); local
322 return !!match; // !! == convert from UBool to bool.
/external/chromium_org/components/translate/core/language_detection/
H A Dlanguage_detection_util.cc364 bool match = page_code != 0 && local
367 translate::ReportSimilarLanguageMatch(match);
368 return match;
/external/chromium_org/courgette/
H A Ddisassembler_elf_32_arm.cc309 // so we check, and just don't do it if we don't match up.
315 bool match = true; local
328 match = false;
345 while (match && (reloc_iter != abs32_locations_.end())) {
348 match = false;
355 if (match) {
/external/chromium_org/net/cert/
H A Dx509_cert_types_mac.cc168 bool match(const std::string& str, const std::string& against) { function in namespace:net::__anon9105
174 bool match(const std::vector<std::string>& rdn1, function in namespace:net::__anon9105
176 // "Two relative distinguished names RDN1 and RDN2 match if they have the
184 if (match(rdn1[i1], rdn2[i2]))
282 return match(common_name, against.common_name) &&
283 match(locality_name, against.locality_name) &&
284 match(state_or_province_name, against.state_or_province_name) &&
285 match(country_name, against.country_name) &&
286 match(street_addresses, against.street_addresses) &&
287 match(organization_name
[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/Source/core/css/
H A DElementRuleCollector.cpp268 SelectorChecker::Match match = selectorChecker.match(context, DOMSiblingTraversalStrategy(), result); local
269 if (match != SelectorChecker::SelectorMatches)
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DNetworkRequest.js606 var match = firstLine.match(/(HTTP\/\d+\.\d+)$/); variable
607 return match ? match[1] : "HTTP/0.9";
725 if (!requestContentType || !requestContentType.match(/^application\/x-www-form-urlencoded\s*(;.*)?$/i))
740 var match = firstLine.match(/^(HTTP\/\d+\.\d+)/); variable
741 return match ? match[1] : "HTTP/0.9";
860 return !!this.url.match(/
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DCache.cpp125 ScriptPromise Cache::match(ScriptState* scriptState, Request* originalRequest, const QueryParams& queryParams) function in class:blink::Cache
136 ScriptPromise Cache::match(ScriptState* scriptState, const String& requestString, const QueryParams& queryParams) function in class:blink::Cache
/external/chromium_org/third_party/boringssl/src/crypto/x509v3/
H A Dv3nametest.c91 "set emailAddress: email: [postmaster@example.com] does not match [Postmaster@example.com]",
92 "set emailAddress: email: [postmaster@EXAMPLE.COM] does not match [Postmaster@example.com]",
93 "set emailAddress: email: [Postmaster@example.com] does not match [postmaster@example.com]",
94 "set emailAddress: email: [Postmaster@example.com] does not match [postmaster@EXAMPLE.COM]",
105 "set rfc822Name: email: [postmaster@example.com] does not match [Postmaster@example.com]",
106 "set rfc822Name: email: [Postmaster@example.com] does not match [postmaster@example.com]",
107 "set rfc822Name: email: [Postmaster@example.com] does not match [postmaster@EXAMPLE.COM]",
108 "set rfc822Name: email: [postmaster@EXAMPLE.COM] does not match [Postmaster@example.com]",
309 const char *nameincert, int match, const char *name)
312 if (match <
308 check_message(const struct set_name_fn *fn, const char *op, const char *nameincert, int match, const char *name) argument
332 int match, ret; local
[all...]
/external/chromium_org/third_party/codesighs/
H A Dnm2tsv.c285 int match = 0; local
310 match = 0;
317 match = __LINE__;
321 match = __LINE__;
324 if(match)
348 if(0 == match)
/external/chromium_org/third_party/icu/source/i18n/
H A Dcsrmbcs.cpp201 // No match if there are too many characters that don't fit the encoding scheme.
271 UBool CharsetRecog_sjis::match(InputText* det, CharsetMatch *results) const { function in class:CharsetRecog_sjis
371 UBool CharsetRecog_euc_jp::match(InputText *det, CharsetMatch *results) const function in class:CharsetRecog_euc_jp
393 UBool CharsetRecog_euc_kr::match(InputText *det, CharsetMatch *results) const function in class:CharsetRecog_euc_kr
445 UBool CharsetRecog_big5::match(InputText *det, CharsetMatch *results) const function in class:CharsetRecog_big5
521 UBool CharsetRecog_gb_18030::match(InputText *det, CharsetMatch *results) const function in class:CharsetRecog_gb_18030
H A Drbt_rule.cpp217 * set, or otherwise can match multiple keys, the index value is -1.
222 // match any key.
237 * then it will match any key.
241 // If there is neither then we match any key; return true.
330 * Attempt a match and replacement at the given position. Return
331 * the degree of match between this rule and the given text. The
332 * degree of match may be mismatch, a partial match, or a full
333 * match. A mismatch means at least one character of the text
334 * does not match th
387 UMatchDegree match; local
[all...]
H A Dunesctrn.cpp180 // match one of the specs. Exit the outer loop if a
181 // partial match is detected and isIncremental is true.
194 UBool match = TRUE; local
200 // a partial match, so we return if in
206 match = FALSE;
212 match = FALSE;
217 if (match) {
222 // Check for partial match in incremental mode.
240 match = (digitCount >= minDigits);
242 if (match) {
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dfldset.cpp275 UBool match = TRUE; local
285 match = FALSE;
287 //fprintf(stderr, "match failed: %s#%d=%d != %d\n",udbg_enumName(UDBG_UCalendarDateFields,i),i,cal->get((UCalendarDateFields)i,status), get((UCalendarDateFields)i));;
291 return match;

Completed in 3466 milliseconds

<<11121314151617181920>>