Searched refs:TextChecker (Results 1 - 15 of 15) sorted by relevance

/external/webkit/Source/WebKit2/UIProcess/gtk/
H A DTextCheckerGtk.cpp28 #include "TextChecker.h"
39 const TextCheckerState& TextChecker::state()
45 bool TextChecker::isContinuousSpellCheckingAllowed()
51 void TextChecker::setContinuousSpellCheckingEnabled(bool isContinuousSpellCheckingEnabled)
56 void TextChecker::setGrammarCheckingEnabled(bool isGrammarCheckingEnabled)
61 int64_t TextChecker::uniqueSpellDocumentTag(WebPageProxy*)
67 void TextChecker::closeSpellDocumentWithTag(int64_t)
72 void TextChecker::checkSpellingOfString(int64_t, const UChar*, uint32_t, int32_t&, int32_t&)
77 void TextChecker::checkGrammarOfString(int64_t, const UChar*, uint32_t, Vector<WebCore::GrammarDetail>&, int32_t&, int32_t&)
82 bool TextChecker
[all...]
/external/webkit/Source/WebKit2/UIProcess/qt/
H A DTextCheckerQt.cpp27 #include "TextChecker.h"
38 const TextCheckerState& TextChecker::state()
45 bool TextChecker::isContinuousSpellCheckingAllowed()
52 void TextChecker::setContinuousSpellCheckingEnabled(bool isContinuousSpellCheckingEnabled)
57 void TextChecker::setGrammarCheckingEnabled(bool isGrammarCheckingEnabled)
62 int64_t TextChecker::uniqueSpellDocumentTag(WebPageProxy*)
68 void TextChecker::closeSpellDocumentWithTag(int64_t)
73 void TextChecker::checkSpellingOfString(int64_t, const UChar*, uint32_t, int32_t&, int32_t&)
78 void TextChecker::checkGrammarOfString(int64_t, const UChar*, uint32_t, Vector<WebCore::GrammarDetail>&, int32_t&, int32_t&)
83 bool TextChecker
[all...]
/external/webkit/Source/WebKit2/UIProcess/win/
H A DTextCheckerWin.cpp27 #include "TextChecker.h"
39 const TextCheckerState& TextChecker::state()
54 bool TextChecker::isContinuousSpellCheckingAllowed()
59 void TextChecker::setContinuousSpellCheckingEnabled(bool isContinuousSpellCheckingEnabled)
67 void TextChecker::setGrammarCheckingEnabled(bool isGrammarCheckingEnabled)
75 void TextChecker::continuousSpellCheckingEnabledStateChanged(bool enabled)
80 void TextChecker::grammarCheckingEnabledStateChanged(bool enabled)
85 int64_t TextChecker::uniqueSpellDocumentTag(WebPageProxy* page)
90 void TextChecker::closeSpellDocumentWithTag(int64_t tag)
95 void TextChecker
[all...]
H A DWebTextChecker.cpp29 #include "TextChecker.h"
64 TextChecker::continuousSpellCheckingEnabledStateChanged(enabled);
70 TextChecker::grammarCheckingEnabledStateChanged(enabled);
/external/webkit/Tools/Scripts/webkitpy/style/checkers/
H A Dtext.py34 class TextChecker(object): class in inherits:object
49 checker = TextChecker(filename, error)
H A Dtext_unittest.py35 from text import TextChecker namespace
81 """Tests TextChecker class."""
88 checker = TextChecker("foo.txt", self.mock_handle_style_error)
/external/webkit/Source/WebKit2/UIProcess/mac/
H A DTextCheckerMac.mm27 #import "TextChecker.h"
60 textCheckerState.isContinuousSpellCheckingEnabled = [[NSUserDefaults standardUserDefaults] boolForKey:WebContinuousSpellCheckingEnabled] && TextChecker::isContinuousSpellCheckingAllowed();
76 const TextCheckerState& TextChecker::state()
82 bool TextChecker::isContinuousSpellCheckingAllowed()
97 void TextChecker::setContinuousSpellCheckingEnabled(bool isContinuousSpellCheckingEnabled)
108 void TextChecker::setGrammarCheckingEnabled(bool isGrammarCheckingEnabled)
121 void TextChecker::setAutomaticSpellingCorrectionEnabled(bool isAutomaticSpellingCorrectionEnabled)
132 void TextChecker::setAutomaticQuoteSubstitutionEnabled(bool isAutomaticQuoteSubstitutionEnabled)
143 void TextChecker::setAutomaticDashSubstitutionEnabled(bool isAutomaticDashSubstitutionEnabled)
154 void TextChecker
[all...]
H A DWebPageProxyMac.mm36 #import "TextChecker.h"
265 TextChecker::setSmartInsertDeleteEnabled(isSmartInsertDeleteEnabled);
/external/webkit/Source/WebKit2/UIProcess/
H A DTextChecker.h37 class TextChecker { class in namespace:WebKit
H A DWebPageProxy.cpp42 #include "TextChecker.h"
145 , m_isSmartInsertDeleteEnabled(TextChecker::isSmartInsertDeleteEnabled())
174 TextChecker::closeSpellDocumentWithTag(m_spellDocumentTag);
2318 TextChecker::setAutomaticQuoteSubstitutionEnabled(!TextChecker::state().isAutomaticQuoteSubstitutionEnabled);
2323 TextChecker::setAutomaticDashSubstitutionEnabled(!TextChecker::state().isAutomaticDashSubstitutionEnabled);
2328 TextChecker::setAutomaticLinkDetectionEnabled(!TextChecker::state().isAutomaticLinkDetectionEnabled);
2333 TextChecker
[all...]
H A DWebProcessProxy.cpp32 #include "TextChecker.h"
425 send(Messages::WebProcess::SetTextCheckerState(TextChecker::state()), 0);
H A DWebContext.cpp35 #include "TextChecker.h"
250 parameters.textCheckerState = TextChecker::state();
/external/webkit/Source/WebKit2/UIProcess/API/mac/
H A DWKView.mm45 #import "TextChecker.h"
636 bool enabled = TextChecker::isContinuousSpellCheckingAllowed();
637 bool checked = enabled && TextChecker::state().isContinuousSpellCheckingEnabled;
643 bool checked = TextChecker::state().isGrammarCheckingEnabled;
649 bool checked = TextChecker::state().isAutomaticSpellingCorrectionEnabled;
667 bool checked = TextChecker::state().isAutomaticQuoteSubstitutionEnabled;
673 bool checked = TextChecker::state().isAutomaticDashSubstitutionEnabled;
679 bool checked = TextChecker::state().isAutomaticLinkDetectionEnabled;
685 bool checked = TextChecker::state().isAutomaticTextReplacementEnabled;
771 bool spellCheckingEnabled = !TextChecker
[all...]
/external/webkit/Tools/Scripts/webkitpy/style/
H A Dchecker.py43 from checkers.text import TextChecker namespace
518 checker = TextChecker(file_path, handle_style_error)
H A Dchecker_unittest.py58 from checkers.text import TextChecker namespace
410 """Assert that the dispatched checker is a TextChecker."""
411 self.assert_checker(file_path, TextChecker)

Completed in 132 milliseconds