Home
last modified time | relevance | path

Searched refs:VISITS (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Browser/src/com/android/browser/provider/
DBrowserProvider2.java313 map.put(History.VISITS, History.VISITS); in map.put() argument
340 map.put(Combined.VISITS, Combined.VISITS); in map.put() argument
354 map.put(Combined.VISITS, "0 AS " + Combined.VISITS); in map.put() argument
435 History.VISITS + " INTEGER NOT NULL DEFAULT 0," + in onCreate()
555 BookmarkColumns.VISITS, // 2 in importFromBrowserProvider()
558 }, BookmarkColumns.VISITS + " > 0 OR " in importFromBrowserProvider()
569 values.put(History.VISITS, c.getInt(2)); in importFromBrowserProvider()
1432 values.remove(BookmarkColumns.VISITS); in insertInTransaction()
1509 id = db.insertOrThrow(TABLE_HISTORY, History.VISITS, values); in insertInTransaction()
1689 values.remove(BookmarkColumns.VISITS); in updateInTransaction()
/packages/apps/Browser/src/com/android/browser/
DBrowserHistoryPage.java94 Combined.VISITS, // 5
120 String where = Combined.VISITS + " > 0"; in onCreateLoader()
130 String where = Combined.VISITS + " > 0"; in onCreateLoader()
132 HistoryQuery.PROJECTION, where, null, Combined.VISITS + " DESC"); in onCreateLoader()
DDataController.java247 c = cr.query(History.CONTENT_URI, new String[] { History._ID, History.VISITS }, in doUpdateVisitedHistory()
251 values.put(History.VISITS, c.getInt(1) + 1); in doUpdateVisitedHistory()
259 values.put(History.VISITS, 1); in doUpdateVisitedHistory()
/packages/apps/Browser/src/com/android/browser/homepages/
DRequestHandler.java113 null, History.VISITS + " DESC LIMIT 12"); in writeTemplatedIndex()