HomeSort by relevance Sort by last modified time
    Searched defs:matches_ (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/components/query_parser/
snippet.h 58 const MatchPositions& matches() const { return matches_; }
68 MatchPositions matches_; member in class:query_parser::Snippet
  /external/chromium_org/components/omnibox/
autocomplete_provider.h 192 const ACMatches& matches() const { return matches_; }
239 ACMatches matches_; member in class:AutocompleteProvider
autocomplete_result.h 179 // Populates |provider_to_matches| from |matches_|.
189 ACMatches matches_; member in class:AutocompleteResult
  /external/chromium_org/components/url_matcher/
substring_set_matcher.h 104 const Matches& matches() const { return matches_; }
114 Matches matches_; member in class:url_matcher::SubstringSetMatcher::AhoCorasickNode
  /external/chromium_org/extensions/common/features/
simple_feature.h 139 URLPatternSet matches_; member in class:extensions::SimpleFeature
  /external/chromium_org/chrome/browser/autocomplete/
history_quick_provider_unittest.cc 122 std::set<std::string> LeftOvers() const { return matches_; }
125 std::set<std::string> matches_; member in class:HistoryQuickProviderTest::SetShouldContain
259 matches_.insert(iter->destination_url.spec());
264 EXPECT_EQ(1U, matches_.erase(expected))
    [all...]
shortcuts_provider_unittest.cc 221 const ACMatchClassifications matches_; member in class:ClassifyTest
227 matches_(matches) {
235 ShortcutsProvider::CreateWordMapForString(find_text), text_, matches_);
257 return matches_;
261 std::set<ExpectedURLAndAllowedToBeDefault> matches_; member in class:ShortcutsProviderTest::SetShouldContain
344 matches_.insert(ExpectedURLAndAllowedToBeDefault(
350 EXPECT_EQ(1U, matches_.erase(expected));
    [all...]
history_url_provider_unittest.cc 217 ACMatches matches_; member in class:HistoryURLProviderTest
302 matches_ = autocomplete_->matches();
306 for (ACMatches::iterator i = matches_.begin(); i != matches_.end(); ++i)
309 input.current_page_classification(), false, &matches_);
310 std::sort(matches_.begin(), matches_.end(),
313 ASSERT_EQ(num_results, matches_.size()) << "Input text: " << text
316 EXPECT_EQ(expected_urls[i].url, matches_[i].destination_url.spec());
318 matches_[i].allowed_to_be_default_match)
    [all...]

Completed in 1037 milliseconds