OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CheckSpelling
(Results
1 - 15
of
15
) sorted by null
/external/chromium/chrome/browser/
spellchecker_platform_engine_unittest.cc
27
EXPECT_FALSE(SpellCheckerPlatform::
CheckSpelling
(word, doc_tag)) << word;
33
EXPECT_TRUE(SpellCheckerPlatform::
CheckSpelling
(word, doc_tag)) << word;
40
EXPECT_FALSE(SpellCheckerPlatform::
CheckSpelling
(word, doc_tag)) << word;
319
EXPECT_FALSE(SpellCheckerPlatform::
CheckSpelling
(word, 0)) << word;
spellchecker_linux.cc
43
bool
CheckSpelling
(const string16& word_to_check, int tag) {
spellchecker_platform_engine.h
58
bool
CheckSpelling
(const string16& word_to_check, int tag);
spellchecker_win.cc
43
bool
CheckSpelling
(const string16& word_to_check, int tag) {
spellcheck_message_filter.cc
41
*correct = SpellCheckerPlatform::
CheckSpelling
(word, tag);
/external/chromium_org/chrome/renderer/spellchecker/
cocoa_spelling_engine_mac.h
16
virtual bool
CheckSpelling
(const base::string16& word_to_check,
spelling_engine.h
27
virtual bool
CheckSpelling
(const base::string16& word_to_check, int tag) = 0;
cocoa_spelling_engine_mac.cc
31
bool CocoaSpellingEngine::
CheckSpelling
(const base::string16& word_to_check,
hunspell_engine.h
32
virtual bool
CheckSpelling
(const base::string16& word_to_check,
spellcheck_language.cc
75
if (platform_spelling_engine_->
CheckSpelling
(word, tag))
118
if (!platform_spelling_engine_->
CheckSpelling
(word, tag))
hunspell_engine.cc
77
bool HunspellEngine::
CheckSpelling
(const base::string16& word_to_check,
spellcheck_unittest.cc
80
bool
CheckSpelling
(const std::string& word, int tag) {
81
return spell_check_->spellcheck_.platform_spelling_engine_->
CheckSpelling
(
[
all
...]
/external/chromium_org/chrome/browser/spellchecker/
spellcheck_platform_mac_unittest.cc
67
EXPECT_FALSE(spellcheck_mac::
CheckSpelling
(word, doc_tag)) << word;
73
EXPECT_TRUE(spellcheck_mac::
CheckSpelling
(word, doc_tag)) << word;
80
EXPECT_FALSE(spellcheck_mac::
CheckSpelling
(word, doc_tag)) << word;
359
EXPECT_FALSE(spellcheck_mac::
CheckSpelling
(word, 0)) << word;
spellcheck_platform_mac.h
61
bool
CheckSpelling
(const base::string16& word_to_check, int tag);
spellcheck_message_filter_mac.cc
251
*correct = spellcheck_mac::
CheckSpelling
(word, ToDocumentTag(route_id));
Completed in 243 milliseconds