Searched refs:isContinuousSpellCheckingEnabled (Results 1 - 25 of 44) sorted by relevance

12

/macosx-10.9.5/WebKit2-7537.78.2/Shared/
H A DTextCheckerState.h34 bool isContinuousSpellCheckingEnabled; member in struct:WebKit::TextCheckerState
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/gtk/
H A DTextCheckerGtk.cpp47 textCheckerState.isContinuousSpellCheckingEnabled = client.continuousSpellCheckingEnabled();
60 void TextChecker::setContinuousSpellCheckingEnabled(bool isContinuousSpellCheckingEnabled) argument
62 if (state().isContinuousSpellCheckingEnabled == isContinuousSpellCheckingEnabled)
64 textCheckerState.isContinuousSpellCheckingEnabled = isContinuousSpellCheckingEnabled;
65 WebTextChecker::shared()->client().setContinuousSpellCheckingEnabled(isContinuousSpellCheckingEnabled);
78 textCheckerState.isContinuousSpellCheckingEnabled = enabled;
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/efl/
H A DTextCheckerEfl.cpp52 textCheckerState.isContinuousSpellCheckingEnabled = false;
66 void TextChecker::setContinuousSpellCheckingEnabled(bool isContinuousSpellCheckingEnabled) argument
69 if (state().isContinuousSpellCheckingEnabled == isContinuousSpellCheckingEnabled)
72 textCheckerState.isContinuousSpellCheckingEnabled = isContinuousSpellCheckingEnabled;
75 WebTextChecker::shared()->client().setContinuousSpellCheckingEnabled(isContinuousSpellCheckingEnabled);
77 UNUSED_PARAM(isContinuousSpellCheckingEnabled);
89 if (state().isContinuousSpellCheckingEnabled == enabled)
92 textCheckerState.isContinuousSpellCheckingEnabled
[all...]
H A DTextCheckerClientEfl.h45 bool isContinuousSpellCheckingEnabled() const;
H A DTextCheckerClientEfl.cpp87 bool TextCheckerClientEfl::isContinuousSpellCheckingEnabled() const function in class:TextCheckerClientEfl
133 return TextChecker::state().isContinuousSpellCheckingEnabled;
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/efl/
H A Dewk_text_checker.cpp64 return TextCheckerClientEfl::instance().isContinuousSpellCheckingEnabled();
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/mac/
H A DTextCheckerMac.mm95 textCheckerState.isContinuousSpellCheckingEnabled = [[NSUserDefaults standardUserDefaults] boolForKey:WebContinuousSpellCheckingEnabled] && TextChecker::isContinuousSpellCheckingAllowed();
127 void TextChecker::setContinuousSpellCheckingEnabled(bool isContinuousSpellCheckingEnabled)
129 if (state().isContinuousSpellCheckingEnabled == isContinuousSpellCheckingEnabled)
132 textCheckerState.isContinuousSpellCheckingEnabled = isContinuousSpellCheckingEnabled;
133 [[NSUserDefaults standardUserDefaults] setBool:isContinuousSpellCheckingEnabled forKey:WebContinuousSpellCheckingEnabled];
276 textCheckerState.isContinuousSpellCheckingEnabled = enabled;
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/qt/
H A DTextCheckerQt.cpp52 void TextChecker::setContinuousSpellCheckingEnabled(bool isContinuousSpellCheckingEnabled) argument
/macosx-10.9.5/WebKit-7537.78.2/qt/WebCoreSupport/
H A DEditorClientQt.h54 virtual bool isContinuousSpellCheckingEnabled();
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-WebKit/PyObjCTest/
H A Dtest_webview.py55 self.failUnlessResultIsBOOL(WebView.isContinuousSpellCheckingEnabled)
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-WebKit/PyObjCTest/
H A Dtest_webview.py55 self.assertResultIsBOOL(WebView.isContinuousSpellCheckingEnabled)
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DEditorClient.h73 virtual bool isContinuousSpellCheckingEnabled() = 0;
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebCoreSupport/
H A DEditorClientBlackBerry.h44 virtual bool isContinuousSpellCheckingEnabled();
H A DEditorClientBlackBerry.cpp121 bool EditorClientBlackBerry::isContinuousSpellCheckingEnabled() function in class:WebCore::EditorClientBlackBerry
134 if (isContinuousSpellCheckingEnabled())
/macosx-10.9.5/WebKit-7537.78.2/efl/WebCoreSupport/
H A DEditorClientEfl.h88 virtual bool isContinuousSpellCheckingEnabled();
H A DEditorClientEfl.cpp64 bool EditorClientEfl::isContinuousSpellCheckingEnabled() function in class:WebCore::EditorClientEfl
/macosx-10.9.5/WebKit-7537.78.2/gtk/WebCoreSupport/
H A DEditorClientGtk.h79 virtual bool isContinuousSpellCheckingEnabled();
/macosx-10.9.5/WebKit-7537.78.2/win/WebCoreSupport/
H A DWebEditorClient.h46 virtual bool isContinuousSpellCheckingEnabled();
H A DWebEditorClient.cpp149 bool WebEditorClient::isContinuousSpellCheckingEnabled() function in class:WebEditorClient
152 if (FAILED(m_webView->isContinuousSpellCheckingEnabled(&enabled)))
/macosx-10.9.5/WebKit-7537.78.2/wince/WebCoreSupport/
H A DEditorClientWinCE.h46 virtual bool isContinuousSpellCheckingEnabled();
/macosx-10.9.5/WebKit-7537.78.2/mac/WebCoreSupport/
H A DWebEditorClient.h48 virtual bool isContinuousSpellCheckingEnabled() OVERRIDE;
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebCoreSupport/
H A DWebEditorClient.h50 virtual bool isContinuousSpellCheckingEnabled() OVERRIDE;
H A DWebEditorClient.cpp101 bool WebEditorClient::isContinuousSpellCheckingEnabled() function in class:WebKit::WebEditorClient
103 return WebProcess::shared().textCheckerState().isContinuousSpellCheckingEnabled;
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DEditor.cpp477 if (m_frame->selection()->isInPasswordField() || !isContinuousSpellCheckingEnabled())
1162 bool Editor::isContinuousSpellCheckingEnabled() const function in class:WebCore::Editor
1164 return client() && client()->isContinuousSpellCheckingEnabled();
1806 if (!isContinuousSpellCheckingEnabled() || !clickedNode || !isSpellCheckingEnabledFor(clickedNode))
1961 markMisspellingsAndBadGrammar(movingSelection, isContinuousSpellCheckingEnabled() && isGrammarCheckingEnabled(), movingSelection);
1975 if (isContinuousSpellCheckingEnabled())
2002 if (!isContinuousSpellCheckingEnabled())
2049 if (!isContinuousSpellCheckingEnabled())
2378 if (!isContinuousSpellCheckingEnabled())
3003 bool isContinuousSpellCheckingEnabled local
[all...]
H A DTypingCommand.cpp301 if (!frame->editor().isContinuousSpellCheckingEnabled()
308 if (!frame->editor().isContinuousSpellCheckingEnabled())

Completed in 139 milliseconds

12