HomeSort by relevance Sort by last modified time
    Searched refs:URLPrefix (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/chrome/browser/autocomplete/
url_prefix.h 12 struct URLPrefix;
13 typedef std::vector<URLPrefix> URLPrefixes;
17 struct URLPrefix {
18 URLPrefix(const string16& prefix, size_t num_components);
30 static const URLPrefix* BestURLPrefix(const string16& text,
url_prefix.cc 11 URLPrefix::URLPrefix(const string16& prefix, size_t num_components)
17 const URLPrefixes& URLPrefix::GetURLPrefixes() {
20 prefixes.push_back(URLPrefix(ASCIIToUTF16("https://www."), 2));
21 prefixes.push_back(URLPrefix(ASCIIToUTF16("http://www."), 2));
22 prefixes.push_back(URLPrefix(ASCIIToUTF16("ftp://ftp."), 2));
23 prefixes.push_back(URLPrefix(ASCIIToUTF16("ftp://www."), 2));
24 prefixes.push_back(URLPrefix(ASCIIToUTF16("https://"), 1));
25 prefixes.push_back(URLPrefix(ASCIIToUTF16("http://"), 1));
26 prefixes.push_back(URLPrefix(ASCIIToUTF16("ftp://"), 1))
    [all...]
history_url_provider.cc 361 const URLPrefix* best_prefix = URLPrefix::BestURLPrefix(
463 const URLPrefixes& prefixes = URLPrefix::GetURLPrefixes();
482 const URLPrefix* best_prefix =
483 URLPrefix::BestURLPrefix(UTF8ToUTF16(j->url().spec()), string16());
    [all...]
search_provider.cc 182 return URLPrefix::BestURLPrefix(formatted_url_, input) != NULL;
    [all...]
  /external/chromium_org/chrome/browser/history/
scored_history_match.cc 92 // URLPrefix such as http://www and https:// (note that one of these
103 const URLPrefix* best_inlineable_prefix =
105 URLPrefix::BestURLPrefix(UTF8ToUTF16(gurl.spec()), terms[0]) :
133 const URLPrefix* best_prefix =
134 URLPrefix::BestURLPrefix(UTF8ToUTF16(gurl.spec()), string16());

Completed in 116 milliseconds