Searched defs:shouldApplyStyle (Results 1 - 19 of 19) sorted by relevance

/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
H A DInjectedBundlePageEditorClient.cpp95 bool InjectedBundlePageEditorClient::shouldApplyStyle(WebPage* page, CSSStyleDeclaration* style, Range* range) function in class:WebKit::InjectedBundlePageEditorClient
97 if (m_client.shouldApplyStyle) {
99 return m_client.shouldApplyStyle(toAPI(page), toAPI(style), toAPI(rangeHandle.get()), m_client.clientInfo);
/external/webkit/Tools/DumpRenderTree/gtk/
H A DEditingCallbacks.cpp155 gboolean shouldApplyStyle(WebKitWebView* webView, WebKitDOMCSSStyleDeclaration* style, WebKitDOMRange* range) function
159 printf("EDITING DELEGATE: shouldApplyStyle:%s toElementsInDOMRange:%s\n",
199 "signal::should-apply-style", shouldApplyStyle, 0, local
/external/webkit/Tools/DumpRenderTree/win/
H A DEditingDelegate.cpp244 HRESULT STDMETHODCALLTYPE EditingDelegate::shouldApplyStyle( function in class:EditingDelegate
256 _tprintf(TEXT("EDITING DELEGATE: shouldApplyStyle:%s toElementsInDOMRange:%s\n"), TEXT("'style description'")/*[[style description] UTF8String]*/, dump(range));
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DEditorClientAndroid.cpp77 bool EditorClientAndroid::shouldApplyStyle(CSSStyleDeclaration*, Range*) { notImplemented(); return true; } function in class:android::EditorClientAndroid
/external/webkit/Source/WebKit/haiku/WebCoreSupport/
H A DEditorClientHaiku.cpp147 bool EditorClientHaiku::shouldApplyStyle(WebCore::CSSStyleDeclaration*, function in class:WebCore::EditorClientHaiku
/external/webkit/Source/WebKit/chromium/public/
H A DWebViewClient.h157 virtual bool shouldApplyStyle(const WebString& style, const WebRange&) { return true; } function in class:WebKit::WebViewClient
/external/webkit/Source/WebKit/efl/WebCoreSupport/
H A DEditorClientEfl.cpp106 bool EditorClientEfl::shouldApplyStyle(CSSStyleDeclaration*, Range*) function in class:WebCore::EditorClientEfl
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DEditorClientQt.cpp173 bool EditorClientQt::shouldApplyStyle(WebCore::CSSStyleDeclaration* style, function in class:WebCore::EditorClientQt
177 printf("EDITING DELEGATE: shouldApplyStyle:%s toElementsInDOMRange:%s\n",
/external/webkit/Source/WebKit/wince/WebCoreSupport/
H A DEditorClientWinCE.cpp105 bool EditorClientWinCE::shouldApplyStyle(WebCore::CSSStyleDeclaration*, WebCore::Range*) function in class:WebKit::EditorClientWinCE
/external/webkit/Source/WebKit/wx/WebKitSupport/
H A DEditorClientWx.cpp226 bool EditorClientWx::shouldApplyStyle(CSSStyleDeclaration*, function in class:WebCore::EditorClientWx
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebEditorClient.cpp157 bool WebEditorClient::shouldApplyStyle(CSSStyleDeclaration* style, Range* range) function in class:WebKit::WebEditorClient
159 bool result = m_page->injectedBundleEditorClient().shouldApplyStyle(m_page, style, range);
/external/webkit/Source/WebKit/chromium/src/
H A DEditorClientImpl.cpp251 bool EditorClientImpl::shouldApplyStyle(CSSStyleDeclaration* style, function in class:WebKit::EditorClientImpl
256 return m_webView->client()->shouldApplyStyle(WebString(),
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DEditorClientGtk.cpp372 bool EditorClient::shouldApplyStyle(WebCore::CSSStyleDeclaration* declaration, WebCore::Range* range) function in class:WebKit::EditorClient
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebEditorClient.cpp278 bool WebEditorClient::shouldApplyStyle(CSSStyleDeclaration* /*style*/, Range* /*toElementsInDOMRange*/) function in class:WebEditorClient
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
H A DWKBundlePage.h214 WKBundlePageShouldApplyStyle shouldApplyStyle; member in struct:WKBundlePageEditorClient
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/
H A DInjectedBundlePage.cpp240 shouldApplyStyle,
860 bool InjectedBundlePage::shouldApplyStyle(WKBundlePageRef page, WKBundleCSSStyleDeclarationRef style, WKBundleRangeHandleRef range, const void* clientInfo) function in class:WTR::InjectedBundlePage
862 return static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->shouldApplyStyle(style, range);
966 bool InjectedBundlePage::shouldApplyStyle(WKBundleCSSStyleDeclarationRef style, WKBundleRangeHandleRef range) function in class:WTR::InjectedBundlePage
972 InjectedBundle::shared().os() << "EDITING DELEGATE: shouldApplyStyle:" << style << " toElementsInDOMRange:" << toStr(m_page, m_world.get(), range) << "\n";
/external/webkit/Tools/DumpRenderTree/chromium/
H A DWebViewHost.cpp349 bool WebViewHost::shouldApplyStyle(const WebString& style, const WebRange& range) function in class:WebViewHost
352 printf("EDITING DELEGATE: shouldApplyStyle:%s toElementsInDOMRange:", style.utf8().data());
/external/webkit/Source/WebCore/editing/
H A DEditor.cpp841 bool Editor::shouldApplyStyle(CSSStyleDeclaration* style, Range* range) function in class:WebCore::Editor
843 return client()->shouldApplyStyle(style, range);
865 if (client() && client()->shouldApplyStyle(style, m_frame->selection()->toNormalizedRange().get()))
874 if (client() && client()->shouldApplyStyle(style, m_frame->selection()->toNormalizedRange().get()))
/external/webkit/Source/WebCore/loader/
H A DEmptyClients.h453 virtual bool shouldApplyStyle(CSSStyleDeclaration*, Range*) { return false; } function in class:WebCore::EmptyEditorClient

Completed in 336 milliseconds