Home | History | Annotate | Download | only in autocomplete

Lines Matching refs:url_info

60     if (i->url_info.url() == info.url()) {
88 const GURL& url = match.url_info.url();
110 if (!a.url_info.typed_count() != !b.url_info.typed_count())
111 return a.url_info.typed_count() > b.url_info.typed_count();
119 if (a.url_info.typed_count() != b.url_info.typed_count())
120 return a.url_info.typed_count() > b.url_info.typed_count();
124 if ((a.url_info.typed_count() == 1) && (a.IsHostOnly() != b.IsHostOnly()))
128 if (a.url_info.visit_count() != b.url_info.visit_count())
129 return a.url_info.visit_count() > b.url_info.visit_count();
132 return a.url_info.last_visit() > b.url_info.last_visit();
552 (match.url_info.url() !=
820 if (!match.url_info.typed_count() ||
821 ((match.url_info.typed_count() == 1) &&
868 std::string new_match = match.url_info.url().possibly_invalid_spec().
880 if (search_base == match.url_info.url())
888 const int min_visit_count = ((match.url_info.visit_count() - 1) / 3) + 1;
895 const int min_typed_count = match.url_info.typed_count() ? 1 : 0;
897 match.url_info.url().possibly_invalid_spec(), min_visit_count,
905 promote = match.url_info.typed_count() <= 1;
925 matches->front().url_info.set_typed_count(2);
941 // http://htaccess.com (!innermost_match, url_info.visit_count == 2)
942 // http://http.com (!innermost_match, url_info.visit_count == 1)
955 if ((*matches)[i].url_info.url() == j->url_info.url())
969 if (RowQualifiesAsSignificant(i->url_info, threshold) &&
972 i->url_info.url(), *params->search_terms_data.get()))) {
985 const GURL& url = (*matches)[source].url_info.url();
1045 const history::URLRow& info = history_match.url_info;