HomeSort by relevance Sort by last modified time
    Searched full:spellchecker (Results 1 - 25 of 151) sorted by null

1 2 3 4 5 6 7

  /external/chromium/chrome/browser/
spellchecker_platform_engine.h 5 // This file defines the interface that any platform-specific spellchecker
22 // Get the languages supported by the platform spellchecker and store them in
24 // Chromium style codes (en-US not en_US). See spellchecker.cc for a full list.
27 // Returns true if there is a platform-specific spellchecker that can be used.
30 // Returns true if the platform spellchecker has a spelling panel.
33 // Returns true if the platform spellchecker panel is visible.
43 // Do any initialization needed for spellchecker.
49 // supports. If the platform-specific spellchecker supports the language,
53 // Sets the language for the platform-specific spellchecker.
57 // spellchecker. Returns true if the word is spelled correctly
    [all...]
spellchecker_linux.cc 5 // If linux ever gains a platform specific spellchecker, it will be
13 // As of Summer 2009, there is no commonly accepted platform spellchecker
spellchecker_win.cc 5 // If windows ever gains a platform specific spellchecker, it will be
13 // No current version of Windows (as of Summer 2009) has a common spellchecker
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_platform_mac.h 5 // This file defines the interface that any platform-specific spellchecker
29 // Get the languages supported by the platform spellchecker and store them in
31 // Chromium style codes (en-US not en_US). See spellchecker.cc for a full list.
34 // Returns true if there is a platform-specific spellchecker that can be used.
37 // Returns true if the platform spellchecker has a spelling panel.
40 // Returns true if the platform spellchecker panel is visible.
52 // supports. If the platform-specific spellchecker supports the language,
56 // Sets the language for the platform-specific spellchecker.
60 // spellchecker. Returns true if the word is spelled correctly.
78 // Tells the platform spellchecker to ignore a word. This doesn't take a ta
    [all...]
spellcheck_dictionary.h 10 // Defines a dictionary for use in the spellchecker system and provides access
spellcheck_message_filter.cc 5 #include "chrome/browser/spellchecker/spellcheck_message_filter.h"
13 #include "chrome/browser/spellchecker/spellcheck_factory.h"
14 #include "chrome/browser/spellchecker/spellcheck_host_metrics.h"
15 #include "chrome/browser/spellchecker/spellcheck_service.h"
16 #include "chrome/browser/spellchecker/spelling_service_client.h"
71 // The renderer has requested that we initialize its spellchecker. This should
79 // The spellchecker initialization already started and finished; just send
spellcheck_message_filter_unittest.cc 6 #include "chrome/browser/spellchecker/spellcheck_factory.h"
7 #include "chrome/browser/spellchecker/spellcheck_message_filter.h"
8 #include "chrome/browser/spellchecker/spellcheck_service.h"
spellcheck_service_unittest.cc 9 #include "chrome/browser/spellchecker/spellcheck_custom_dictionary.h"
10 #include "chrome/browser/spellchecker/spellcheck_factory.h"
11 #include "chrome/browser/spellchecker/spellcheck_service.h"
spellcheck_factory.cc 5 #include "chrome/browser/spellchecker/spellcheck_factory.h"
10 #include "chrome/browser/spellchecker/spellcheck_service.h"
  /frameworks/base/core/java/android/service/textservice/
package.html 30 android:resource="@xml/spellchecker" />
35 href="{@docRoot}resources/samples/SpellChecker/SampleSpellCheckerService/index.html">Spell
37 href="{@docRoot}resources/samples/SpellChecker/HelloSpellChecker/index.html">Spell
  /external/chromium/chrome/common/
spellcheck_common.h 26 // Get SpellChecker supported languages.
spellcheck_messages.h 39 // Passes some initialization params to the renderer's spellchecker. This can
64 // This message tells the spellchecker that a document, identified by an int
  /external/chromium_org/chrome/renderer/spellchecker/
