HomeSort by relevance Sort by last modified time
    Searched refs:TextCheckerState (Results 1 - 9 of 9) sorted by null

  /external/webkit/Source/WebKit2/Shared/
TextCheckerState.h 33 struct TextCheckerState {
49 template<> struct ArgumentCoder<WebKit::TextCheckerState> : SimpleArgumentCoder<WebKit::TextCheckerState> { };
WebProcessCreationParameters.h 31 #include "TextCheckerState.h"
74 TextCheckerState textCheckerState;
  /external/webkit/Source/WebKit2/UIProcess/
TextChecker.h 35 struct TextCheckerState;
39 static const TextCheckerState& state();
  /external/webkit/Source/WebKit2/UIProcess/gtk/
TextCheckerGtk.cpp 30 #include "TextCheckerState.h"
37 static TextCheckerState textCheckerState;
39 const TextCheckerState& TextChecker::state()
42 return textCheckerState;
  /external/webkit/Source/WebKit2/UIProcess/qt/
TextCheckerQt.cpp 29 #include "TextCheckerState.h"
36 static TextCheckerState textCheckerState;
38 const TextCheckerState& TextChecker::state()
42 return textCheckerState;
  /external/webkit/Source/WebKit2/WebProcess/
WebProcess.h 35 #include "TextCheckerState.h"
113 const TextCheckerState& textCheckerState() const { return m_textCheckerState; }
164 void setTextCheckerState(const TextCheckerState&);
214 TextCheckerState m_textCheckerState;
WebProcess.cpp 206 m_textCheckerState = parameters.textCheckerState;
813 void WebProcess::setTextCheckerState(const TextCheckerState& textCheckerState)
815 bool continuousSpellCheckingTurnedOff = !textCheckerState.isContinuousSpellCheckingEnabled && m_textCheckerState.isContinuousSpellCheckingEnabled;
816 bool grammarCheckingTurnedOff = !textCheckerState.isGrammarCheckingEnabled && m_textCheckerState.isGrammarCheckingEnabled;
818 m_textCheckerState = textCheckerState;
  /external/webkit/Source/WebKit2/UIProcess/win/
TextCheckerWin.cpp 29 #include "TextCheckerState.h"
37 static TextCheckerState textCheckerState;
39 const TextCheckerState& TextChecker::state()
43 return textCheckerState;
46 textCheckerState.isContinuousSpellCheckingEnabled = client.continuousSpellCheckingEnabled();
47 textCheckerState.isGrammarCheckingEnabled = client.grammarCheckingEnabled();
51 return textCheckerState;
63 textCheckerState.isContinuousSpellCheckingEnabled = isContinuousSpellCheckingEnabled;
71 textCheckerState.isGrammarCheckingEnabled = isGrammarCheckingEnabled
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/mac/
TextCheckerMac.mm 29 #import "TextCheckerState.h"
52 TextCheckerState textCheckerState;
60 textCheckerState.isContinuousSpellCheckingEnabled = [[NSUserDefaults standardUserDefaults] boolForKey:WebContinuousSpellCheckingEnabled] && TextChecker::isContinuousSpellCheckingAllowed();
61 textCheckerState.isGrammarCheckingEnabled = [[NSUserDefaults standardUserDefaults] boolForKey:WebGrammarCheckingEnabled];
62 textCheckerState.isAutomaticSpellingCorrectionEnabled = [[NSUserDefaults standardUserDefaults] boolForKey:WebAutomaticSpellingCorrectionEnabled];
63 textCheckerState.isAutomaticQuoteSubstitutionEnabled = [[NSUserDefaults standardUserDefaults] boolForKey:WebAutomaticQuoteSubstitutionEnabled];
64 textCheckerState.isAutomaticDashSubstitutionEnabled = [[NSUserDefaults standardUserDefaults] boolForKey:WebAutomaticDashSubstitutionEnabled];
65 textCheckerState.isAutomaticLinkDetectionEnabled = [[NSUserDefaults standardUserDefaults] boolForKey:WebAutomaticLinkDetectionEnabled];
66 textCheckerState.isAutomaticTextReplacementEnabled = [[NSUserDefaults standardUserDefaults] boolForKey:WebAutomatic (…)
    [all...]

Completed in 86 milliseconds