Searched defs:URLPrefix (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/components/omnibox/
H A Durl_prefix.h12 struct URLPrefix;
13 typedef std::vector<URLPrefix> URLPrefixes;
17 struct URLPrefix { struct
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,
H A Durl_prefix.cc13 // 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) function in class:URLPrefix
37 const URLPrefixes& URLPrefix::GetURLPrefixes() {
40 prefixes.push_back(URLPrefix(bas
[all...]

Completed in 90 milliseconds