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

  /external/webkit/Source/WebKit2/Shared/
TextCheckerState.h 41 bool isAutomaticLinkDetectionEnabled;
  /external/webkit/Source/WebKit2/UIProcess/mac/
TextCheckerMac.mm 65 textCheckerState.isAutomaticLinkDetectionEnabled = [[NSUserDefaults standardUserDefaults] boolForKey:WebAutomaticLinkDetectionEnabled];
154 void TextChecker::setAutomaticLinkDetectionEnabled(bool isAutomaticLinkDetectionEnabled)
156 if (state().isAutomaticLinkDetectionEnabled == isAutomaticLinkDetectionEnabled)
159 textCheckerState.isAutomaticLinkDetectionEnabled = isAutomaticLinkDetectionEnabled;
160 [[NSUserDefaults standardUserDefaults] setBool:isAutomaticLinkDetectionEnabled forKey:WebAutomaticLinkDetectionEnabled];
  /external/webkit/Source/WebCore/page/
EditorClient.h 149 virtual bool isAutomaticLinkDetectionEnabled() = 0;
ContextMenuController.cpp     [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
WebEditorClientMac.mm 198 bool WebEditorClient::isAutomaticLinkDetectionEnabled()
200 return WebProcess::shared().textCheckerState().isAutomaticLinkDetectionEnabled;
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebEditorClient.h 91 virtual bool isAutomaticLinkDetectionEnabled();
WebEditorClient.mm 442 bool WebEditorClient::isAutomaticLinkDetectionEnabled()
444 return [m_webView isAutomaticLinkDetectionEnabled];
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebEditorClient.h 116 virtual bool isAutomaticLinkDetectionEnabled();
  /external/webkit/Source/WebCore/editing/
Editor.h 245 bool isAutomaticLinkDetectionEnabled();
TypingCommand.cpp 327 && !document()->frame()->editor()->isAutomaticLinkDetectionEnabled()
Editor.cpp     [all...]
  /external/webkit/Source/WebCore/loader/
EmptyClients.h 511 virtual bool isAutomaticLinkDetectionEnabled() { return false; }
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
WKView.mm 679 bool checked = TextChecker::state().isAutomaticLinkDetectionEnabled;
867 - (BOOL)isAutomaticLinkDetectionEnabled
869 return TextChecker::state().isAutomaticLinkDetectionEnabled;
874 if (static_cast<bool>(flag) == TextChecker::state().isAutomaticLinkDetectionEnabled)
883 TextChecker::setAutomaticLinkDetectionEnabled(!TextChecker::state().isAutomaticLinkDetectionEnabled);
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebViewPrivate.h 653 - (BOOL)isAutomaticLinkDetectionEnabled;
WebHTMLView.mm 417 - (BOOL)isAutomaticLinkDetectionEnabled;
    [all...]
WebView.mm     [all...]
  /external/webkit/Source/WebKit2/UIProcess/
WebPageProxy.cpp     [all...]

Completed in 219 milliseconds