HomeSort by relevance Sort by last modified time
    Searched refs:best_prefix (Results 1 - 7 of 7) 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/
url_index_private_data.cc 560 SearchTermCacheMap::iterator best_prefix(search_term_cache_.end());
564 (best_prefix == search_term_cache_.end() ||
565 cache_iter->first.length() > best_prefix->first.length()))
566 best_prefix = cache_iter;
573 if (best_prefix != search_term_cache_.end()) {
576 size_t prefix_length = best_prefix->first.length();
578 best_prefix->second.used_ = true;
579 return best_prefix->second.history_id_set_;
585 if (best_prefix->second.history_id_set_.empty()) {
589 word_id_set = best_prefix->second.word_id_set_
    [all...]
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/elfutils/0.153/libcpu/
i386_parse.c     [all...]
i386_parse.y     [all...]
  /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 1347 milliseconds