Home
last modified time | relevance | path

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

/packages/apps/Browser/src/com/android/browser/
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()
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()
/packages/apps/Browser/src/com/android/browser/provider/
DBrowserProvider2.java311 map.put(History.VISITS, History.VISITS); in map.put() argument
338 map.put(Combined.VISITS, Combined.VISITS); in map.put() argument
352 map.put(Combined.VISITS, "0 AS " + Combined.VISITS); in map.put() argument
433 History.VISITS + " INTEGER NOT NULL DEFAULT 0," + in onCreate()
553 BookmarkColumns.VISITS, // 2 in importFromBrowserProvider()
556 }, BookmarkColumns.VISITS + " > 0 OR " in importFromBrowserProvider()
567 values.put(History.VISITS, c.getInt(2)); in importFromBrowserProvider()
1380 values.remove(BookmarkColumns.VISITS); in insertInTransaction()
1457 id = db.insertOrThrow(TABLE_HISTORY, History.VISITS, values); in insertInTransaction()
1637 values.remove(BookmarkColumns.VISITS); in updateInTransaction()
/packages/apps/Browser/src/com/android/browser/homepages/
DRequestHandler.java113 null, History.VISITS + " DESC LIMIT 12"); in writeTemplatedIndex()