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

  /external/webkit/Source/WebKit2/Shared/
TextCheckerState.h 40 bool isAutomaticDashSubstitutionEnabled;
  /external/webkit/Source/WebKit2/UIProcess/mac/
TextCheckerMac.mm 64 textCheckerState.isAutomaticDashSubstitutionEnabled = [[NSUserDefaults standardUserDefaults] boolForKey:WebAutomaticDashSubstitutionEnabled];
143 void TextChecker::setAutomaticDashSubstitutionEnabled(bool isAutomaticDashSubstitutionEnabled)
145 if (state().isAutomaticDashSubstitutionEnabled == isAutomaticDashSubstitutionEnabled)
148 textCheckerState.isAutomaticDashSubstitutionEnabled = isAutomaticDashSubstitutionEnabled;
149 [[NSUserDefaults standardUserDefaults] setBool:isAutomaticDashSubstitutionEnabled forKey:WebAutomaticDashSubstitutionEnabled];
  /external/webkit/Source/WebCore/page/
EditorClient.h 151 virtual bool isAutomaticDashSubstitutionEnabled() = 0;
ContextMenuController.cpp     [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
WebEditorClientMac.mm 209 bool WebEditorClient::isAutomaticDashSubstitutionEnabled()
211 return WebProcess::shared().textCheckerState().isAutomaticDashSubstitutionEnabled;
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebEditorClient.h 93 virtual bool isAutomaticDashSubstitutionEnabled();
WebEditorClient.mm 452 bool WebEditorClient::isAutomaticDashSubstitutionEnabled()
454 return [m_webView isAutomaticDashSubstitutionEnabled];
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebEditorClient.h 118 virtual bool isAutomaticDashSubstitutionEnabled();
  /external/webkit/Source/WebCore/editing/
Editor.h 247 bool isAutomaticDashSubstitutionEnabled();
TypingCommand.cpp 328 && !document()->frame()->editor()->isAutomaticDashSubstitutionEnabled()
Editor.cpp     [all...]
  /external/webkit/Source/WebCore/loader/
EmptyClients.h 513 virtual bool isAutomaticDashSubstitutionEnabled() { return false; }
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
WKView.mm 673 bool checked = TextChecker::state().isAutomaticDashSubstitutionEnabled;
847 - (BOOL)isAutomaticDashSubstitutionEnabled
849 return TextChecker::state().isAutomaticDashSubstitutionEnabled;
854 if (static_cast<bool>(flag) == TextChecker::state().isAutomaticDashSubstitutionEnabled)
863 TextChecker::setAutomaticDashSubstitutionEnabled(!TextChecker::state().isAutomaticDashSubstitutionEnabled);
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebViewPrivate.h 654 - (BOOL)isAutomaticDashSubstitutionEnabled;
WebHTMLView.mm 420 - (BOOL)isAutomaticDashSubstitutionEnabled;
    [all...]
WebView.mm     [all...]
  /external/webkit/Source/WebKit2/UIProcess/
WebPageProxy.cpp     [all...]

Completed in 2098 milliseconds