/external/chromium_org/chrome/browser/extensions/api/activity_log_private/ |
activity_log_private_api.cc | 136 int days_ago = -1; local 137 if (filter->days_ago.get()) 138 days_ago = *filter->days_ago; 149 days_ago,
|
/external/chromium_org/chrome/browser/extensions/activity_log/ |
fullstream_ui_policy.h | 37 const int days_ago, 105 const int days_ago);
|
activity_log_policy.cc | 149 int days_ago, 153 if (days_ago == 0) { 157 base::Time early_time = Util::AddDays(morning_midnight, -days_ago);
|
fullstream_ui_policy.cc | 127 const int days_ago) { 160 if (days_ago >= 0) 180 if (days_ago >= 0) { 183 Util::ComputeDatabaseTimeBounds(Now(), days_ago, &early_bound, &late_bound); local 360 const int days_ago, 373 days_ago),
|
counting_policy.h | 36 const int days_ago, 89 const int days_ago);
|
activity_log_policy.h | 113 // cover a time range days_ago days in the past, relative to the specified 116 int days_ago, 176 const int days_ago,
|
counting_policy.cc | 421 const int days_ago) { 454 if (days_ago >= 0) 476 if (days_ago >= 0) { 479 Util::ComputeDatabaseTimeBounds(Now(), days_ago, &early_bound, &late_bound); local 677 const int days_ago, 690 days_ago),
|
activity_log.h | 83 const int days_ago,
|
fullstream_ui_policy_unittest.cc | 85 const int days_ago, 96 days_ago,
|
/external/chromium_org/chrome/browser/history/ |
scored_history_match.cc | 476 for (int days_ago = 0; days_ago < kDaysToPrecomputeRecencyScoresFor; 477 days_ago++) { 479 if (days_ago <= 4) { 481 } else if (days_ago <= 14) { 484 unnormalized_recency_score = 70 + (14 - days_ago) * (100 - 70) / (14 - 4); 485 } else if (days_ago <= 31) { 488 unnormalized_recency_score = 50 + (31 - days_ago) * (70 - 50) / (31 - 14); 489 } else if (days_ago <= 90) { 492 unnormalized_recency_score = 30 + (90 - days_ago) * (50 - 30) / (90 - 30) [all...] |
history_querying_unittest.cc | 28 const int days_ago; member in struct:history::__anon7775::TestEntry 174 now - (test_entries[i].days_ago * TimeDelta::FromDays(1));
|
visitsegment_database.cc | 439 int days_ago = (now - timeslot).InDays(); local 440 float recency_boost = 1.0f + (2.0f * (1.0f / (1.0f + days_ago/7.0f)));
|
history_types.cc | 250 void QueryOptions::SetRecentDayRange(int days_ago) { 252 begin_time = end_time - base::TimeDelta::FromDays(days_ago);
|
history_types.h | 448 // Sets the query time to the last |days_ago| days to the present time. 449 void SetRecentDayRange(int days_ago);
|
/external/chromium/chrome/browser/history/ |
history_querying_unittest.cc | 27 const int days_ago; member in struct:history::__anon4636::TestEntry 104 now - (test_entries[i].days_ago * TimeDelta::FromDays(1));
|
visitsegment_database.cc | 273 int days_ago = (now - timeslot).InDays(); local 282 float recency_boost = 1.0f + (2.0f * (1.0f / (1.0f + days_ago/7.0f)));
|
history_types.cc | 301 void QueryOptions::SetRecentDayRange(int days_ago) { 303 begin_time = end_time - base::TimeDelta::FromDays(days_ago);
|
history_types.h | 495 // Sets the query time to the last |days_ago| days to the present time. 496 void SetRecentDayRange(int days_ago);
|