/external/chromium/chrome/browser/autocomplete/ |
history_quick_provider.cc | 135 (prevent_inline_autocomplete || history_match.url_matches.size() > 1 || 136 history_match.url_matches[0].offset > 0)) { 142 history_match.url_matches.empty() ? 163 InMemoryURLIndex::OffsetsFromTermMatches(history_match.url_matches); 168 InMemoryURLIndex::ReplaceOffsetsInTermMatches(history_match.url_matches,
|
history_url_provider.cc | 200 URLRowVector url_matches; local 214 kMaxMatches * 2, (backend == NULL), &url_matches); 215 for (URLRowVector::const_iterator j(url_matches.begin()); 216 j != url_matches.end(); ++j) { [all...] |
/external/chromium_org/chrome/browser/history/ |
scored_history_match.h | 63 const TermMatches& url_matches() const { return url_matches_; } function in class:history::ScoredHistoryMatch
|
/external/chromium_org/chrome/browser/extensions/api/declarative/ |
declarative_rule_unittest.cc | 105 const std::set<URLMatcherConditionSet::ID>& url_matches; member in struct:extensions::FulfillableCondition::MatchData 128 !ContainsKey(match_data.url_matches, condition_set_id)) 177 std::set<URLMatcherConditionSet::ID> url_matches; local 178 FulfillableCondition::MatchData match_data = { 0, url_matches }; 180 << "Testing an ID that's not in url_matches forwards to the Condition, " 190 url_matches.insert(1); 198 url_matches.insert(2);
|
/external/chromium_org/chrome/browser/autocomplete/ |
history_quick_provider.cc | 257 history_match.url_matches().empty() ? 266 OffsetsFromTermMatches(history_match.url_matches()); 274 ReplaceOffsetsInTermMatches(history_match.url_matches(), offsets);
|
history_url_provider.cc | 507 history::URLRows url_matches; local 527 &url_matches); local 528 for (history::URLRows::const_iterator j(url_matches.begin()); 529 j != url_matches.end(); ++j) { [all...] |
/external/chromium_org/chrome/browser/extensions/api/declarative_webrequest/ |
webrequest_rules_registry.h | 166 // This is a helper function to GetMatches. Rules triggered by |url_matches| 169 void AddTriggeredRules(const URLMatches& url_matches,
|
webrequest_rules_registry.cc | 398 const URLMatches& url_matches, 401 for (URLMatches::const_iterator url_match = url_matches.begin(); 402 url_match != url_matches.end(); ++url_match) {
|
/external/chromium/chrome/browser/history/ |
in_memory_url_index.cc | 728 match.url_matches.insert(match.url_matches.end(), url_term_matches.begin(), 736 match.url_matches = SortAndDeoverlap(match.url_matches); 742 int url_score = ScoreComponentForMatches(match.url_matches, url.size()) * 743 match.url_matches.size() / terms.size(); [all...] |
in_memory_url_index.h | 71 TermMatches url_matches; // Term matches within the URL. member in struct:history::ScoredHistoryMatch
|
/external/chromium_org/chrome/test/functional/ |
omnibox.py | 293 url_matches = test_utils.GetOmniboxMatchesFor(self, url, windex=windex) 294 self._VerifyHasBookmarkResult(url_matches)
|