HomeSort by relevance Sort by last modified time
    Searched defs:typed_count (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/chrome/common/importer/
importer_url_row.h 27 int typed_count; member in struct:ImporterURLRow
  /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/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/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...]
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));
  /external/chromium_org/components/bookmarks/browser/
bookmark_index_unittest.cc 420 const int typed_count; member in struct:bookmarks::__anon10985::TestData
430 typed_count_map.insert(std::make_pair(data[i].url, data[i].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;
  /external/chromium_org/chrome/browser/autocomplete/
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...]
history_url_provider_unittest.cc 48 int typed_count; member in struct:TestURLInfo
275 cur.typed_count, now - TimeDelta::FromDays(cur.age_in_days), false,
    [all...]
  /external/chromium_org/components/omnibox/
autocomplete_match.h 279 int typed_count; member in struct:AutocompleteMatch
  /external/chromium_org/chrome/browser/ui/omnibox/
omnibox_view_browsertest.cc 100 int typed_count; member in struct:__anon9739::TestHistoryEntry
301 entry.typed_count, time, false,
    [all...]

Completed in 517 milliseconds