HomeSort by relevance Sort by last modified time
    Searched refs:shouldApplyStyle (Results 1 - 25 of 43) sorted by null

1 2

  /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);
InjectedBundlePageEditorClient.h 54 bool shouldApplyStyle(WebPage*, WebCore::CSSStyleDeclaration*, WebCore::Range*);
  /external/webkit/Source/WebKit/mac/WebView/
WebEditingDelegate.h 48 - (BOOL)webView:(WebView *)webView shouldApplyStyle:(DOMCSSStyleDeclaration *)style toElementsInDOMRange:(DOMRange *)range;
  /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/Source/WebKit/android/WebCoreSupport/
EditorClientAndroid.h 69 virtual bool shouldApplyStyle(CSSStyleDeclaration*, Range*);
EditorClientAndroid.cpp 77 bool EditorClientAndroid::shouldApplyStyle(CSSStyleDeclaration*, Range*) { notImplemented(); return true; }
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
EditorClientEfl.h 70 virtual bool shouldApplyStyle(CSSStyleDeclaration*, Range*);
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.h 68 virtual bool shouldApplyStyle(CSSStyleDeclaration*, Range*);
EditorClientHaiku.cpp 147 bool EditorClientHaiku::shouldApplyStyle(WebCore::CSSStyleDeclaration*,
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
EditorClientQt.h 67 virtual bool shouldApplyStyle(CSSStyleDeclaration*, Range*);
  /external/webkit/Source/WebKit/wx/WebKitSupport/
EditorClientWx.h 67 virtual bool shouldApplyStyle(CSSStyleDeclaration*,
  /external/webkit/Source/WebCore/page/
EditorClient.h 97 virtual bool shouldApplyStyle(CSSStyleDeclaration*, Range*) = 0;
  /external/webkit/Source/WebKit/chromium/public/
WebViewClient.h 157 virtual bool shouldApplyStyle(const WebString& style, const WebRange&) { return true; }
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
EditorClientGtk.h 96 virtual bool shouldApplyStyle(WebCore::CSSStyleDeclaration*, WebCore::Range*);
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebEditorClient.h 67 bool shouldApplyStyle(WebCore::CSSStyleDeclaration*, WebCore::Range*);
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
EditorClientWinCE.h 58 virtual bool shouldApplyStyle(WebCore::CSSStyleDeclaration*, WebCore::Range*);
  /external/webkit/Source/WebKit/mac/DefaultDelegates/
WebDefaultEditingDelegate.m 85 - (BOOL)webView:(WebView *)webView shouldApplyStyle:(DOMCSSStyleDeclaration *)style toElementsInDOMRange:(DOMRange *)range
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
InjectedBundlePage.h 133 static bool shouldApplyStyle(WKBundlePageRef, WKBundleCSSStyleDeclarationRef style, WKBundleRangeHandleRef range, const void* clientInfo);
144 bool shouldApplyStyle(WKBundleCSSStyleDeclarationRef style, WKBundleRangeHandleRef range);
  /external/webkit/Source/WebKit/chromium/src/
EditorClientImpl.h 71 virtual bool shouldApplyStyle(WebCore::CSSStyleDeclaration*, WebCore::Range*);
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebEditorClient.h 64 virtual bool shouldApplyStyle(WebCore::CSSStyleDeclaration*, WebCore::Range*);
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebEditorClient.h 64 virtual bool shouldApplyStyle(WebCore::CSSStyleDeclaration*, WebCore::Range*);
WebEditorClient.cpp 157 bool WebEditorClient::shouldApplyStyle(CSSStyleDeclaration* style, Range* range)
159 bool result = m_page->injectedBundleEditorClient().shouldApplyStyle(m_page, style, range);
  /external/webkit/Tools/DumpRenderTree/win/
EditingDelegate.h 82 virtual HRESULT STDMETHODCALLTYPE shouldApplyStyle(
  /external/webkit/Tools/DumpRenderTree/mac/
EditingDelegate.mm 143 - (BOOL)webView:(WebView *)webView shouldApplyStyle:(DOMCSSStyleDeclaration *)style toElementsInDOMRange:(DOMRange *)range
146 printf("EDITING DELEGATE: shouldApplyStyle:%s toElementsInDOMRange:%s\n", [[style description] UTF8String], [[range dump] UTF8String]);
  /external/webkit/Source/WebKit/win/Interfaces/
IWebEditingDelegate.idl 133 - (BOOL)webView:(WebView *)webView shouldApplyStyle:(DOMCSSStyleDeclaration *)style toElementsInDOMRange:(DOMRange *)range;
135 HRESULT shouldApplyStyle([in] IWebView* webView, [in] IDOMCSSStyleDeclaration* style, [in] IDOMRange* range, [out, retval] BOOL* result);

Completed in 394 milliseconds

1 2