cocoa_spelling_engine_mac.h 9 #include "chrome/renderer/spellchecker/spelling_engine.h"
spellcheck_worditerator.h 5 // Defines an iterator class that enumerates words supported by our spellchecker
7 // not supported by our spellchecker.
20 // SpellcheckWordIterator. When we set the spellchecker language, this class
22 // spellchecker. (Please read the comment in the SpellcheckWordIterator class
29 // Sets the language of the spellchecker. When this function is called with an
79 // words that our spellchecker can check their spellings, this class uses custom
81 // normalizes extracted words so our spellchecker can check the spellings of
85 // when changing the encoding of this string for our spellchecker. (Chrome can
147 // not supported by our spellchecker, e.g. ligatures, combining/ characters,
149 // alternative characters supported by our spellchecker. This function als
    [all...]
spellcheck_language.h 15 #include "chrome/renderer/spellchecker/spellcheck_worditerator.h"
28 // If the spellchecker failed to initialize, always returns true.
61 // Represents word iterators used in this spellchecker. The |text_iterator_|
custom_dictionary_engine_unittest.cc 6 #include "chrome/renderer/spellchecker/custom_dictionary_engine.h"
spellcheck_language.cc 5 #include "chrome/renderer/spellchecker/spellcheck_language.h"
8 #include "chrome/renderer/spellchecker/spellcheck_worditerator.h"
9 #include "chrome/renderer/spellchecker/spelling_engine.h"
73 // Found a word (or a contraction) that the spellchecker can check the
spellcheck_provider_test.cc 5 #include "chrome/renderer/spellchecker/spellcheck_provider_test.h"
10 #include "chrome/renderer/spellchecker/spellcheck.h"
spellcheck.h 16 #include "chrome/renderer/spellchecker/custom_dictionary_engine.h"
17 #include "chrome/renderer/spellchecker/spellcheck_language.h"
61 // If the spellchecker failed to initialize, always returns true.
78 // If the spellchecker failed to initialize, always returns true.
86 // NOTE: If using the platform spellchecker, this will send a *lot* of sync
  /external/chromium_org/third_party/WebKit/Source/core/editing/
SpellChecker.cpp 28 #include "core/editing/SpellChecker.h"
63 PassOwnPtr<SpellChecker> SpellChecker::create(Frame& frame)
65 return adoptPtr(new SpellChecker(frame));
74 SpellCheckerClient& SpellChecker::spellCheckerClient() const
81 TextCheckerClient& SpellChecker::textChecker() const
86 SpellChecker::SpellChecker(Frame& frame)
92 SpellChecker::~SpellChecker()
    [all...]
SpellChecker.h 45 class SpellChecker {
46 WTF_MAKE_NONCOPYABLE(SpellChecker);
48 static PassOwnPtr<SpellChecker> create(Frame&);
50 ~SpellChecker();
91 explicit SpellChecker(Frame&);
  /external/chromium_org/chrome/browser/sync/test/integration/
dictionary_load_observer.h 9 #include "chrome/browser/spellchecker/spellcheck_custom_dictionary.h"
  /external/chromium_org/chrome/
chrome_renderer.gypi 325 'renderer/spellchecker/cocoa_spelling_engine_mac.cc',
326 'renderer/spellchecker/cocoa_spelling_engine_mac.h',
327 'renderer/spellchecker/custom_dictionary_engine.cc',
328 'renderer/spellchecker/custom_dictionary_engine.h',
329 'renderer/spellchecker/hunspell_engine.cc',
330 'renderer/spellchecker/hunspell_engine.h',
331 'renderer/spellchecker/spellcheck_provider.cc',
332 'renderer/spellchecker/spellcheck_provider.h',
333 'renderer/spellchecker/spellcheck.cc',
334 'renderer/spellchecker/spellcheck.h'
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
Frame.h 71 class SpellChecker;
150 SpellChecker& spellChecker() const;
230 const OwnPtr<SpellChecker> m_spellChecker;
290 inline SpellChecker& Frame::spellChecker() const
  /external/chromium_org/chrome/browser/extensions/api/spellcheck/
spellcheck_api.cc 9 #include "chrome/browser/spellchecker/spellcheck_factory.h"
10 #include "chrome/browser/spellchecker/spellcheck_service.h"

Completed in 676 milliseconds

1 2 3 4 5 6 7