OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:autocompletematch
(Results
51 - 75
of
166
) sorted by null
1
2
3
4
5
6
7
/external/chromium/chrome/browser/autocomplete/
keyword_provider.h
109
AutocompleteMatch
* match);
122
// Creates a fully marked-up
AutocompleteMatch
from the user's input.
124
AutocompleteMatch
CreateAutocompleteMatch(
155
std::vector<
AutocompleteMatch
> extension_suggest_matches_;
autocomplete_unittest.cc
26
return os << static_cast<const
AutocompleteMatch
*>(&(*it));
88
AutocompleteMatch
match(this, relevance_ - i, false,
89
AutocompleteMatch
::URL_WHAT_YOU_TYPED);
394
TEST(
AutocompleteMatch
, MoreRelevant) {
408
AutocompleteMatch
m1(NULL, 0, false,
AutocompleteMatch
::URL_WHAT_YOU_TYPED);
409
AutocompleteMatch
m2(NULL, 0, false,
AutocompleteMatch
::URL_WHAT_YOU_TYPED);
415
AutocompleteMatch
::MoreRelevant(m1, m2));
keyword_provider.cc
316
AutocompleteMatch
* match) {
339
AutocompleteMatch
::ClassifyLocationInString(0, match->contents.length(),
358
AutocompleteMatch
::ClassifyLocationInString(content_param_offsets[1],
382
AutocompleteMatch
KeywordProvider::CreateAutocompleteMatch(
409
AutocompleteMatch
result(this, relevance, false,
410
supports_replacement ?
AutocompleteMatch
::SEARCH_OTHER_ENGINE :
411
AutocompleteMatch
::HISTORY_KEYWORD);
437
AutocompleteMatch
::ClassifyLocationInString(
506
AutocompleteMatch
* match = &extension_suggest_matches_.back();
autocomplete_popup_view_gtk_unittest.cc
49
const
AutocompleteMatch
::ACMatchClassifications& classifications,
194
AutocompleteMatch
::ACMatchClassifications classifications;
229
AutocompleteMatch
::ACMatchClassifications classifications;
271
AutocompleteMatch
::ACMatchClassifications classifications;
333
AutocompleteMatch
::ACMatchClassifications classifications;
391
AutocompleteMatch
::ACMatchClassifications classifications;
search_provider.h
170
typedef std::map<string16,
AutocompleteMatch
> MatchMap;
212
//
AutocompleteMatch
and adds it to |matches_|.
253
// Creates an
AutocompleteMatch
for "Search <engine> for |query_string|" with
259
AutocompleteMatch
::Type type,
265
// Returns an
AutocompleteMatch
for a navigational suggestion.
266
AutocompleteMatch
NavigationToMatch(const NavigationResult& query_string,
autocomplete_popup_view_gtk.h
58
const
AutocompleteMatch
::ACMatchClassifications& classifications,
76
GdkPixbuf* IconForMatch(const
AutocompleteMatch
& match, bool selected);
autocomplete_popup_model.cc
73
const
AutocompleteMatch
& match = result.match_at(line);
131
bool AutocompletePopupModel::GetKeywordForMatch(const
AutocompleteMatch
& match,
203
const
AutocompleteMatch
& match = result().match_at(selected_line_);
226
const
AutocompleteMatch
& match) const {
history_provider.h
24
virtual void DeleteMatch(const
AutocompleteMatch
& match) OVERRIDE;
/external/chromium/chrome/browser/ui/views/autocomplete/
touch_autocomplete_popup_contents_view.h
37
const
AutocompleteMatch
& match,
/external/chromium_org/chrome/browser/ui/views/omnibox/
touch_omnibox_popup_contents_view.h
35
const
AutocompleteMatch
& match,
/external/chromium/chrome/browser/instant/
instant_controller.h
27
struct
AutocompleteMatch
;
80
// |verbatim| only matters if the
AutocompleteMatch
is for a search engine
83
const
AutocompleteMatch
& match,
149
// Returns the transition type of the last
AutocompleteMatch
passed to Update.
228
bool ShouldShowPreviewFor(const
AutocompleteMatch
& match,
251
// Returns the TemplateURL to use for the specified
AutocompleteMatch
, or
253
const TemplateURL* GetTemplateURL(const
AutocompleteMatch
& match);
/external/chromium/chrome/browser/ui/webui/options/
browser_options_handler.cc
438
const
AutocompleteMatch
& match = result.match_at(i);
439
AutocompleteMatch
::Type type = match.type;
440
if (type !=
AutocompleteMatch
::HISTORY_URL &&
441
type !=
AutocompleteMatch
::HISTORY_TITLE &&
442
type !=
AutocompleteMatch
::HISTORY_BODY &&
443
type !=
AutocompleteMatch
::HISTORY_KEYWORD &&
444
type !=
AutocompleteMatch
::NAVSUGGEST)
/external/chromium_org/chrome/browser/autocomplete/
zero_suggest_provider.cc
287
AutocompleteMatch
::Type type,
295
AutocompleteMatch
match = SearchProvider::CreateSearchSuggestion(
310
// using
AutocompleteMatch
::MoreRelevant(), so that we'll prefer "items added
321
AutocompleteMatch
ZeroSuggestProvider::NavigationToMatch(
323
AutocompleteMatch
match(this, navigation.relevance(), false,
335
AutocompleteMatch
::ClassifyLocationInString(base::string16::npos, 0,
340
AutocompleteMatch
::SanitizeString(navigation.description());
341
AutocompleteMatch
::ClassifyLocationInString(base::string16::npos, 0,
446
AutocompleteMatch
ZeroSuggestProvider::MatchForCurrentURL() {
451
AutocompleteMatch
match
[
all
...]
autocomplete_result.h
96
const
AutocompleteMatch
& match_at(size_t index) const;
97
AutocompleteMatch
* match_at(size_t index);
149
const
AutocompleteMatch
& match);
166
static bool HasMatchByDestination(const
AutocompleteMatch
& match,
176
const
AutocompleteMatch
& match);
history_provider.cc
27
void HistoryProvider::DeleteMatch(const
AutocompleteMatch
& match) {
44
void HistoryProvider::DeleteMatchFromMatches(const
AutocompleteMatch
& match) {
shortcuts_provider.cc
42
bool operator()(const
AutocompleteMatch
& match) const {
113
void ShortcutsProvider::DeleteMatch(const
AutocompleteMatch
& match) {
184
matches_.end(), &
AutocompleteMatch
::MoreRelevant);
209
AutocompleteMatch
ShortcutsProvider::ShortcutToACMatch(
216
AutocompleteMatch
match(shortcut.match_core.ToMatch());
233
if (
AutocompleteMatch
::IsSearchType(match.type)) {
365
AutocompleteMatch
::AddLastClassificationIfNecessary(&match_class,
378
return
AutocompleteMatch
::MergeClassifications(original_class, match_class);
autocomplete_classifier.cc
39
AutocompleteMatch
* match,
/external/chromium_org/chrome/browser/ui/gtk/omnibox/
omnibox_popup_view_gtk_unittest.cc
87
const
AutocompleteMatch
::ACMatchClassifications& classifications,
235
AutocompleteMatch
::ACMatchClassifications classifications;
263
AutocompleteMatch
::ACMatchClassifications classifications;
298
AutocompleteMatch
::ACMatchClassifications classifications;
348
AutocompleteMatch
::ACMatchClassifications classifications;
392
AutocompleteMatch
::ACMatchClassifications classifications;
422
AutocompleteMatch
match;
441
AutocompleteMatch
match;
447
AutocompleteMatch
match;
467
AutocompleteMatch
match
[
all
...]
/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;
106
static bool IsPreconnectable(const
AutocompleteMatch
& match);
205
const
AutocompleteMatch
& match,
/external/chromium_org/chrome/browser/history/
shortcuts_database_unittest.cc
37
AutocompleteMatch
::Type type;
128
AutocompleteMatch
::ClassificationsFromString(info.contents_class),
130
AutocompleteMatch
::ClassificationsFromString(info.description_class),
232
AutocompleteMatch
::ClassificationsToString(
237
AutocompleteMatch
::ClassificationsToString(
295
static_cast<
AutocompleteMatch
::Type>(statement.ColumnInt(3)));
/external/chromium_org/chrome/browser/ui/cocoa/omnibox/
omnibox_popup_view_mac_unittest.mm
77
//
AutocompleteMatch
doesn't really have the right constructor for our
79
AutocompleteMatch
MakeMatch(const base::string16& contents,
81
AutocompleteMatch
m(NULL, 1, true, AutocompleteMatchType::URL_WHAT_YOU_TYPED);
98
matches.push_back(
AutocompleteMatch
());
134
AutocompleteMatch
::ACMatchClassifications classifications;
161
AutocompleteMatch
::ACMatchClassifications classifications;
196
AutocompleteMatch
::ACMatchClassifications classifications;
245
AutocompleteMatch
::ACMatchClassifications classifications;
293
AutocompleteMatch
::ACMatchClassifications classifications;
339
AutocompleteMatch
m = MakeMatch(base::SysNSStringToUTF16(contents)
[
all
...]
/external/chromium_org/chrome/browser/ui/omnibox/
omnibox_current_page_delegate_impl.cc
69
const
AutocompleteMatch
& match,
96
const
AutocompleteMatch
& match) {
/external/chromium_org/chrome/browser/ui/search/
instant_search_prerenderer.cc
146
bool InstantSearchPrerenderer::IsAllowed(const
AutocompleteMatch
& match,
148
return source &&
AutocompleteMatch
::IsSearchType(match.type) &&
/external/chromium_org/chrome/renderer/resources/extensions/
omnibox_custom_bindings.js
14
// for |
AutocompleteMatch
::contents|.
16
// NOTE: This logic mirrors |
AutocompleteMatch
::SanitizeString()|.
/external/chromium/chrome/browser/
omnibox_search_hint.cc
192
AutocompleteMatch
::Type type =
194
if (type ==
AutocompleteMatch
::SEARCH_WHAT_YOU_TYPED ||
195
type ==
AutocompleteMatch
::SEARCH_HISTORY ||
196
type ==
AutocompleteMatch
::SEARCH_SUGGEST) {
Completed in 584 milliseconds
1
2
3
4
5
6
7