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

1 2

  /external/webkit/Source/WebKit2/Shared/
TextCheckerState.h 35 bool isGrammarCheckingEnabled;
  /external/webkit/Source/WebKit2/UIProcess/win/
TextCheckerWin.cpp 47 textCheckerState.isGrammarCheckingEnabled = client.grammarCheckingEnabled();
67 void TextChecker::setGrammarCheckingEnabled(bool isGrammarCheckingEnabled)
69 if (state().isGrammarCheckingEnabled == isGrammarCheckingEnabled)
71 textCheckerState.isGrammarCheckingEnabled = isGrammarCheckingEnabled;
72 WebTextChecker::shared()->client().setGrammarCheckingEnabled(isGrammarCheckingEnabled);
82 textCheckerState.isGrammarCheckingEnabled = enabled;
  /external/webkit/Source/WebKit/mac/WebView/
WebHTMLViewInternal.h 56 - (BOOL)isGrammarCheckingEnabled;
  /external/webkit/Source/WebKit2/UIProcess/gtk/
TextCheckerGtk.cpp 56 void TextChecker::setGrammarCheckingEnabled(bool isGrammarCheckingEnabled)
  /external/webkit/Source/WebKit2/UIProcess/qt/
TextCheckerQt.cpp 57 void TextChecker::setGrammarCheckingEnabled(bool isGrammarCheckingEnabled)
  /external/webkit/Source/WebKit2/UIProcess/mac/
TextCheckerMac.mm 61 textCheckerState.isGrammarCheckingEnabled = [[NSUserDefaults standardUserDefaults] boolForKey:WebGrammarCheckingEnabled];
108 void TextChecker::setGrammarCheckingEnabled(bool isGrammarCheckingEnabled)
110 if (state().isGrammarCheckingEnabled == isGrammarCheckingEnabled)
113 textCheckerState.isGrammarCheckingEnabled = isGrammarCheckingEnabled;
114 [[NSUserDefaults standardUserDefaults] setBool:isGrammarCheckingEnabled forKey:WebGrammarCheckingEnabled];
  /external/webkit/Source/WebKit/android/WebCoreSupport/
EditorClientAndroid.h 57 virtual bool isGrammarCheckingEnabled();
EditorClientAndroid.cpp 57 bool EditorClientAndroid::isGrammarCheckingEnabled() { notImplemented(); return false; }
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
EditorClientEfl.h 60 virtual bool isGrammarCheckingEnabled();
EditorClientEfl.cpp 70 bool EditorClientEfl::isGrammarCheckingEnabled()
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.h 57 virtual bool isGrammarCheckingEnabled();
EditorClientHaiku.cpp 99 bool EditorClientHaiku::isGrammarCheckingEnabled()
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
EditorClientQt.h 56 virtual bool isGrammarCheckingEnabled();
  /external/webkit/Source/WebKit/wx/WebKitSupport/
EditorClientWx.h 55 virtual bool isGrammarCheckingEnabled();
  /external/webkit/Source/WebCore/page/
EditorClient.h 87 virtual bool isGrammarCheckingEnabled() = 0;
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
EditorClientGtk.h 86 virtual bool isGrammarCheckingEnabled();
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebEditorClient.h 47 virtual bool isGrammarCheckingEnabled();
WebEditorClient.cpp 159 bool WebEditorClient::isGrammarCheckingEnabled()
162 if (FAILED(m_webView->isGrammarCheckingEnabled(&enabled)))
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
EditorClientWinCE.h 48 virtual bool isGrammarCheckingEnabled();
  /external/webkit/Source/WebKit/chromium/src/
EditorClientImpl.h 59 virtual bool isGrammarCheckingEnabled();
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebEditorClient.h 46 virtual bool isGrammarCheckingEnabled();
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebEditorClient.h 52 virtual bool isGrammarCheckingEnabled();
WebEditorClient.cpp 98 bool WebEditorClient::isGrammarCheckingEnabled()
100 return WebProcess::shared().textCheckerState().isGrammarCheckingEnabled;
  /external/webkit/Source/WebCore/editing/
Editor.cpp     [all...]
  /external/webkit/Source/WebKit2/WebProcess/
WebProcess.cpp 816 bool grammarCheckingTurnedOff = !textCheckerState.isGrammarCheckingEnabled && m_textCheckerState.isGrammarCheckingEnabled;

Completed in 160 milliseconds

1 2