Home
last modified time | relevance | path

Searched refs:isAutomaticSpellingCorrectionEnabled (Results 1 – 22 of 22) sorted by relevance

/external/webkit/Source/WebKit2/UIProcess/mac/
DTextCheckerMac.mm62 …textCheckerState.isAutomaticSpellingCorrectionEnabled = [[NSUserDefaults standardUserDefaults] boo…
70 …textCheckerState.isAutomaticSpellingCorrectionEnabled = [NSSpellChecker isAutomaticSpellingCorrect…
121 void TextChecker::setAutomaticSpellingCorrectionEnabled(bool isAutomaticSpellingCorrectionEnabled)
123 if (state().isAutomaticSpellingCorrectionEnabled == isAutomaticSpellingCorrectionEnabled)
126 textCheckerState.isAutomaticSpellingCorrectionEnabled = isAutomaticSpellingCorrectionEnabled;
127 …[[NSUserDefaults standardUserDefaults] setBool:isAutomaticSpellingCorrectionEnabled forKey:WebAuto…
/external/webkit/Source/WebKit2/Shared/
DTextCheckerState.h38 bool isAutomaticSpellingCorrectionEnabled; member
/external/webkit/Source/WebCore/editing/
DSpellingCorrectionController.cpp100 if (!isAutomaticSpellingCorrectionEnabled()) in startCorrectionPanelTimer()
356 bool SpellingCorrectionController::isAutomaticSpellingCorrectionEnabled() in isAutomaticSpellingCorrectionEnabled() function in WebCore::SpellingCorrectionController
358 return client() && client()->isAutomaticSpellingCorrectionEnabled(); in isAutomaticSpellingCorrectionEnabled()
DSpellingCorrectionController.h110 bool isAutomaticSpellingCorrectionEnabled() UNLESS_ENABLED({ return false; })
DEditor.h251 bool isAutomaticSpellingCorrectionEnabled();
DEditor.cpp1381 bool Editor::isAutomaticSpellingCorrectionEnabled() in isAutomaticSpellingCorrectionEnabled() function in WebCore::Editor
1383 return m_spellingCorrector->isAutomaticSpellingCorrectionEnabled(); in isAutomaticSpellingCorrectionEnabled()
1987 || ((textCheckingOptions & MarkSpelling) && isAutomaticSpellingCorrectionEnabled()))) in markMisspellingsAfterTypingToWord()
3278 if (shouldMarkSpelling && isAutomaticSpellingCorrectionEnabled()) in textCheckingTypeMaskFor()
/external/webkit/Source/WebCore/page/
DEditorClient.h155 virtual bool isAutomaticSpellingCorrectionEnabled() = 0;
DContextMenuController.cpp1149 shouldCheck = frame->editor()->isAutomaticSpellingCorrectionEnabled(); in checkOrEnableIfNeeded()
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
DWebEditorClientMac.mm231 bool WebEditorClient::isAutomaticSpellingCorrectionEnabled()
233 return WebProcess::shared().textCheckerState().isAutomaticSpellingCorrectionEnabled;
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
DWebEditorClient.h122 virtual bool isAutomaticSpellingCorrectionEnabled();
/external/webkit/Source/WebKit/mac/WebCoreSupport/
DWebEditorClient.h97 virtual bool isAutomaticSpellingCorrectionEnabled();
DWebEditorClient.mm472 bool WebEditorClient::isAutomaticSpellingCorrectionEnabled() function
474 return [m_webView isAutomaticSpellingCorrectionEnabled];
/external/webkit/Source/WebKit/mac/WebView/
DWebViewPrivate.h656 - (BOOL)isAutomaticSpellingCorrectionEnabled;
DWebView.mm2917 automaticSpellingCorrectionEnabled = [NSSpellChecker isAutomaticSpellingCorrectionEnabled];
4421 BOOL checkMark = [self isAutomaticSpellingCorrectionEnabled];
5300 - (BOOL)isAutomaticSpellingCorrectionEnabled
5378 [self setAutomaticSpellingCorrectionEnabled:![self isAutomaticSpellingCorrectionEnabled]];
DWebHTMLView.mm426 - (BOOL)isAutomaticSpellingCorrectionEnabled; method in WebHTMLViewTextCheckingInternal
2842 … [menuItem setState:[self isAutomaticSpellingCorrectionEnabled] ? NSOnState : NSOffState];
5351 - (BOOL)isAutomaticSpellingCorrectionEnabled
5353 return [[self _webView] isAutomaticSpellingCorrectionEnabled];
/external/webkit/Source/WebCore/loader/
DEmptyClients.h517 virtual bool isAutomaticSpellingCorrectionEnabled() { return false; } in isAutomaticSpellingCorrectionEnabled() function
/external/webkit/Source/WebKit/mac/
DWebKit.order1232 -[WebHTMLView(WebInternal) isAutomaticSpellingCorrectionEnabled]
1233 -[WebView(WebViewTextChecking) isAutomaticSpellingCorrectionEnabled]
DChangeLog-2010-01-296375 (WebEditorClient::isAutomaticSpellingCorrectionEnabled):
6406 (-[WebHTMLView isAutomaticSpellingCorrectionEnabled]):
6420 (-[WebView isAutomaticSpellingCorrectionEnabled]):
/external/webkit/Source/WebKit2/UIProcess/API/mac/
DWKView.mm649 bool checked = TextChecker::state().isAutomaticSpellingCorrectionEnabled;
801 …:setAutomaticSpellingCorrectionEnabled(!TextChecker::state().isAutomaticSpellingCorrectionEnabled);
/external/webkit/Source/WebKit2/UIProcess/
DWebPageProxy.cpp2338 …:setAutomaticSpellingCorrectionEnabled(!TextChecker::state().isAutomaticSpellingCorrectionEnabled); in contextMenuItemSelected()
/external/webkit/Source/WebKit2/
DChangeLog-2011-02-1610361 (WebKit::WebEditorClient::isAutomaticSpellingCorrectionEnabled):
10656 Add setAutomaticSpellingCorrectionEnabled and isAutomaticSpellingCorrectionEnabled.
10660 (WebKit::TextChecker::isAutomaticSpellingCorrectionEnabled):
30512 (WebKit::WebEditorClient::isAutomaticSpellingCorrectionEnabled):
/external/webkit/Source/WebCore/
DChangeLog25978 (WebCore::Editor::isAutomaticSpellingCorrectionEnabled):
26010 (WebCore::SpellingCorrectionController::isAutomaticSpellingCorrectionEnabled):