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

  /external/chromium_org/chrome/browser/history/
top_sites_database.cc 25 // url_rank Index of the URL in that thumbnail, 0-based. The thumbnail
68 "url_rank INTEGER,"
152 "WHERE (url_rank = -1 AND last_forced = 0) "
153 "OR (url_rank <> -1 AND last_forced <> 0)";
166 // Enforce invariant that url_rank>=0 forms a contiguous series.
172 "SELECT url_rank, rowid FROM thumbnails WHERE url_rank <> -1 "
173 "ORDER BY url_rank";
177 "UPDATE thumbnails SET url_rank = ? WHERE rowid = ?";
180 // Update any rows where |next_rank| doesn't match |url_rank|
184 const int url_rank = select_statement.ColumnInt(0); local
    [all...]
top_sites_impl.cc 527 int url_rank = index - cache_->GetNumForcedURLs(); local
530 url_rank < 0 ? -1 : url_rank,

Completed in 719 milliseconds