HomeSort by relevance Sort by last modified time
    Searched defs:matches_ (Results 1 - 4 of 4) 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/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 38 milliseconds