OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:dictionary_change
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/chrome/browser/spellchecker/
spellcheck_custom_dictionary.cc
237
Change
dictionary_change
;
local
238
dictionary_change
.AddWord(word);
239
int result =
dictionary_change
.Sanitize(GetWords());
240
Apply(
dictionary_change
);
241
Notify(
dictionary_change
);
242
Sync(
dictionary_change
);
243
Save(
dictionary_change
);
249
Change
dictionary_change
;
local
250
dictionary_change
.RemoveWord(word);
251
int result =
dictionary_change
.Sanitize(GetWords())
366
Change
dictionary_change
;
local
[
all
...]
spellcheck_custom_dictionary.h
74
virtual void OnCustomDictionaryChanged(const Change&
dictionary_change
) = 0;
134
// Applies the change in |
dictionary_change
| to the custom spellcheck
135
// dictionary. Assumes that |
dictionary_change
| has been sanitized.
137
const Change&
dictionary_change
,
146
// Applies the |
dictionary_change
| to the in-memory copy of the dictionary.
147
// Assumes that words in |
dictionary_change
| are sorted.
148
void Apply(const Change&
dictionary_change
);
150
// Schedules a write of |
dictionary_change
| to disk. Assumes that words in
151
// |
dictionary_change
| are sorted.
152
void Save(const Change&
dictionary_change
);
[
all
...]
spellcheck_service.cc
224
const SpellcheckCustomDictionary::Change&
dictionary_change
) {
229
dictionary_change
.to_add(),
230
dictionary_change
.to_remove()));
spellcheck_service.h
119
const SpellcheckCustomDictionary::Change&
dictionary_change
) OVERRIDE;
spellcheck_custom_dictionary_unittest.cc
86
const SpellcheckCustomDictionary::Change&
dictionary_change
,
88
SpellcheckCustomDictionary::UpdateDictionaryFile(
dictionary_change
, path);
[
all
...]
/external/chromium_org/chrome/browser/sync/test/integration/
dictionary_load_observer.cc
19
const SpellcheckCustomDictionary::Change&
dictionary_change
) {
dictionary_helper.cc
184
SpellcheckCustomDictionary::Change
dictionary_change
;
local
185
dictionary_change
.AddWord(word);
187
GetDictionary(index),
dictionary_change
);
190
GetVerifierDictionary(),
dictionary_change
);
196
SpellcheckCustomDictionary::Change
dictionary_change
;
local
197
dictionary_change
.RemoveWord(word);
199
GetDictionary(index),
dictionary_change
);
202
GetVerifierDictionary(),
dictionary_change
);
dictionary_load_observer.h
22
const SpellcheckCustomDictionary::Change&
dictionary_change
) OVERRIDE;
/external/chromium_org/chrome/browser/ui/webui/options/
language_dictionary_overlay_handler.cc
73
const SpellcheckCustomDictionary::Change&
dictionary_change
) {
76
add_words.AppendStrings(
dictionary_change
.to_add());
77
remove_words.AppendStrings(
dictionary_change
.to_remove());
language_dictionary_overlay_handler.h
29
const SpellcheckCustomDictionary::Change&
dictionary_change
) OVERRIDE;
Completed in 324 milliseconds