Searched refs:isAutomaticDashSubstitutionEnabled (Results 1 - 17 of 17) sorted by relevance

/external/webkit/Source/WebKit2/Shared/
H A DTextCheckerState.h40 bool isAutomaticDashSubstitutionEnabled; member in struct:WebKit::TextCheckerState
/external/webkit/Source/WebKit2/UIProcess/mac/
H A DTextCheckerMac.mm64 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/WebKit2/WebProcess/WebCoreSupport/mac/
H A DWebEditorClientMac.mm209 bool WebEditorClient::isAutomaticDashSubstitutionEnabled()
211 return WebProcess::shared().textCheckerState().isAutomaticDashSubstitutionEnabled;
/external/webkit/Source/WebCore/page/
H A DEditorClient.h151 virtual bool isAutomaticDashSubstitutionEnabled() = 0;
H A DContextMenuController.cpp1164 shouldCheck = frame->editor()->isAutomaticDashSubstitutionEnabled();
/external/webkit/Source/WebKit/mac/WebCoreSupport/
H A DWebEditorClient.h93 virtual bool isAutomaticDashSubstitutionEnabled();
H A DWebEditorClient.mm452 bool WebEditorClient::isAutomaticDashSubstitutionEnabled()
454 return [m_webView isAutomaticDashSubstitutionEnabled];
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebEditorClient.h118 virtual bool isAutomaticDashSubstitutionEnabled();
/external/webkit/Source/WebCore/editing/
H A DEditor.h247 bool isAutomaticDashSubstitutionEnabled();
H A DTypingCommand.cpp328 && !document()->frame()->editor()->isAutomaticDashSubstitutionEnabled()
H A DEditor.cpp1359 bool Editor::isAutomaticDashSubstitutionEnabled() function in class:WebCore::Editor
1361 return client() && client()->isAutomaticDashSubstitutionEnabled();
1985 || isAutomaticDashSubstitutionEnabled()
3274 if (isAutomaticDashSubstitutionEnabled())
/external/webkit/Source/WebKit2/UIProcess/API/mac/
H A DWKView.mm673 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);
/external/webkit/Source/WebCore/loader/
H A DEmptyClients.h517 virtual bool isAutomaticDashSubstitutionEnabled() { return false; } function in class:WebCore::EmptyEditorClient
/external/webkit/Source/WebKit/mac/WebView/
H A DWebViewPrivate.h654 - (BOOL)isAutomaticDashSubstitutionEnabled;
H A DWebHTMLView.mm420 - (BOOL)isAutomaticDashSubstitutionEnabled;
2830 [menuItem setState:[self isAutomaticDashSubstitutionEnabled] ? NSOnState : NSOffState];
5321 - (BOOL)isAutomaticDashSubstitutionEnabled
5323 return [[self _webView] isAutomaticDashSubstitutionEnabled];
H A DWebView.mm4407 BOOL checkMark = [self isAutomaticDashSubstitutionEnabled];
5282 - (BOOL)isAutomaticDashSubstitutionEnabled
5350 [self setAutomaticDashSubstitutionEnabled:![self isAutomaticDashSubstitutionEnabled]];
/external/webkit/Source/WebKit2/UIProcess/
H A DWebPageProxy.cpp2323 TextChecker::setAutomaticDashSubstitutionEnabled(!TextChecker::state().isAutomaticDashSubstitutionEnabled);

Completed in 2043 milliseconds