Home | History | Annotate | Download | only in android

Lines Matching refs:CREATED

32         "android_cache_db.bookmark_cache.created_time AS created, "
79 // a. Last visit time or created time is large than now.
80 // b. Last visit time is less than created time.
81 // c. Created time and last visit time is different, but visit count is less
83 // d. The difference between created and last visit time is less than
85 // e. Visit count is 0 or 1 and both last visit time and created time are set
86 // explicitly, but the time is different or created time is not UnixEpoch.
91 if (row.is_value_set_explicitly(HistoryAndBookmarkRow::CREATED) &&
92 row.created() > Time::Now())
96 row.is_value_set_explicitly(HistoryAndBookmarkRow::CREATED)) {
97 if (row.created() > row.last_visit_time())
101 row.is_value_set_explicitly(HistoryAndBookmarkRow::CREATED) &&
103 if (row.created() != row.last_visit_time() &&
104 row.created() != Time::UnixEpoch() &&
109 row.created().ToInternalValue() < row.visit_count())
246 // will be created after this scoped transaction ends, there should have no
741 // The last_visit_time and the created time should be same when the visit
744 // of the 'created' column is NULL because the left join is used in query
955 projections.push_back(HistoryAndBookmarkRow::CREATED);
1020 if (row.is_value_set_explicitly(HistoryAndBookmarkRow::CREATED))
1021 new_row.set_created(row.created());