HomeSort by relevance Sort by last modified time
    Searched refs:AutocompleteMatch (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /external/chromium_org/chrome/browser/autocomplete/
autocomplete_match_unittest.cc 24 AutocompleteMatch m1(NULL, 0, false,
26 AutocompleteMatch m2(NULL, 0, false,
33 AutocompleteMatch::MoreRelevant(m1, m2));
40 AutocompleteMatch::ClassificationsToString(
41 AutocompleteMatch::MergeClassifications(
42 AutocompleteMatch::ACMatchClassifications(),
43 AutocompleteMatch::ACMatchClassifications())));
48 AutocompleteMatch::ClassificationsToString(
49 AutocompleteMatch::MergeClassifications(
50 AutocompleteMatch::ClassificationsFromString("0,0")
    [all...]
history_provider.h 13 struct AutocompleteMatch;
19 virtual void DeleteMatch(const AutocompleteMatch& match) OVERRIDE;
34 void DeleteMatchFromMatches(const AutocompleteMatch& match);
autocomplete_match.h 30 // AutocompleteMatch ----------------------------------------------------------
39 struct AutocompleteMatch {
78 // an AutocompleteMatch.
88 AutocompleteMatch();
89 AutocompleteMatch(AutocompleteProvider* provider,
93 AutocompleteMatch(const AutocompleteMatch& match);
94 ~AutocompleteMatch();
97 AutocompleteMatch& operator=(const AutocompleteMatch& match)
    [all...]
autocomplete_classifier.h 16 struct AutocompleteMatch;
51 AutocompleteMatch* match,
autocomplete_match.cc 32 // AutocompleteMatch ----------------------------------------------------------
35 const base::char16 AutocompleteMatch::kInvalidChars[] = {
42 AutocompleteMatch::AutocompleteMatch()
55 AutocompleteMatch::AutocompleteMatch(AutocompleteProvider* provider,
71 AutocompleteMatch::AutocompleteMatch(const AutocompleteMatch& match)
91 new AutocompleteMatch(*match.associated_keyword) : NULL)
    [all...]
autocomplete_result.cc 26 // This class implements a special version of AutocompleteMatch::MoreRelevant
35 int GetDemotedRelevance(const AutocompleteMatch& match);
38 bool operator()(const AutocompleteMatch& elem1,
39 const AutocompleteMatch& elem2);
52 const AutocompleteMatch& match) {
59 bool CompareWithDemoteByType::operator()(const AutocompleteMatch& elem1,
60 const AutocompleteMatch& elem2) {
76 bool operator()(const AutocompleteMatch& elem1,
77 const AutocompleteMatch& elem2);
87 bool DestinationSort::operator()(const AutocompleteMatch& elem1
    [all...]
extension_app_provider.h 38 static void LaunchAppFromOmnibox(const AutocompleteMatch& match,
66 AutocompleteMatch CreateAutocompleteMatch(const AutocompleteInput& input,
autocomplete_result.h 92 const AutocompleteMatch& match_at(size_t index) const;
93 AutocompleteMatch* match_at(size_t index);
145 const AutocompleteMatch& match);
151 // |duplicate_matches| vector of the corresponding AutocompleteMatch.
172 static bool HasMatchByDestination(const AutocompleteMatch& match,
zero_suggest_provider.h 61 virtual void DeleteMatch(const AutocompleteMatch& match) OVERRIDE;
97 // Returns an AutocompleteMatch for a navigational suggestion |navigation|.
98 AutocompleteMatch NavigationToMatch(const NavigationResult& navigation);
108 // Returns an AutocompleteMatch for the current URL. The match should be in
111 AutocompleteMatch MatchForCurrentURL();
147 AutocompleteMatch current_url_match_;
keyword_provider.h 87 // Creates a fully marked-up AutocompleteMatch for a specific keyword.
88 AutocompleteMatch CreateVerbatimMatch(const base::string16& text,
124 // Creates a fully marked-up AutocompleteMatch from the user's input.
126 AutocompleteMatch CreateAutocompleteMatch(
138 AutocompleteMatch* match) const;
history_url_provider.h 100 const AutocompleteMatch& what_you_typed_match,
121 AutocompleteMatch what_you_typed_match;
150 // element of |matches|, or neither as the first AutocompleteMatch. If
207 AutocompleteMatch SuggestExactInput(const base::string16& text,
322 AutocompleteMatch HistoryMatchToACMatch(
shortcuts_provider.h 34 virtual void DeleteMatch(const AutocompleteMatch& match) OVERRIDE;
51 // Returns an AutocompleteMatch corresponding to |shortcut|. Assigns it
56 AutocompleteMatch ShortcutToACMatch(
base_search_provider.h 57 static bool ShouldPrefetch(const AutocompleteMatch& match);
59 // Returns a simpler AutocompleteMatch suitable for persistence like in
63 static AutocompleteMatch CreateSearchSuggestion(
72 virtual void DeleteMatch(const AutocompleteMatch& match) OVERRIDE;
299 typedef std::map<MatchKey, AutocompleteMatch> MatchMap;
337 // Returns an AutocompleteMatch with the given |autocomplete_provider|
353 static AutocompleteMatch CreateSearchSuggestion(
416 AutocompleteMatch* match);
418 // Creates an AutocompleteMatch from |result| to search for the query in
422 // AutocompleteMatch
    [all...]
  /external/chromium_org/chrome/browser/ui/omnibox/
omnibox_current_page_delegate.h 16 struct AutocompleteMatch;
56 const AutocompleteMatch& match,
67 virtual void DoPrerender(const AutocompleteMatch& match) = 0;
omnibox_controller.h 17 struct AutocompleteMatch;
64 const AutocompleteMatch& current_match() const { return current_match_; }
74 void DoPreconnect(const AutocompleteMatch& match);
87 // TODO(beaudoin): This AutocompleteMatch is used to let the OmniboxEditModel
91 AutocompleteMatch current_match_;
alternate_nav_infobar_delegate.h 24 const AutocompleteMatch& match,
34 const AutocompleteMatch& match,
47 const AutocompleteMatch match_;
omnibox_navigation_observer.h 56 const AutocompleteMatch& match,
57 const AutocompleteMatch& alternate_nav_match);
95 const AutocompleteMatch match_;
96 const AutocompleteMatch alternate_nav_match_;
omnibox_current_page_delegate_impl.h 31 const AutocompleteMatch& match,
36 virtual void DoPrerender(const AutocompleteMatch& match) OVERRIDE;
omnibox_controller.cc 28 // Returns the AutocompleteMatch that the InstantController should prefetch, if
44 const AutocompleteMatch* GetMatchToPrefetch(const AutocompleteResult& result) {
124 const AutocompleteMatch* match_to_prefetch = GetMatchToPrefetch(result());
138 current_match_ = AutocompleteMatch();
147 void OmniboxController::DoPreconnect(const AutocompleteMatch& match) {
  /external/chromium_org/chrome/browser/ui/views/
settings_api_bubble_helper_views.h 8 struct AutocompleteMatch;
29 const AutocompleteMatch& match);
  /external/chromium_org/chrome/browser/ui/cocoa/omnibox/
omnibox_popup_cell.h 24 AutocompleteMatch match_;
43 - (void)setMatch:(const AutocompleteMatch&)match;
55 + (CGFloat)computeContentsOffset:(const AutocompleteMatch&)match;
  /external/chromium_org/chrome/browser/android/omnibox/
omnibox_prerender.h 16 struct AutocompleteMatch;
59 // Prerenders a given AutocompleteMatch's url.
60 void DoPrerender(const AutocompleteMatch& match,
  /external/chromium_org/chrome/browser/ui/views/omnibox/
omnibox_result_view.h 60 void SetMatch(const AutocompleteMatch& match);
81 virtual void PaintMatch(const AutocompleteMatch& match,
93 int DrawRenderText(const AutocompleteMatch& match,
147 int GetDisplayOffset(const AutocompleteMatch& match,
171 AutocompleteMatch match_;
  /external/chromium_org/chrome/browser/predictors/
autocomplete_action_predictor.h 23 struct AutocompleteMatch;
49 // action to take given for a given AutocompleteMatch and entered text. It can
93 const AutocompleteMatch& match) const;
109 static bool IsPreconnectable(const AutocompleteMatch& match);
212 const AutocompleteMatch& match,
  /external/chromium_org/chrome/browser/ui/search/
instant_search_prerenderer.h 16 struct AutocompleteMatch;
82 bool IsAllowed(const AutocompleteMatch& match,

Completed in 375 milliseconds

1 2 3 4