Home | History | Annotate | Download | only in provider

Lines Matching defs:visits

82             BookmarkColumns.VISITS, // 2
298 return cr.query(History.CONTENT_URI, new String[] { History._ID, History.VISITS },
310 * number of visits. If false, the user entered it manually.
322 values.put(History.VISITS, c.getInt(1) + 1);
332 int visits;
335 visits = 1;
338 visits = 0;
342 values.put(History.VISITS, visits);
369 c = cr.query(History.CONTENT_URI, projection, History.VISITS + " > 0", null, null);
433 new String [] { History._ID, History.VISITS },
581 public static final String VISITS = "visits";