/external/chromium_org/chrome/common/importer/ |
importer_url_row.cc | 9 typed_count(0), 16 typed_count(0),
|
importer_url_row.h | 27 int typed_count; member in struct:ImporterURLRow
|
profile_import_process_messages.h | 89 WriteParam(m, p.typed_count); 96 int visit_count, typed_count; local 102 !ReadParam(m, iter, &typed_count) || 109 p->typed_count = typed_count; 122 LogParam(p.typed_count, l);
|
/external/chromium_org/chrome/browser/history/ |
typed_url_syncable_service.cc | 30 // URLs - any URLs with a typed_count >= this threshold will be throttled. 34 // N, we sync up every Nth update (i.e. when typed_count % N == 0). 142 if (url->typed_count() > 0) { 252 int typed_count = row->typed_count(); local 264 typed_count > 0 && 265 (typed_count < kTypedUrlVisitThrottleThreshold || 266 (typed_count % kTypedUrlVisitThrottleMultiple) == 0)); 272 DCHECK_GT(url.typed_count(), 0); 343 int typed_count = 0 local [all...] |
scored_history_match.cc | 163 const bool promote_to_inline = (row.typed_count() > 1) || 164 (IsHostOnly() && (row.typed_count() == 1)); 223 if (!m1.url_info.typed_count() != !m2.url_info.typed_count()) 224 return m1.url_info.typed_count() > m2.url_info.typed_count(); 232 if (m1.url_info.typed_count() != m2.url_info.typed_count()) 233 return m1.url_info.typed_count() > m2.url_info.typed_count(); [all...] |
in_memory_history_backend.cc | 73 if (visited_details->row.typed_count() > 0 || 123 if (i->typed_count() > 0) {
|
expire_history_backend_unittest.cc | 563 EXPECT_EQ(1, url_row1.typed_count()); 564 EXPECT_EQ(0, temp_row.typed_count()); 610 EXPECT_EQ(1, url_row1.typed_count()); 611 EXPECT_EQ(0, temp_row.typed_count()); 658 EXPECT_EQ(1, url_row1.typed_count()); 659 EXPECT_EQ(0, temp_row.typed_count()); 702 EXPECT_EQ(0, new_url_row1.typed_count()); 704 EXPECT_EQ(0, new_url_row2.typed_count()); [all...] |
expire_history_backend.cc | 456 ChangedURL() : visit_count(0), typed_count(0) {} 458 int typed_count; member in struct:history::__anon7771::ChangedURL 482 cur.typed_count++; 515 std::max(0, url_row.typed_count() - i->second.typed_count));
|
url_index_private_data.cc | 308 row_to_update.typed_count() != row.typed_count() || 311 row_to_update.set_typed_count(row.typed_count()); 721 new_row.set_typed_count(row.typed_count()); [all...] |
/external/chromium/chrome/browser/autocomplete/ |
history_url_provider.cc | 51 if (!a.url_info.typed_count() != !b.url_info.typed_count()) 52 return a.url_info.typed_count() > b.url_info.typed_count(); 60 if (a.url_info.typed_count() != b.url_info.typed_count()) 61 return a.url_info.typed_count() > b.url_info.typed_count(); 65 if (a.url_info.typed_count() == 1) { 392 if (!info.typed_count()) { [all...] |
extension_app_provider_unittest.cc | 50 int typed_count; member in struct:ExtensionApps 66 info.set_typed_count(kExtensionApps[i].typed_count);
|
history_quick_provider_unittest.cc | 36 int typed_count; member in struct:TestURLInfo 139 url_info.set_typed_count(cur.typed_count); 145 cur.visit_count, cur.typed_count, 223 // Scores high because of typed_count.
|
/external/chromium_org/chrome/browser/sync/glue/ |
typed_url_change_processor.cc | 30 // URLs - any URLs with a typed_count >= this threshold will be throttled. 34 // N, we sync up every Nth update (i.e. when typed_count % N == 0). 94 if (url->typed_count() > 0) { 104 DCHECK_GT(url.typed_count(), 0); 226 int typed_count = details->row.typed_count(); local 238 typed_count > 0 && 239 (typed_count < kTypedUrlVisitThrottleThreshold || 240 (typed_count % kTypedUrlVisitThrottleMultiple) == 0));
|
/external/chromium/chrome/browser/sync/glue/ |
typed_url_model_associator_unittest.cc | 20 int typed_count, 27 history_url.set_typed_count(typed_count); 39 int typed_count, 45 typed_url.set_typed_count(typed_count); 55 (lhs.typed_count() == rhs.typed_count()) &&
|
typed_url_model_associator.cc | 156 new_url.set_typed_count(typed_url.typed_count()); 375 if (typed_url.typed_count() > url.typed_count()) { 376 new_url->set_typed_count(typed_url.typed_count()); 378 } else if (typed_url.typed_count() < url.typed_count()) { 379 new_url->set_typed_count(url.typed_count()); 383 new_url->set_typed_count(typed_url.typed_count()); 446 typed_url.set_typed_count(url.typed_count());
|
/external/chromium_org/chrome/browser/autocomplete/ |
history_url_provider.cc | 120 if (!a.url_info.typed_count() != !b.url_info.typed_count()) 121 return a.url_info.typed_count() > b.url_info.typed_count(); 129 if (a.url_info.typed_count() != b.url_info.typed_count()) 130 return a.url_info.typed_count() > b.url_info.typed_count(); 134 if ((a.url_info.typed_count() == 1) && (a.IsHostOnly() != b.IsHostOnly())) 180 // Extracts typed_count, visit_count, and last_visited time from th [all...] |
autocomplete_match.cc | 44 typed_count(-1), 60 typed_count(-1), 73 typed_count(match.typed_count), 108 typed_count = match.typed_count;
|
extension_app_provider_unittest.cc | 58 int typed_count; member in struct:TestExtensionApp 79 info.set_typed_count(kExtensionApps[i].typed_count);
|
history_quick_provider.cc | 260 match.typed_count = info.typed_count(); 301 match.RecordAdditionalInfo("typed count", info.typed_count());
|
/external/chromium/chrome/browser/history/ |
expire_history_backend.cc | 342 if (dependencies->deleted_urls[i].typed_count() > 0) 454 ChangedURL() : visit_count(0), typed_count(0) {} 456 int typed_count; member in struct:history::__anon4630::ChangedURL 478 cur.typed_count++; 511 std::max(0, url_row.typed_count() - i->second.typed_count));
|
history_types.h | 98 int typed_count() const { function in class:history::URLRow 101 void set_typed_count(int typed_count) { 102 typed_count_ = typed_count;
|
url_database_unittest.cc | 29 a.typed_count() == b.typed_count() &&
|
/external/chromium_org/chrome/browser/importer/ |
profile_writer_unittest.cc | 57 int typed_count) { 61 row.set_typed_count(typed_count);
|
/external/chromium/chrome/browser/importer/ |
profile_import_process_messages.h | 82 WriteParam(m, p.typed_count()); 90 int visit_count, typed_count; local 97 !ReadParam(m, iter, &typed_count) || 104 p->set_typed_count(typed_count); 119 LogParam(p.typed_count(), l);
|
/external/chromium/chrome/browser/sync/ |
profile_sync_service_typed_url_unittest.cc | 231 new_url.set_typed_count(typed_url.typed_count()); 254 (lhs.typed_count() == rhs.typed_count()) && 261 int typed_count, 268 history_url.set_typed_count(typed_count);
|