HomeSort by relevance Sort by last modified time
    Searched defs:shouldApplyStyle (Results 1 - 19 of 19) sorted by null

  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundlePageEditorClient.cpp 95 bool InjectedBundlePageEditorClient::shouldApplyStyle(WebPage* page, CSSStyleDeclaration* style, Range* range)
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/
EditingCallbacks.cpp 155 gboolean shouldApplyStyle(WebKitWebView* webView, WebKitDOMCSSStyleDeclaration* style, WebKitDOMRange* range)
159 printf("EDITING DELEGATE: shouldApplyStyle:%s toElementsInDOMRange:%s\n",
199 "signal::should-apply-style", shouldApplyStyle, 0,
  /external/webkit/Tools/DumpRenderTree/win/
EditingDelegate.cpp 244 HRESULT STDMETHODCALLTYPE EditingDelegate::shouldApplyStyle(
256 _tprintf(TEXT("EDITING DELEGATE: shouldApplyStyle:%s toElementsInDOMRange:%s\n"), TEXT("'style description'")/*[[style description] UTF8String]*/, dump(range));
  /external/webkit/Source/WebKit/chromium/public/
WebViewClient.h 157 virtual bool shouldApplyStyle(const WebString& style, const WebRange&) { return true; }
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.cpp 147 bool EditorClientHaiku::shouldApplyStyle(WebCore::CSSStyleDeclaration*,
  /external/webkit/Source/WebKit/android/WebCoreSupport/
EditorClientAndroid.cpp 77 bool EditorClientAndroid::shouldApplyStyle(CSSStyleDeclaration*, Range*) { notImplemented(); return true; }
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
EditorClientEfl.cpp 106 bool EditorClientEfl::shouldApplyStyle(CSSStyleDeclaration*, Range*)
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
EditorClientWinCE.cpp 105 bool EditorClientWinCE::shouldApplyStyle(WebCore::CSSStyleDeclaration*, WebCore::Range*)
  /external/webkit/Source/WebKit/wx/WebKitSupport/
EditorClientWx.cpp 226 bool EditorClientWx::shouldApplyStyle(CSSStyleDeclaration*,
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebEditorClient.cpp 157 bool WebEditorClient::shouldApplyStyle(CSSStyleDeclaration* style, Range* range)
159 bool result = m_page->injectedBundleEditorClient().shouldApplyStyle(m_page, style, range);
  /external/webkit/Source/WebKit/chromium/src/
EditorClientImpl.cpp 251 bool EditorClientImpl::shouldApplyStyle(CSSStyleDeclaration* style,
256 return m_webView->client()->shouldApplyStyle(WebString(),
    [all...]
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
EditorClientGtk.cpp 372 bool EditorClient::shouldApplyStyle(WebCore::CSSStyleDeclaration* declaration, WebCore::Range* range)
    [all...]
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
EditorClientQt.cpp 173 bool EditorClientQt::shouldApplyStyle(WebCore::CSSStyleDeclaration* style,
177 printf("EDITING DELEGATE: shouldApplyStyle:%s toElementsInDOMRange:%s\n",
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebEditorClient.cpp 278 bool WebEditorClient::shouldApplyStyle(CSSStyleDeclaration* /*style*/, Range* /*toElementsInDOMRange*/)
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundlePage.h 214 WKBundlePageShouldApplyStyle shouldApplyStyle;