HomeSort by relevance Sort by last modified time
    Searched refs:isContinuousSpellCheckingEnabled (Results 1 - 25 of 45) sorted by null

1 2

  /external/webkit/Source/WebKit2/Shared/
TextCheckerState.h 34 bool isContinuousSpellCheckingEnabled;
  /external/webkit/Source/WebKit2/UIProcess/win/
TextCheckerWin.cpp 46 textCheckerState.isContinuousSpellCheckingEnabled = client.continuousSpellCheckingEnabled();
59 void TextChecker::setContinuousSpellCheckingEnabled(bool isContinuousSpellCheckingEnabled)
61 if (state().isContinuousSpellCheckingEnabled == isContinuousSpellCheckingEnabled)
63 textCheckerState.isContinuousSpellCheckingEnabled = isContinuousSpellCheckingEnabled;
64 WebTextChecker::shared()->client().setContinuousSpellCheckingEnabled(isContinuousSpellCheckingEnabled);
77 textCheckerState.isContinuousSpellCheckingEnabled = enabled;
  /external/webkit/Source/WebKit2/UIProcess/gtk/
TextCheckerGtk.cpp 51 void TextChecker::setContinuousSpellCheckingEnabled(bool isContinuousSpellCheckingEnabled)
  /external/webkit/Source/WebKit2/UIProcess/qt/
TextCheckerQt.cpp 52 void TextChecker::setContinuousSpellCheckingEnabled(bool isContinuousSpellCheckingEnabled)
  /external/webkit/Source/WebKit2/UIProcess/mac/
TextCheckerMac.mm 60 textCheckerState.isContinuousSpellCheckingEnabled = [[NSUserDefaults standardUserDefaults] boolForKey:WebContinuousSpellCheckingEnabled] && TextChecker::isContinuousSpellCheckingAllowed();
97 void TextChecker::setContinuousSpellCheckingEnabled(bool isContinuousSpellCheckingEnabled)
99 if (state().isContinuousSpellCheckingEnabled == isContinuousSpellCheckingEnabled)
102 textCheckerState.isContinuousSpellCheckingEnabled = isContinuousSpellCheckingEnabled;
103 [[NSUserDefaults standardUserDefaults] setBool:isContinuousSpellCheckingEnabled forKey:WebContinuousSpellCheckingEnabled];
  /external/webkit/Source/WebKit/android/WebCoreSupport/
EditorClientAndroid.h 55 virtual bool isContinuousSpellCheckingEnabled();
EditorClientAndroid.cpp 55 bool EditorClientAndroid::isContinuousSpellCheckingEnabled() { notImplemented(); return false; }
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
EditorClientEfl.h 58 virtual bool isContinuousSpellCheckingEnabled();
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.h 55 virtual bool isContinuousSpellCheckingEnabled();
EditorClientHaiku.cpp 88 bool EditorClientHaiku::isContinuousSpellCheckingEnabled()
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
EditorClientQt.h 54 virtual bool isContinuousSpellCheckingEnabled();
  /external/webkit/Source/WebKit/wx/WebKitSupport/
EditorClientWx.h 53 virtual bool isContinuousSpellCheckingEnabled();
  /external/webkit/Source/WebCore/page/
EditorClient.h 85 virtual bool isContinuousSpellCheckingEnabled() = 0;
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
EditorClientGtk.h 84 virtual bool isContinuousSpellCheckingEnabled();
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebEditorClient.h 45 virtual bool isContinuousSpellCheckingEnabled();
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
EditorClientWinCE.h 46 virtual bool isContinuousSpellCheckingEnabled();
  /external/webkit/Source/WebKit/chromium/src/
EditorClientImpl.cpp 153 bool EditorClientImpl::isContinuousSpellCheckingEnabled()
164 if (isContinuousSpellCheckingEnabled())
860 if (isContinuousSpellCheckingEnabled() && m_webView->spellCheckClient())
    [all...]
EditorClientImpl.h 57 virtual bool isContinuousSpellCheckingEnabled();
WebFrameImpl.h 159 virtual bool isContinuousSpellCheckingEnabled() const;
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebEditorClient.h 48 virtual bool isContinuousSpellCheckingEnabled();
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebEditorClient.h 50 virtual bool isContinuousSpellCheckingEnabled();
WebEditorClient.cpp 88 bool WebEditorClient::isContinuousSpellCheckingEnabled()
90 return WebProcess::shared().textCheckerState().isContinuousSpellCheckingEnabled;
  /external/webkit/Source/WebKit/chromium/public/
WebFrame.h 410 virtual bool isContinuousSpellCheckingEnabled() const = 0;
  /external/webkit/Source/WebKit/mac/WebView/
WebView.h 714 - (BOOL)isContinuousSpellCheckingEnabled;
  /external/webkit/Source/WebCore/editing/
TypingCommand.cpp 325 if (!document()->frame()->editor()->isContinuousSpellCheckingEnabled()
332 if (!document()->frame()->editor()->isContinuousSpellCheckingEnabled())

Completed in 132 milliseconds

1 2