Home | History | Annotate | Download | only in android

Lines Matching refs:VISIT_COUNT

17     HistoryAndBookmarkRow::URL, HistoryAndBookmarkRow::VISIT_COUNT,
45 if (row->is_value_set_explicitly(HistoryAndBookmarkRow::VISIT_COUNT))
46 url_row.set_visit_count(row->visit_count());
52 else if (row->is_value_set_explicitly(HistoryAndBookmarkRow::VISIT_COUNT))
56 // Adjust the visit_count if it not set.
57 if (!row->is_value_set_explicitly(HistoryAndBookmarkRow::VISIT_COUNT)) {
58 int visit_count = 0;
62 visit_count = 1;
65 visit_count++;
67 visit_count++;
69 url_row.set_visit_count(visit_count);
110 if (row.is_value_set_explicitly(HistoryAndBookmarkRow::VISIT_COUNT))
111 update_row.set_visit_count(row.visit_count());
120 // Adjust the visit_count if it not set.
121 if (!row.is_value_set_explicitly(HistoryAndBookmarkRow::VISIT_COUNT) &&
126 update_row.set_visit_count(url_row.visit_count() + 1);
130 if (row.is_value_set_explicitly(HistoryAndBookmarkRow::VISIT_COUNT) &&
131 row.visit_count() == 0) {
134 } else if (row.visit_count() > url_row.visit_count()) {