Lines Matching refs:match
29 // url URL of the page so searches will match the URL.
61 TextDatabase::Match::Match() {}
63 TextDatabase::Match::~Match() {}
248 // First get all rows that match. Selecing on time (which has an index) allows
250 // generally be only one match per time).
304 std::vector<Match>* results,
312 "WHERE pages MATCH ? AND time >= ? AND time < ? "
344 Match& match = results->at(results->size() - 1);
345 match.url.Swap(&url);
347 match.title = statement.ColumnString16(1);
348 match.time = base::Time::FromInternalValue(statement.ColumnInt64(2));
353 &match.title_match_positions);
355 &match.title_match_positions);
364 match.snippet.ComputeSnippet(match_positions, body);