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

  /external/webkit/Source/WebKit2/Shared/
TextCheckerState.h 38 bool isAutomaticSpellingCorrectionEnabled;
  /external/webkit/Source/WebKit2/UIProcess/mac/
TextCheckerMac.mm 62 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/WebCore/page/
EditorClient.h 155 virtual bool isAutomaticSpellingCorrectionEnabled() = 0;
ContextMenuController.cpp     [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
WebEditorClientMac.mm 231 bool WebEditorClient::isAutomaticSpellingCorrectionEnabled()
233 return WebProcess::shared().textCheckerState().isAutomaticSpellingCorrectionEnabled;
  /external/webkit/Source/WebCore/editing/
SpellingCorrectionController.h 110 bool isAutomaticSpellingCorrectionEnabled() UNLESS_ENABLED({ return false; })
SpellingCorrectionController.cpp 100 if (!isAutomaticSpellingCorrectionEnabled())
356 bool SpellingCorrectionController::isAutomaticSpellingCorrectionEnabled()
358 return client() && client()->isAutomaticSpellingCorrectionEnabled();
Editor.h 251 bool isAutomaticSpellingCorrectionEnabled();
Editor.cpp     [all...]
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebEditorClient.h 97 virtual bool isAutomaticSpellingCorrectionEnabled();
WebEditorClient.mm 472 bool WebEditorClient::isAutomaticSpellingCorrectionEnabled()
474 return [m_webView isAutomaticSpellingCorrectionEnabled];
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebEditorClient.h 122 virtual bool isAutomaticSpellingCorrectionEnabled();
  /external/webkit/Source/WebCore/loader/
EmptyClients.h 521 virtual bool isAutomaticSpellingCorrectionEnabled() { return false; }
  /external/webkit/Source/WebKit/mac/WebView/
WebViewPrivate.h 656 - (BOOL)isAutomaticSpellingCorrectionEnabled;
WebHTMLView.mm 426 - (BOOL)isAutomaticSpellingCorrectionEnabled;
    [all...]
WebView.mm     [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
WKView.mm 649 bool checked = TextChecker::state().isAutomaticSpellingCorrectionEnabled;
801 TextChecker::setAutomaticSpellingCorrectionEnabled(!TextChecker::state().isAutomaticSpellingCorrectionEnabled);
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/
WebPageProxy.cpp     [all...]

Completed in 664 milliseconds