Home | History | Annotate | Download | only in provider

Lines Matching defs:VISITS

81             BookmarkColumns.VISITS, // 2
297 return cr.query(History.CONTENT_URI, new String[] { History._ID, History.VISITS },
309 * number of visits. If false, the user entered it manually.
321 values.put(History.VISITS, c.getInt(1) + 1);
331 int visits;
334 visits = 1;
337 visits = 0;
341 values.put(History.VISITS, visits);
368 c = cr.query(History.CONTENT_URI, projection, History.VISITS + " > 0", null, null);
434 new String [] { History._ID, History.VISITS },
589 public static final String VISITS = "visits";