HomeSort by relevance Sort by last modified time
    Searched refs:suggestions (Results 26 - 50 of 190) sorted by null

12 3 4 5 6 7 8

  /external/chromium_org/third_party/WebKit/Source/platform/
DateTimeChooser.h 58 Vector<DateTimeSuggestion> suggestions; member in struct:WebCore::DateTimeChooserParameters
  /external/chromium_org/chrome/android/shell/java/src/org/chromium/chrome/shell/omnibox/
SuggestionArrayAdapter.java 26 public SuggestionArrayAdapter(Context context, int res, List<OmniboxSuggestion> suggestions) {
27 super(context, res, suggestions);
28 mSuggestions = suggestions;
  /external/chromium_org/chrome/browser/search/suggestions/
suggestions_service.cc 5 #include "chrome/browser/search/suggestions/suggestions_service.h"
18 #include "chrome/browser/search/suggestions/suggestions_store.h"
35 namespace suggestions { namespace
49 UMA_HISTOGRAM_ENUMERATION("Suggestions.ResponseState", state,
60 // Runs each callback in |requestors| on |suggestions|, then deallocates
63 const SuggestionsProfile& suggestions,
67 it->Run(suggestions);
127 // Post a task to serve the cached suggestions if the request hasn't completed
173 // run; instead we'll wait for the updated suggestions before servicing
212 UMA_HISTOGRAM_SPARSE_SLOWLY("Suggestions.FailedRequestErrorCode"
242 SuggestionsProfile suggestions; local
286 SuggestionsProfile suggestions; local
    [all...]
suggestions_source.h 14 #include "chrome/browser/search/suggestions/proto/suggestions.pb.h"
25 namespace suggestions { namespace
49 const suggestions::SuggestionsProfile& suggestions_profile_in,
53 const suggestions::SuggestionsProfile suggestions_profile;
58 // Callback for suggestions from SuggestionsService.
80 } // namespace suggestions
thumbnail_manager.cc 5 #include "chrome/browser/search/suggestions/thumbnail_manager.h"
8 #include "chrome/browser/search/suggestions/proto/suggestions.pb.h"
12 namespace suggestions { namespace
29 const SuggestionsProfile& suggestions) {
31 for (int i = 0; i < suggestions.suggestions_size(); ++i) {
32 const ChromeSuggestion& suggestion = suggestions.suggestions(i);
96 } // namespace suggestions
thumbnail_manager_unittest.cc 7 #include "chrome/browser/search/suggestions/proto/suggestions.pb.h"
8 #include "chrome/browser/search/suggestions/thumbnail_manager.h"
26 namespace suggestions { namespace
46 } // namespace suggestions
thumbnail_manager.h 20 namespace suggestions { namespace
32 void InitializeThumbnailMap(const SuggestionsProfile& suggestions);
99 } // namespace suggestions
  /external/chromium_org/chrome/browser/ui/webui/options/
home_page_overlay_handler.cc 60 base::ListValue suggestions; local
61 OptionsUI::ProcessAutocompleteSuggestions(result, &suggestions);
63 "HomePageOverlay.updateAutocompleteSuggestions", suggestions);
  /external/chromium_org/content/browser/android/
date_time_chooser_android.cc 83 const std::vector<DateTimeSuggestion>& suggestions) {
89 if (suggestions.size() > 0) {
92 suggestions.size());
93 for (size_t i = 0; i < suggestions.size(); ++i) {
94 const content::DateTimeSuggestion& suggestion = suggestions[i];
date_time_chooser_android.h 37 const std::vector<DateTimeSuggestion>& suggestions);
  /external/chromium_org/components/autofill/core/browser/
autocomplete_history_manager.cc 22 // Limit on the number of suggestions to appear in the pop-up menu under an
76 std::vector<base::string16> suggestions = autofill_result->GetValue(); local
77 SendSuggestions(&suggestions);
162 const std::vector<base::string16>* suggestions) {
163 if (suggestions) {
165 for (size_t i = 0; i < suggestions->size(); ++i) {
169 if (autofill_values_[j] == (*suggestions)[i]) {
176 autofill_values_.push_back((*suggestions)[i]);
  /external/chromium_org/components/password_manager/core/browser/
password_autofill_manager.cc 70 const std::vector<base::string16>& suggestions,
72 if (!autofill::IsValidString16Vector(suggestions) ||
74 suggestions.size() != realms.size())
79 if (suggestions.empty()) {
84 std::vector<base::string16> empty(suggestions.size());
85 std::vector<int> password_ids(suggestions.size(),
89 suggestions,
  /external/chromium_org/chrome/common/
localized_error.cc 71 int suggestions; // Bitmap of SUGGEST_* values. member in struct:__anon10228::LocalizedErrorMap
541 options.suggestions = SUGGEST_NONE;
630 params->suggest_reload = !!(options.suggestions & SUGGEST_RELOAD);
633 base::ListValue* suggestions = NULL; local
636 suggestions = new base::ListValue();
638 suggestions = params->override_suggestions.release();
642 error_strings->Set("suggestions", suggestions);
673 // Add at the front, so it appears before other suggestions, in the case
674 // suggestions are being overridden by |params|
    [all...]
  /external/chromium_org/content/renderer/
renderer_date_time_picker.cc 65 for (size_t i = 0; i < chooser_params_.suggestions.size(); i++) {
66 message.suggestions.push_back(
67 DateTimeSuggestionBuilder::Build(chooser_params_.suggestions[i]));
renderer_webcolorchooser_impl.h 35 const std::vector<content::ColorSuggestion>& suggestions);
renderer_webcolorchooser_impl.cc 50 const std::vector<content::ColorSuggestion>& suggestions) {
54 suggestions));
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_platform_mac_unittest.cc 361 std::vector<base::string16> suggestions; local
362 spellcheck_mac::FillSuggestionList(word, &suggestions);
366 for (size_t j = 0; j < suggestions.size(); j++) {
367 if (suggestions[j].compare(suggested_word) == 0) {
  /external/chromium_org/components/web_contents_delegate_android/
color_chooser_android.h 30 const std::vector<content::ColorSuggestion>& suggestions);
  /external/chromium_org/content/shell/renderer/test_runner/
MockSpellCheck.h 25 static void fillSuggestionList(const blink::WebString& word, blink::WebVector<blink::WebString>* suggestions);
SpellCheckClient.cpp 120 WebVector<WebString> suggestions; local
121 m_spellcheck.fillSuggestionList(WebString(text.substr(misspelledPosition, misspelledLength)), &suggestions); local
122 results.push_back(WebTextCheckingResult(WebTextDecorationTypeSpelling, offset + misspelledPosition, misspelledLength, suggestions.isEmpty() ? WebString() : suggestions[0]));
MockSpellCheck.cpp 114 void MockSpellCheck::fillSuggestionList(const WebString& word, WebVector<WebString>* suggestions)
117 append(suggestions, WebString::fromUTF8("welcome"));
119 append(suggestions, WebString::fromUTF8("uppercase"));
121 append(suggestions, WebString::fromUTF8("Hello"));
123 append(suggestions, WebString::fromUTF8("world"));
  /external/chromium_org/third_party/WebKit/Source/web/
ColorChooserPopupUIController.cpp 85 Vector<ColorSuggestion> suggestions = m_client->suggestions(); local
87 for (unsigned i = 0; i < suggestions.size(); i++)
88 suggestionValues.append(suggestions[i].color.serialized());
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
EventLogLogger.java 70 String suggestions = getSuggestions(suggestionCursor); local
72 EventLogTags.writeQsbClick(id, suggestions, null, numChars,
88 String suggestions = getSuggestions(suggestionCursor); local
89 EventLogTags.writeQsbExit(suggestions, numChars);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
SuggestionsAdapter.java 20 import com.android.quicksearchbox.Suggestions;
27 * Interface for suggestions adapters.
35 * Sets the listener to be notified of clicks on suggestions.
45 * Sets the current suggestions.
47 void setSuggestions(Suggestions suggestions);
50 * Indicates if there's any suggestions in this adapter.
55 * Gets the current suggestions.
57 Suggestions getSuggestions();
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwAutofillClient.java 43 AutofillSuggestion[] suggestions) {
61 mAutofillPopup.filterAndShow(suggestions);

Completed in 1489 milliseconds

12 3 4 5 6 7 8