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

  /external/chromium/chrome/browser/history/
snippet.h 57 const MatchPositions& matches() const { return matches_; }
67 MatchPositions matches_; member in class:Snippet
  /external/chromium_org/chrome/browser/history/
snippet.h 56 const MatchPositions& matches() const { return matches_; }
66 MatchPositions matches_; member in class:Snippet
  /external/chromium_org/chrome/browser/autocomplete/
autocomplete_result.h 173 // Populates |provider_to_matches| from |matches_|.
183 ACMatches matches_; member in class:AutocompleteResult
autocomplete_provider.h 196 // NOTE: Remember to call OnProviderUpdate() if matches_ is updated.
218 const ACMatches& matches() const { return matches_; }
248 // Updates the starred state of each of the matches in matches_ from the
257 ACMatches matches_; member in class:AutocompleteProvider
history_quick_provider_unittest.cc 113 std::set<std::string> LeftOvers() const { return matches_; }
116 std::set<std::string> matches_; member in class:HistoryQuickProviderTest::SetShouldContain
232 matches_.insert(iter->destination_url.spec());
237 EXPECT_EQ(1U, matches_.erase(expected))
shortcuts_provider_unittest.cc 140 std::set<std::string> Leftovers() const { return matches_; }
143 std::set<std::string> matches_; member in class:ShortcutsProviderTest::SetShouldContain
216 matches_.insert(iter->destination_url.spec());
221 EXPECT_EQ(1U, matches_.erase(expected));
325 const ACMatchClassifications matches_; member in class:ClassifyTest
330 matches_(matches) {
338 ShortcutsProvider::CreateWordMapForString(find_text), text_, matches_);
history_url_provider_unittest.cc 192 ACMatches matches_; member in class:HistoryURLProviderTest
277 matches_ = autocomplete_->matches();
279 for (ACMatches::iterator i = matches_.begin(); i != matches_.end(); ++i)
281 std::sort(matches_.begin(), matches_.end(),
283 matches_.erase(std::unique(matches_.begin(), matches_.end(),
285 matches_.end())
    [all...]
  /external/chromium_org/extensions/common/matcher/
substring_set_matcher.h 103 const Matches& matches() const { return matches_; }
113 Matches matches_; member in class:extensions::SubstringSetMatcher::AhoCorasickNode
  /external/chromium_org/chrome/common/extensions/features/
simple_feature.h 108 URLPatternSet matches_; member in class:extensions::SimpleFeature
  /external/chromium/chrome/browser/autocomplete/
history_quick_provider_unittest.cc 164 matches_.insert(iter->destination_url.spec());
168 EXPECT_EQ(1U, matches_.erase(expected));
171 std::set<std::string> LeftOvers() const { return matches_; }
174 std::set<std::string> matches_; member in class:SetShouldContain
history_url_provider_unittest.cc 135 ACMatches matches_; member in class:HistoryURLProviderTest
198 matches_ = autocomplete_->matches();
199 ASSERT_EQ(num_results, matches_.size()) << "Input text: " << text
202 EXPECT_EQ(expected_urls[i], matches_[i].destination_url.spec());
213 matches_ = autocomplete_->matches();
214 ASSERT_GE(matches_.size(), 1U) << "Input text: " << text;
215 EXPECT_EQ(expected_offset, matches_[0].inline_autocomplete_offset);
248 EXPECT_EQ(ASCIIToUTF16("Google News"), matches_.front().description);
418 EXPECT_EQ(input_1.length(), matches_.front().inline_autocomplete_offset);
430 EXPECT_EQ(input_2.length(), matches_.front().inline_autocomplete_offset)
    [all...]
autocomplete.h 403 const ACMatches& matches() const { return matches_; }
415 // NOTE: Remember to call OnProviderUpdate() if matches_ is updated.
432 // Updates the starred state of each of the matches in matches_ from the
448 ACMatches matches_; member in class:AutocompleteProvider
561 // Populates |provider_to_matches| from |matches_|.
574 ACMatches matches_; member in class:AutocompleteResult
    [all...]

Completed in 673 milliseconds