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

  /external/chromium_org/components/omnibox/
url_prefix.cc 20 const URLPrefix* best_prefix = URLPrefix::BestURLPrefix(text, prefix_suffix); local
21 if ((best_prefix == NULL) ||
22 (best_prefix->num_components < www_prefix.num_components)) {
24 best_prefix = &www_prefix;
26 return best_prefix;
83 const URLPrefix* best_prefix = allow_www_prefix_without_scheme ? local
86 // If we failed to find a best_prefix initially, try again using a fixed-up
90 if (!best_prefix && !fixed_up_input.empty() && (fixed_up_input != input)) {
91 best_prefix = allow_www_prefix_without_scheme ?
96 return (best_prefix != NULL)
    [all...]
  /external/chromium_org/chrome/browser/history/
scored_history_match.cc 140 const URLPrefix* best_prefix = URLPrefix::BestURLPrefix( local
142 DCHECK(best_prefix != NULL);
143 const int num_components_in_best_prefix = best_prefix->num_components;
  /external/chromium_org/chrome/browser/autocomplete/
history_url_provider.cc 631 const URLPrefix* best_prefix = URLPrefix::BestURLPrefix( local
634 // at all (so |best_prefix| is NULL), for example if the input is
637 if (best_prefix == NULL) {
643 best_prefix->prefix.length() - offset, text.length(),
748 const URLPrefix* best_prefix = URLPrefix::BestURLPrefix( local
750 DCHECK(best_prefix);
753 i->num_components >= best_prefix->num_components));
    [all...]
  /external/chromium_org/third_party/webrtc/base/
network.cc 348 IPAddress best_prefix; local
377 best_prefix = current_prefix;
382 *prefix = best_prefix;

Completed in 187 milliseconds