Home
last modified time | relevance | path

Searched refs:suggestions (Results 1 – 25 of 74) sorted by relevance

123

/external/chromium/chrome/browser/extensions/
Dextension_omnibox_unittest.cc57 ExtensionOmniboxSuggestion suggestions; in TEST() local
58 suggestions.description.resize(10); in TEST()
59 EXPECT_TRUE(suggestions.ReadStylesFromValue(styles_value)); in TEST()
60 CompareClassification(styles_expected, suggestions.description_styles); in TEST()
66 EXPECT_TRUE(suggestions.ReadStylesFromValue(styles_value)); in TEST()
67 CompareClassification(styles_expected, suggestions.description_styles); in TEST()
93 ExtensionOmniboxSuggestion suggestions; in TEST() local
94 suggestions.description.resize(10); in TEST()
95 EXPECT_TRUE(suggestions.ReadStylesFromValue(styles_value)); in TEST()
96 CompareClassification(styles_expected, suggestions.description_styles); in TEST()
[all …]
Dextension_omnibox_api.cc111 ExtensionOmniboxSuggestions suggestions; in RunImpl() local
113 EXTENSION_FUNCTION_VALIDATE(args_->GetInteger(0, &suggestions.request_id)); in RunImpl()
116 suggestions.suggestions.resize(suggestions_value->GetSize()); in RunImpl()
118 ExtensionOmniboxSuggestion& suggestion = suggestions.suggestions[i]; in RunImpl()
142 Details<ExtensionOmniboxSuggestions>(&suggestions)); in RunImpl()
Dextension_omnibox_api.h77 std::vector<ExtensionOmniboxSuggestion> suggestions; member
/external/chromium/chrome/browser/resources/options/
Dautocomplete_list.js132 set suggestions(suggestions) { setter in AutocompleteList
133 this.dataModel = new ArrayDataModel(suggestions);
134 this.hidden = !this.targetInput_ || suggestions.length == 0;
179 this.suggestions = []; property
202 this.suggestions = [];
207 this.suggestions = []; property
Dbrowser_options.js440 updateAutocompleteSuggestions_: function(suggestions) { argument
447 list.suggestions = suggestions;
468 BrowserOptions.updateAutocompleteSuggestions = function(suggestions) { argument
469 BrowserOptions.getInstance().updateAutocompleteSuggestions_(suggestions);
/external/chromium/chrome/browser/
Dautocomplete_history_manager.cc190 std::vector<string16> suggestions = autofill_result->GetValue(); in OnWebDataServiceRequestDone() local
191 SendSuggestions(&suggestions); in OnWebDataServiceRequestDone()
217 const std::vector<string16>* suggestions) { in SendSuggestions() argument
218 if (suggestions) { in SendSuggestions()
220 for (size_t i = 0; i < suggestions->size(); ++i) { in SendSuggestions()
224 if (autofill_values_[j] == (*suggestions)[i]) { in SendSuggestions()
231 autofill_values_.push_back((*suggestions)[i]); in SendSuggestions()
Dspellchecker_platform_engine_unittest.cc322 std::vector<string16> suggestions; in TEST() local
323 SpellCheckerPlatform::FillSuggestionList(word, &suggestions); in TEST()
326 for (size_t j = 0; j < suggestions.size(); j++) { in TEST()
327 if (suggestions[j].compare(suggested_word) == 0) { in TEST()
Dspellcheck_message_filter.cc46 std::vector<string16>* suggestions) { in OnPlatformFillSuggestionList() argument
47 SpellCheckerPlatform::FillSuggestionList(word, suggestions); in OnPlatformFillSuggestionList()
Dspellcheck_message_filter.h24 std::vector<string16>* suggestions);
Dautocomplete_history_manager.h58 void SendSuggestions(const std::vector<string16>* suggestions);
/external/chromium/chrome/browser/userfeedback/proto/
Dweb.proto33 // - Not set if no suggestions were shown, either because the version of
34 // the client did not support suggestions, suggestions were disabled or
35 // no matching suggestions were found.
37 // - Empty string if suggestions were shown but the user hasn't chosen
Dextension.proto98 // A query for suggestions, sent when the user hits the preview button.
/external/webkit/Tools/DumpRenderTree/chromium/
DMockSpellCheck.cpp94 void MockSpellCheck::fillSuggestionList(const WebString& word, Vector<WebString>* suggestions) in fillSuggestionList() argument
97 suggestions->append(WebString::fromUTF8("welcome")); in fillSuggestionList()
DMockSpellCheck.h65 void fillSuggestionList(const WebKit::WebString& word, Vector<WebKit::WebString>* suggestions);
DEventSender.cpp757 Vector<WebString> suggestions; in makeMenuItemStringsFor() local
758 spellcheck->fillSuggestionList(contextMenu->misspelledWord, &suggestions); in makeMenuItemStringsFor()
759 for (size_t i = 0; i < suggestions.size(); ++i) in makeMenuItemStringsFor()
760 strings.append(suggestions[i]); in makeMenuItemStringsFor()
/external/chromium/chrome/browser/autocomplete/
Dkeyword_provider.cc479 const ExtensionOmniboxSuggestions& suggestions = in Observe() local
481 if (suggestions.request_id != current_input_id_) in Observe()
492 for (size_t i = 0; i < suggestions.suggestions.size(); ++i) { in Observe()
494 suggestions.suggestions[i]; in Observe()
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
DTextCheckerClientEnchant.cpp150 … gchar** suggestions = enchant_dict_suggest(dict, word.utf8().data(), -1, &numberOfSuggestions); in getGuessesForWord() local
153 guesses.append(String::fromUTF8(suggestions[i])); in getGuessesForWord()
156 enchant_dict_free_suggestions(dict, suggestions); in getGuessesForWord()
/external/webkit/Source/WebCore/editing/
DSpellingCorrectionController.cpp306 Vector<String> suggestions; in correctionPanelTimerFired() local
307 …textChecker()->getGuessesForWord(m_correctionPanelInfo.replacedString, paragraphText, suggestions); in correctionPanelTimerFired()
308 if (suggestions.isEmpty()) { in correctionPanelTimerFired()
312 String topSuggestion = suggestions.first(); in correctionPanelTimerFired()
313 suggestions.remove(0); in correctionPanelTimerFired()
317 …anelInfo.panelType, boundingBox, m_correctionPanelInfo.replacedString, topSuggestion, suggestions); in correctionPanelTimerFired()
/external/chromium/chrome/browser/autofill/
Dautofill_manager_unittest.cc811 std::vector<string16> suggestions; in TEST_F() local
812 suggestions.push_back(ASCIIToUTF16("Jay")); in TEST_F()
813 suggestions.push_back(ASCIIToUTF16("Jason")); in TEST_F()
814 AutocompleteSuggestionsReturned(suggestions); in TEST_F()
999 std::vector<string16> suggestions; in TEST_F() local
1000 suggestions.push_back(ASCIIToUTF16("Jay")); in TEST_F()
1001 suggestions.push_back(ASCIIToUTF16("Jason")); in TEST_F()
1002 AutocompleteSuggestionsReturned(suggestions); in TEST_F()
1238 std::vector<string16> suggestions; in TEST_F() local
1239 suggestions.push_back(ASCIIToUTF16("Jay")); in TEST_F()
[all …]
/external/llvm/
DREADME.txt15 suggestions.
/external/webkit/Source/WebKit/android/WebCoreSupport/autofill/
DWebAutofill.cpp169 bool suggestions = mAutofillManager->OnQueryFormFieldAutoFillWrapper(*form, *formField); in formFieldFocused() local
172 if (!suggestions) { in formFieldFocused()
/external/chromium/chrome/browser/ui/webui/options/
Dbrowser_options_handler.cc436 ListValue suggestions; in OnResultChanged() local
450 suggestions.Append(entry); in OnResultChanged()
454 "BrowserOptions.updateAutocompleteSuggestions", suggestions); in OnResultChanged()
/external/e2fsprogs/
DREADME17 suggestions of what sort of information to include when submitting bug
/external/chromium/third_party/libevent/
DREADME26 The following people have helped with suggestions, ideas, code or
/external/chromium/chrome/browser/instant/
Dinstant_loader.cc227 const std::vector<std::string>& suggestions,
562 const std::vector<std::string>& suggestions, in OnSetSuggestions() argument
569 if (suggestions.empty()) in OnSetSuggestions()
572 loader_->SetCompleteSuggestedText(UTF8ToUTF16(suggestions[0]), behavior); in OnSetSuggestions()

123