Home
last modified time | relevance | path

Searched refs:match_positions (Results 1 – 11 of 11) sorted by relevance

/external/chromium/chrome/browser/history/
Dsnippet.cc28 Snippet::MatchPositions* match_positions) { in CoalescePositionsFrom() argument
29 DCHECK(offset < match_positions->size()); in CoalescePositionsFrom()
30 Snippet::MatchPosition& pair((*match_positions)[offset]); in CoalescePositionsFrom()
32 while (offset < match_positions->size() && in CoalescePositionsFrom()
33 pair.second >= (*match_positions)[offset].first) { in CoalescePositionsFrom()
34 pair.second = std::max(pair.second, (*match_positions)[offset].second); in CoalescePositionsFrom()
35 match_positions->erase(match_positions->begin() + offset); in CoalescePositionsFrom()
44 Snippet::MatchPositions* match_positions) { in AddMatch() argument
46 DCHECK(match_positions); in AddMatch()
48 if (match_positions->empty()) { in AddMatch()
[all …]
Dquery_parser_unittest.cc119 Snippet::MatchPositions match_positions; in TEST_F() local
123 &match_positions)); in TEST_F()
126 ASSERT_TRUE(match_positions.size() >= 1); in TEST_F()
127 EXPECT_EQ(data[i].m1_start, match_positions[0].first); in TEST_F()
128 EXPECT_EQ(data[i].m1_end, match_positions[0].second); in TEST_F()
132 ASSERT_TRUE(match_positions.size() == 1 + offset); in TEST_F()
133 EXPECT_EQ(data[i].m2_start, match_positions[offset].first); in TEST_F()
134 EXPECT_EQ(data[i].m2_end, match_positions[offset].second); in TEST_F()
Dsnippet_unittest.cc104 Snippet::MatchPositions match_positions; in BuildSnippet() local
105 match_positions.clear(); in BuildSnippet()
111 match_positions.push_back(std::make_pair(ofs, ofs + qw->size())); in BuildSnippet()
116 std::sort(match_positions.begin(), match_positions.end(), ComparePair1st); in BuildSnippet()
120 snippet.ComputeSnippet(match_positions, document); in BuildSnippet()
Dquery_parser.cc80 Snippet::MatchPositions* match_positions) const;
91 Snippet::MatchPositions* match_positions) const { in HasMatchIn()
95 match_positions->push_back( in HasMatchIn()
149 Snippet::MatchPositions* match_positions) const { in HasMatchIn()
210 Snippet::MatchPositions* match_positions) const;
220 Snippet::MatchPositions* match_positions) const { in HasMatchIn()
234 match_positions->push_back( in HasMatchIn()
294 Snippet::MatchPositions* match_positions) { in DoesQueryMatch() argument
315 match_positions->clear(); in DoesQueryMatch()
318 match_positions->swap(matches); in DoesQueryMatch()
Dsnippet.h38 MatchPositions* match_positions);
44 Snippet::MatchPositions* match_positions);
Dquery_parser.h51 Snippet::MatchPositions* match_positions) const = 0;
95 Snippet::MatchPositions* match_positions);
Dtext_database.cc358 Snippet::MatchPositions match_positions; in GetTextMatches() local
360 &match_positions); in GetTextMatches()
364 match.snippet.ComputeSnippet(match_positions, body); in GetTextMatches()
/external/chromium/chrome/browser/bookmarks/
Dbookmark_index_unittest.cc92 ASSERT_EQ(expected_positions.size(), match.match_positions.size()); in ExpectMatchPositions()
94 EXPECT_EQ(expected_positions[i].first, match.match_positions[i].first); in ExpectMatchPositions()
95 EXPECT_EQ(expected_positions[i].second, match.match_positions[i].second); in ExpectMatchPositions()
219 EXPECT_TRUE(matches[0].match_positions.empty()); in TEST_F()
Dbookmark_utils.h141 Snippet::MatchPositions match_positions; member
Dbookmark_index.cc152 &(title_match.match_positions))) { in AddMatchToResults()
/external/chromium/chrome/browser/autocomplete/
Dhistory_contents_provider.cc284 history::URLResult url_result(match.node->GetURL(), match.match_positions); in AddBookmarkTitleMatchToResults()