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

1 2

  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundlePageEditorClient.cpp 57 bool InjectedBundlePageEditorClient::shouldInsertNode(WebPage* page, Node* node, Range* rangeToReplace, EditorInsertAction action)
59 if (m_client.shouldInsertNode) {
62 return m_client.shouldInsertNode(toAPI(page), toAPI(nodeHandle.get()), toAPI(rangeToReplaceHandle.get()), toAPI(action), m_client.clientInfo);
InjectedBundlePageEditorClient.h 50 bool shouldInsertNode(WebPage*, WebCore::Node*, WebCore::Range* rangeToReplace, WebCore::EditorInsertAction);
  /external/webkit/Source/WebKit/mac/WebView/
WebEditingDelegate.h 44 - (BOOL)webView:(WebView *)webView shouldInsertNode:(DOMNode *)node replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action;
  /external/webkit/Tools/DumpRenderTree/gtk/
EditingCallbacks.cpp 114 gboolean shouldInsertNode(WebKitWebView* webView, WebKitDOMNode* node, WebKitDOMRange* range, WebKitInsertAction action)
117 printf("EDITING DELEGATE: shouldInsertNode:%s replacingDOMRange:%s givenAction:%s\n",
194 "signal::should-insert-node", shouldInsertNode, 0,
  /external/webkit/Source/WebKit/android/WebCoreSupport/
EditorClientAndroid.h 65 virtual bool shouldInsertNode(Node*, Range*, EditorInsertAction);
EditorClientAndroid.cpp 75 bool EditorClientAndroid::shouldInsertNode(Node*, Range*, EditorInsertAction) { notImplemented(); return true; }
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
EditorClientEfl.h 66 virtual bool shouldInsertNode(Node*, Range*, EditorInsertAction);
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.h 63 virtual bool shouldInsertNode(Node*, Range*, EditorInsertAction);
EditorClientHaiku.cpp 128 bool EditorClientHaiku::shouldInsertNode(Node*, Range*, EditorInsertAction)
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
EditorClientQt.h 63 virtual bool shouldInsertNode(Node*, Range*, EditorInsertAction);
  /external/webkit/Source/WebKit/wx/WebKitSupport/
EditorClientWx.h 63 virtual bool shouldInsertNode(Node*, Range*,
  /external/webkit/Source/WebCore/page/
EditorClient.h 93 virtual bool shouldInsertNode(Node*, Range*, EditorInsertAction) = 0;
  /external/webkit/Source/WebKit/chromium/public/
WebViewClient.h 149 virtual bool shouldInsertNode(
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
EditorClientGtk.h 92 virtual bool shouldInsertNode(WebCore::Node*, WebCore::Range*, WebCore::EditorInsertAction);
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebEditorClient.h 66 bool shouldInsertNode(WebCore::Node*, WebCore::Range* replacingRange, WebCore::EditorInsertAction);
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
EditorClientWinCE.h 54 virtual bool shouldInsertNode(WebCore::Node*, WebCore::Range*, WebCore::EditorInsertAction);
  /external/webkit/Source/WebKit/mac/DefaultDelegates/
WebDefaultEditingDelegate.m 65 - (BOOL)webView:(WebView *)webView shouldInsertNode:(DOMNode *)node replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
InjectedBundlePage.h 129 static bool shouldInsertNode(WKBundlePageRef, WKBundleNodeHandleRef, WKBundleRangeHandleRef rangeToReplace, WKInsertActionType, const void* clientInfo);
140 bool shouldInsertNode(WKBundleNodeHandleRef, WKBundleRangeHandleRef rangeToReplace, WKInsertActionType);
  /external/webkit/Source/WebKit/chromium/src/
EditorClientImpl.h 64 virtual bool shouldInsertNode(WebCore::Node*, WebCore::Range*, WebCore::EditorInsertAction);
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebEditorClient.h 60 virtual bool shouldInsertNode(WebCore::Node*, WebCore::Range*, WebCore::EditorInsertAction);
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebEditorClient.h 60 virtual bool shouldInsertNode(WebCore::Node*, WebCore::Range*, WebCore::EditorInsertAction);
WebEditorClient.cpp 136 bool WebEditorClient::shouldInsertNode(Node* node, Range* rangeToReplace, EditorInsertAction action)
138 bool result = m_page->injectedBundleEditorClient().shouldInsertNode(m_page, node, rangeToReplace, action);
  /external/webkit/Tools/DumpRenderTree/win/
EditingDelegate.h 56 virtual HRESULT STDMETHODCALLTYPE shouldInsertNode(
  /external/webkit/Tools/DumpRenderTree/mac/
EditingDelegate.mm 89 - (BOOL)webView:(WebView *)webView shouldInsertNode:(DOMNode *)node replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action
98 printf("EDITING DELEGATE: shouldInsertNode:%s replacingDOMRange:%s givenAction:%s\n", [[node dumpPath] UTF8String], [[range dump] UTF8String], insertactionstring[action]);
  /external/webkit/Source/WebKit/win/Interfaces/
IWebEditingDelegate.idl 114 - (BOOL)webView:(WebView *)webView shouldInsertNode:(DOMNode *)node replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action;
116 HRESULT shouldInsertNode([in] IWebView* webView, [in] IDOMNode* node, [in] IDOMRange* range, [in] WebViewInsertAction action);

Completed in 1262 milliseconds

1 2