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

  /external/webkit/Source/WebKit2/Shared/
TextCheckerState.h 39 bool isAutomaticQuoteSubstitutionEnabled;
  /external/webkit/Source/WebKit2/UIProcess/mac/
TextCheckerMac.mm 63 textCheckerState.isAutomaticQuoteSubstitutionEnabled = [[NSUserDefaults standardUserDefaults] boolForKey:WebAutomaticQuoteSubstitutionEnabled];
132 void TextChecker::setAutomaticQuoteSubstitutionEnabled(bool isAutomaticQuoteSubstitutionEnabled)
134 if (state().isAutomaticQuoteSubstitutionEnabled == isAutomaticQuoteSubstitutionEnabled)
137 textCheckerState.isAutomaticQuoteSubstitutionEnabled = isAutomaticQuoteSubstitutionEnabled;
138 [[NSUserDefaults standardUserDefaults] setBool:isAutomaticQuoteSubstitutionEnabled forKey:WebAutomaticQuoteSubstitutionEnabled];
  /external/webkit/Source/WebCore/page/
EditorClient.h 147 virtual bool isAutomaticQuoteSubstitutionEnabled() = 0;
ContextMenuController.cpp     [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
WebEditorClientMac.mm 187 bool WebEditorClient::isAutomaticQuoteSubstitutionEnabled()
189 return WebProcess::shared().textCheckerState().isAutomaticQuoteSubstitutionEnabled;
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebEditorClient.h 89 virtual bool isAutomaticQuoteSubstitutionEnabled();
WebEditorClient.mm 432 bool WebEditorClient::isAutomaticQuoteSubstitutionEnabled()
434 return [m_webView isAutomaticQuoteSubstitutionEnabled];
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebEditorClient.h 114 virtual bool isAutomaticQuoteSubstitutionEnabled();
  /external/webkit/Source/WebCore/editing/
Editor.h 243 bool isAutomaticQuoteSubstitutionEnabled();
TypingCommand.cpp 326 && !document()->frame()->editor()->isAutomaticQuoteSubstitutionEnabled()
Editor.cpp     [all...]
  /external/webkit/Source/WebCore/loader/
EmptyClients.h 513 virtual bool isAutomaticQuoteSubstitutionEnabled() { return false; }
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
WKView.mm 667 bool checked = TextChecker::state().isAutomaticQuoteSubstitutionEnabled;
827 - (BOOL)isAutomaticQuoteSubstitutionEnabled
829 return TextChecker::state().isAutomaticQuoteSubstitutionEnabled;
834 if (static_cast<bool>(flag) == TextChecker::state().isAutomaticQuoteSubstitutionEnabled)
843 TextChecker::setAutomaticQuoteSubstitutionEnabled(!TextChecker::state().isAutomaticQuoteSubstitutionEnabled);
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebViewPrivate.h 652 - (BOOL)isAutomaticQuoteSubstitutionEnabled;
WebHTMLView.mm 414 - (BOOL)isAutomaticQuoteSubstitutionEnabled;
    [all...]
WebView.mm     [all...]
  /external/webkit/Source/WebKit2/UIProcess/
WebPageProxy.cpp     [all...]

Completed in 195 milliseconds