Searched refs:isAutomaticSpellingCorrectionEnabled (Results 1 - 18 of 18) sorted by relevance

/external/webkit/Source/WebKit2/Shared/
H A DTextCheckerState.h38 bool isAutomaticSpellingCorrectionEnabled; member in struct:WebKit::TextCheckerState
/external/webkit/Source/WebKit2/UIProcess/mac/
H A DTextCheckerMac.mm62 textCheckerState.isAutomaticSpellingCorrectionEnabled = [[NSUserDefaults standardUserDefaults] boolForKey:WebAutomaticSpellingCorrectionEnabled];
70 textCheckerState.isAutomaticSpellingCorrectionEnabled = [NSSpellChecker isAutomaticSpellingCorrectionEnabled];
121 void TextChecker::setAutomaticSpellingCorrectionEnabled(bool isAutomaticSpellingCorrectionEnabled)
123 if (state().isAutomaticSpellingCorrectionEnabled == isAutomaticSpellingCorrectionEnabled)
126 textCheckerState.isAutomaticSpellingCorrectionEnabled = isAutomaticSpellingCorrectionEnabled;
127 [[NSUserDefaults standardUserDefaults] setBool:isAutomaticSpellingCorrectionEnabled forKey:WebAutomaticSpellingCorrectionEnabled];
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
H A DWebEditorClientMac.mm231 bool WebEditorClient::isAutomaticSpellingCorrectionEnabled()
233 return WebProcess::shared().textCheckerState().isAutomaticSpellingCorrectionEnabled;
/external/webkit/Source/WebCore/editing/
H A DSpellingCorrectionController.h110 bool isAutomaticSpellingCorrectionEnabled() UNLESS_ENABLED({ return false; })
H A DSpellingCorrectionController.cpp100 if (!isAutomaticSpellingCorrectionEnabled())
356 bool SpellingCorrectionController::isAutomaticSpellingCorrectionEnabled() function in class:WebCore::SpellingCorrectionController
358 return client() && client()->isAutomaticSpellingCorrectionEnabled();
H A DEditor.h251 bool isAutomaticSpellingCorrectionEnabled();
H A DEditor.cpp1381 bool Editor::isAutomaticSpellingCorrectionEnabled() function in class:WebCore::Editor
1383 return m_spellingCorrector->isAutomaticSpellingCorrectionEnabled();
1987 || ((textCheckingOptions & MarkSpelling) && isAutomaticSpellingCorrectionEnabled())))
3278 if (shouldMarkSpelling && isAutomaticSpellingCorrectionEnabled())
/external/webkit/Source/WebCore/page/
H A DEditorClient.h155 virtual bool isAutomaticSpellingCorrectionEnabled() = 0;
H A DContextMenuController.cpp1149 shouldCheck = frame->editor()->isAutomaticSpellingCorrectionEnabled();
/external/webkit/Source/WebKit/mac/WebCoreSupport/
H A DWebEditorClient.h97 virtual bool isAutomaticSpellingCorrectionEnabled();
H A DWebEditorClient.mm472 bool WebEditorClient::isAutomaticSpellingCorrectionEnabled()
474 return [m_webView isAutomaticSpellingCorrectionEnabled];
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebEditorClient.h122 virtual bool isAutomaticSpellingCorrectionEnabled();
/external/webkit/Source/WebCore/loader/
H A DEmptyClients.h517 virtual bool isAutomaticSpellingCorrectionEnabled() { return false; } function in class:WebCore::EmptyEditorClient
/external/webkit/Source/WebKit/mac/WebView/
H A DWebViewPrivate.h656 - (BOOL)isAutomaticSpellingCorrectionEnabled;
H A DWebHTMLView.mm426 - (BOOL)isAutomaticSpellingCorrectionEnabled;
2842 [menuItem setState:[self isAutomaticSpellingCorrectionEnabled] ? NSOnState : NSOffState];
5351 - (BOOL)isAutomaticSpellingCorrectionEnabled
5353 return [[self _webView] isAutomaticSpellingCorrectionEnabled];
H A DWebView.mm2917 automaticSpellingCorrectionEnabled = [NSSpellChecker isAutomaticSpellingCorrectionEnabled];
4421 BOOL checkMark = [self isAutomaticSpellingCorrectionEnabled];
5300 - (BOOL)isAutomaticSpellingCorrectionEnabled
5378 [self setAutomaticSpellingCorrectionEnabled:![self isAutomaticSpellingCorrectionEnabled]];
/external/webkit/Source/WebKit2/UIProcess/API/mac/
H A DWKView.mm649 bool checked = TextChecker::state().isAutomaticSpellingCorrectionEnabled;
801 TextChecker::setAutomaticSpellingCorrectionEnabled(!TextChecker::state().isAutomaticSpellingCorrectionEnabled);
/external/webkit/Source/WebKit2/UIProcess/
H A DWebPageProxy.cpp2338 TextChecker::setAutomaticSpellingCorrectionEnabled(!TextChecker::state().isAutomaticSpellingCorrectionEnabled);

Completed in 243 milliseconds