HomeSort by relevance Sort by last modified time
    Searched refs:typed_count (Results 1 - 25 of 39) sorted by null

1 2

  /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_param_traits_macros.h 45 IPC_STRUCT_TRAITS_MEMBER(typed_count)
  /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 167 const bool promote_to_inline = (row.typed_count() > 1) ||
168 (IsHostOnly() && (row.typed_count() == 1));
234 if (!m1.url_info.typed_count() != !m2.url_info.typed_count())
235 return m1.url_info.typed_count() > m2.url_info.typed_count();
243 if (m1.url_info.typed_count() != m2.url_info.typed_count())
244 return m1.url_info.typed_count() > m2.url_info.typed_count();
    [all...]
expire_history_backend.cc 384 ChangedURL() : visit_count(0), typed_count(0) {}
386 int typed_count; member in struct:history::__anon8717::ChangedURL
409 cur.typed_count++;
442 std::max(0, url_row.typed_count() - i->second.typed_count));
in_memory_history_backend.cc 107 if (url_row.typed_count() || db_->GetKeywordSearchTermRow(url_row.id(), NULL))
expire_history_backend_unittest.cc 585 EXPECT_EQ(1, url_row1.typed_count());
586 EXPECT_EQ(0, temp_row.typed_count());
635 EXPECT_EQ(1, url_row1.typed_count());
636 EXPECT_EQ(0, temp_row.typed_count());
686 EXPECT_EQ(1, url_row1.typed_count());
687 EXPECT_EQ(0, temp_row.typed_count());
733 EXPECT_EQ(0, new_url_row1.typed_count());
735 EXPECT_EQ(0, new_url_row2.typed_count());
url_index_private_data.cc 310 row_to_update.typed_count() != row.typed_count() ||
313 row_to_update.set_typed_count(row.typed_count());
712 new_row.set_typed_count(row.typed_count());
    [all...]
history_unittest.cc     [all...]
typed_url_syncable_service_unittest.cc 99 int typed_count,
147 int typed_count,
158 history_url.set_typed_count(typed_count);
165 if (typed_count > 0) {
191 url->set_typed_count(url->typed_count() + 1);
207 url->set_typed_count(url->typed_count() + 1);
scored_history_match_unittest.cc 36 // |visit_count|, and |typed_count|. |days_since_last_visit| gives the number
42 int typed_count);
65 int typed_count) {
69 row.set_typed_count(typed_count);
152 // Test scores based on typed_count.
  /external/chromium_org/components/history/core/browser/
url_row.h 80 int typed_count() const { function in class:history::URLRow
83 void set_typed_count(int typed_count) {
84 typed_count_ = typed_count;
url_database.cc 92 "SELECT" HISTORY_URL_ROW_FIELDS "FROM urls WHERE typed_count > 0"));
119 "UPDATE urls SET title=?,visit_count=?,typed_count=?,last_visit_time=?,"
124 statement.BindInt(2, info.typed_count());
139 " (url, title, visit_count, typed_count, "\
158 statement.BindInt(3, info.typed_count());
185 "(id, url, title, visit_count, typed_count, last_visit_time, hidden) "
192 statement.BindInt(4, info.typed_count());
252 "typed_count >= ?");
274 "WHERE url >= ? AND url < ? AND hidden = 0 AND typed_count > 0 "
275 "ORDER BY typed_count DESC, visit_count DESC, last_visit_time DESC
    [all...]
  /external/chromium_org/chrome/browser/sync/glue/
typed_url_change_processor.cc 31 // URLs - any URLs with a typed_count >= this threshold will be throttled.
35 // N, we sync up every Nth update (i.e. when typed_count % N == 0).
95 if (url->typed_count() > 0) {
105 DCHECK_GT(url.typed_count(), 0);
209 int typed_count = details->row.typed_count(); local
221 typed_count > 0 &&
222 (typed_count < kTypedUrlVisitThrottleThreshold ||
223 (typed_count % kTypedUrlVisitThrottleMultiple) == 0));
typed_url_model_associator.cc 259 // typed_count).
522 // visit_count or typed_count values here, because either one (or both)
702 int typed_count = 0; local
714 ++typed_count;
720 DCHECK(typed_count > 0);
722 if (typed_count > kMaxTypedUrlVisits) {
724 skip_count = typed_count - kMaxTypedUrlVisits;
758 // even though the visit's typed_count > 0 (corrupted typed_count). So
  /external/chromium_org/chrome/browser/autocomplete/
history_url_provider.cc 55 if (!a.url_info.typed_count() != !b.url_info.typed_count())
56 return a.url_info.typed_count() > b.url_info.typed_count();
64 if (a.url_info.typed_count() != b.url_info.typed_count())
65 return a.url_info.typed_count() > b.url_info.typed_count();
69 if ((a.url_info.typed_count() == 1) && (a.IsHostOnly() != b.IsHostOnly()))
163 match.url_info.typed_count());
    [all...]
history_quick_provider.cc 233 match.typed_count = info.typed_count();
283 match.RecordAdditionalInfo("typed count", info.typed_count());
history_quick_provider_unittest.cc 58 int typed_count; member in struct:TestURLInfo
230 cur.typed_count, visit_time.ToInternalValue());
240 // Mark the most recent |cur.typed_count| visits as typed.
245 (j < cur.typed_count) ? ui::PAGE_TRANSITION_TYPED :
393 // Scores high because of typed_count.
    [all...]
  /external/chromium_org/chrome/browser/bookmarks/
chrome_bookmark_client.cc 132 int typed_count = 0; local
135 // it guarantees to contain those with |typed_count| > 0. Thus, if we cannot
136 // fetch the URLRow, it is safe to assume that its |typed_count| is 0.
139 typed_count = url.typed_count();
141 NodeTypedCountPair pair(*i, typed_count);
  /external/chromium_org/chrome/browser/metrics/
omnibox_metrics_provider.cc 161 if (i->typed_count != -1)
162 suggestion->set_typed_count(i->typed_count);
  /external/chromium_org/components/omnibox/
autocomplete_match.cc 42 typed_count(-1),
57 typed_count(-1),
69 typed_count(match.typed_count),
106 typed_count = match.typed_count;
autocomplete_match.h 279 int typed_count; member in struct:AutocompleteMatch
  /external/chromium_org/chrome/browser/importer/
profile_writer_unittest.cc 57 int typed_count) {
61 row.set_typed_count(typed_count);
  /external/chromium_org/chrome/browser/sync/test/integration/
typed_urls_helper.cc 372 (left.typed_count() == right.typed_count()) &&

Completed in 705 milliseconds

1 2