Searched refs:SpellcheckAction (Results 1 – 6 of 6) sorted by relevance
/external/chromium_org/chrome/browser/spellchecker/ |
D | spellcheck_action_unittest.cc | 14 static const SpellcheckAction::SpellcheckActionType kFinalActions[] = { in TEST() 15 SpellcheckAction::TYPE_ADD_TO_DICT, in TEST() 16 SpellcheckAction::TYPE_IGNORE, in TEST() 17 SpellcheckAction::TYPE_IN_DICTIONARY, in TEST() 18 SpellcheckAction::TYPE_MANUALLY_CORRECTED, in TEST() 19 SpellcheckAction::TYPE_NO_ACTION, in TEST() 20 SpellcheckAction::TYPE_SELECT, in TEST() 22 SpellcheckAction action; in TEST() 30 static const SpellcheckAction::SpellcheckActionType kPendingActions[] = { in TEST() 31 SpellcheckAction::TYPE_PENDING, in TEST() [all …]
|
D | spellcheck_action.cc | 10 SpellcheckAction::SpellcheckAction() : type(TYPE_PENDING), index(-1) {} in SpellcheckAction() function in SpellcheckAction 12 SpellcheckAction::SpellcheckAction(SpellcheckActionType type, in SpellcheckAction() function in SpellcheckAction 17 SpellcheckAction::~SpellcheckAction() {} in ~SpellcheckAction() 19 bool SpellcheckAction::IsFinal() const { in IsFinal() 28 void SpellcheckAction::Finalize() { in Finalize() 42 base::DictionaryValue* SpellcheckAction::Serialize() const { in Serialize()
|
D | spellcheck_action.h | 15 class SpellcheckAction { 48 SpellcheckAction(); 49 SpellcheckAction(SpellcheckActionType type, int index, base::string16 value); 50 ~SpellcheckAction();
|
D | feedback_sender.cc | 187 misspelling->action.type = SpellcheckAction::TYPE_SELECT; in SelectedSuggestion() 198 misspelling->action.type = SpellcheckAction::TYPE_ADD_TO_DICT; in AddedToDictionary() 208 duplicate_misspelling->action.type = SpellcheckAction::TYPE_ADD_TO_DICT; in AddedToDictionary() 219 misspelling->action.type = SpellcheckAction::TYPE_IN_DICTIONARY; in RecordInDictionary() 228 misspelling->action.type = SpellcheckAction::TYPE_PENDING_IGNORE; in IgnoredSuggestions() 239 misspelling->action.type = SpellcheckAction::TYPE_MANUALLY_CORRECTED; in ManuallyCorrected()
|
D | misspelling.h | 66 SpellcheckAction action;
|
D | misspelling.cc | 26 base::Value* BuildUserActionValue(const SpellcheckAction& action) { in BuildUserActionValue()
|