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

  /external/chromium_org/components/autocomplete/
url_prefix.h 12 struct URLPrefix;
13 typedef std::vector<URLPrefix> URLPrefixes;
17 struct URLPrefix {
18 URLPrefix(const base::string16& prefix, size_t num_components);
30 static const URLPrefix* BestURLPrefix(const base::string16& text,
36 static bool PrefixMatch(const URLPrefix& prefix,
url_prefix.cc 13 // Like URLPrefix::BestURLPrefix() except also handles the prefix of
15 const URLPrefix* BestURLPrefixWithWWWCase(
18 CR_DEFINE_STATIC_LOCAL(URLPrefix, www_prefix,
20 const URLPrefix* best_prefix = URLPrefix::BestURLPrefix(text, prefix_suffix);
23 if (URLPrefix::PrefixMatch(www_prefix, text, prefix_suffix))
31 URLPrefix::URLPrefix(const base::string16& prefix, size_t num_components)
37 const URLPrefixes& URLPrefix::GetURLPrefixes() {
40 prefixes.push_back(URLPrefix(base::ASCIIToUTF16("https://www."), 2))
    [all...]

Completed in 118 milliseconds