Home
last modified time | relevance | path

Searched refs:Misspelling (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/chrome/browser/spellchecker/
Dfeedback_unittest.cc32 Misspelling misspelling; in AddMisspelling()
44 Misspelling* result = feedback_.GetMisspelling(kMisspellingHash); in TEST_F()
45 EXPECT_NE(static_cast<Misspelling*>(NULL), result); in TEST_F()
57 Misspelling* removed_misspelling = in TEST_F()
59 EXPECT_NE(static_cast<Misspelling*>(NULL), removed_misspelling); in TEST_F()
61 Misspelling* remaining_misspelling = in TEST_F()
63 EXPECT_NE(static_cast<Misspelling*>(NULL), remaining_misspelling); in TEST_F()
73 std::vector<Misspelling> misspellings = feedback_.GetAllMisspellings(); in TEST_F()
88 const std::vector<Misspelling>& renderer_with_misspellings = in TEST_F()
92 const std::vector<Misspelling>& renderer_without_misspellings = in TEST_F()
[all …]
Dmisspelling.cc34 Misspelling::Misspelling() in Misspelling() function in Misspelling
38 Misspelling::Misspelling(const base::string16& context, in Misspelling() function in Misspelling
51 Misspelling::~Misspelling() { in ~Misspelling()
54 base::DictionaryValue* Misspelling::Serialize() const { in Serialize()
68 base::string16 Misspelling::GetMisspelledString() const { in GetMisspelledString()
Dfeedback.h40 Misspelling* GetMisspelling(uint32 hash);
54 std::vector<Misspelling> GetMisspellingsInRenderer(
66 void AddMisspelling(int renderer_process_id, const Misspelling& misspelling);
78 std::vector<Misspelling> GetAllMisspellings() const;
88 typedef std::map<uint32, Misspelling> HashMisspellingMap;
Dmisspelling.h31 class Misspelling {
33 Misspelling();
34 Misspelling(const base::string16& context,
39 ~Misspelling();
Dfeedback.cc32 Misspelling* Feedback::GetMisspelling(uint32 hash) { in GetMisspelling()
69 std::vector<Misspelling> Feedback::GetMisspellingsInRenderer( in GetMisspellingsInRenderer()
71 std::vector<Misspelling> misspellings_in_renderer; in GetMisspellingsInRenderer()
101 const Misspelling& misspelling = misspelling_it->second; in EraseFinalizedMisspellings()
117 const Misspelling& misspelling) { in AddMisspelling()
121 const Misspelling& existing_misspelling = misspelling_it->second; in AddMisspelling()
162 std::vector<Misspelling> Feedback::GetAllMisspellings() const { in GetAllMisspellings()
163 std::vector<Misspelling> all_misspellings; in GetAllMisspellings()
Dfeedback_sender.cc76 Misspelling BuildFeedback(const SpellCheckResult& result, in BuildFeedback()
83 return Misspelling(context, in BuildFeedback()
92 const std::vector<Misspelling>& suggestions, in BuildSuggestionInfo()
95 for (std::vector<Misspelling>::const_iterator suggestion_it = in BuildSuggestionInfo()
182 Misspelling* misspelling = feedback_.GetMisspelling(hash); in SelectedSuggestion()
193 Misspelling* misspelling = feedback_.GetMisspelling(hash); in AddedToDictionary()
205 Misspelling* duplicate_misspelling = feedback_.GetMisspelling(*hash_it); in AddedToDictionary()
214 Misspelling* misspelling = feedback_.GetMisspelling(hash); in RecordInDictionary()
223 Misspelling* misspelling = feedback_.GetMisspelling(hash); in IgnoredSuggestions()
234 Misspelling* misspelling = feedback_.GetMisspelling(hash); in ManuallyCorrected()
[all …]
Dmisspelling_unittest.cc15 Misspelling misspelling; in TEST()
37 Misspelling misspelling; in TEST()
Dfeedback_sender.h129 void SendFeedback(const std::vector<Misspelling>& feedback_data,