Searched defs:shouldInsertNode (Results 1 - 18 of 18) sorted by relevance

/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
H A DInjectedBundlePageEditorClient.cpp57 bool InjectedBundlePageEditorClient::shouldInsertNode(WebPage* page, Node* node, Range* rangeToReplace, EditorInsertAction action) function in class:WebKit::InjectedBundlePageEditorClient
59 if (m_client.shouldInsertNode) {
62 return m_client.shouldInsertNode(toAPI(page), toAPI(nodeHandle.get()), toAPI(rangeToReplaceHandle.get()), toAPI(action), m_client.clientInfo);
/external/webkit/Tools/DumpRenderTree/gtk/
H A DEditingCallbacks.cpp114 gboolean shouldInsertNode(WebKitWebView* webView, WebKitDOMNode* node, WebKitDOMRange* range, WebKitInsertAction action) function
117 printf("EDITING DELEGATE: shouldInsertNode:%s replacingDOMRange:%s givenAction:%s\n",
194 "signal::should-insert-node", shouldInsertNode, 0, local
/external/webkit/Tools/DumpRenderTree/win/
H A DEditingDelegate.cpp155 HRESULT STDMETHODCALLTYPE EditingDelegate::shouldInsertNode( function in class:EditingDelegate
168 _tprintf(TEXT("EDITING DELEGATE: shouldInsertNode:%s replacingDOMRange:%s givenAction:%s\n"), dumpPath(node), dump(range), insertactionstring[action]);
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DEditorClientAndroid.cpp75 bool EditorClientAndroid::shouldInsertNode(Node*, Range*, EditorInsertAction) { notImplemented(); return true; } function in class:android::EditorClientAndroid
/external/webkit/Source/WebKit/haiku/WebCoreSupport/
H A DEditorClientHaiku.cpp128 bool EditorClientHaiku::shouldInsertNode(Node*, Range*, EditorInsertAction) function in class:WebCore::EditorClientHaiku
/external/webkit/Source/WebKit/chromium/public/
H A DWebViewClient.h149 virtual bool shouldInsertNode( function in class:WebKit::WebViewClient
/external/webkit/Source/WebKit/efl/WebCoreSupport/
H A DEditorClientEfl.cpp195 bool EditorClientEfl::shouldInsertNode(Node*, Range*, EditorInsertAction) function in class:WebCore::EditorClientEfl
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DEditorClientQt.cpp308 bool EditorClientQt::shouldInsertNode(Node* node, Range* range, EditorInsertAction action) function in class:WebCore::EditorClientQt
317 printf("EDITING DELEGATE: shouldInsertNode:%s replacingDOMRange:%s givenAction:%s\n", dumpPath(node).toUtf8().constData(),
/external/webkit/Source/WebKit/wince/WebCoreSupport/
H A DEditorClientWinCE.cpp194 bool EditorClientWinCE::shouldInsertNode(Node*, Range*, EditorInsertAction) function in class:WebKit::EditorClientWinCE
/external/webkit/Source/WebKit/wx/WebKitSupport/
H A DEditorClientWx.cpp212 bool EditorClientWx::shouldInsertNode(Node*, Range*, function in class:WebCore::EditorClientWx
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebEditorClient.cpp136 bool WebEditorClient::shouldInsertNode(Node* node, Range* rangeToReplace, EditorInsertAction action) function in class:WebKit::WebEditorClient
138 bool result = m_page->injectedBundleEditorClient().shouldInsertNode(m_page, node, rangeToReplace, action);
/external/webkit/Source/WebKit/chromium/src/
H A DEditorClientImpl.cpp205 bool EditorClientImpl::shouldInsertNode(Node* node, function in class:WebKit::EditorClientImpl
210 return m_webView->client()->shouldInsertNode(WebNode(node),
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DEditorClientGtk.cpp548 bool EditorClient::shouldInsertNode(Node* node, Range* range, EditorInsertAction action) function in class:WebKit::EditorClient
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebEditorClient.cpp251 bool WebEditorClient::shouldInsertNode(Node* /*node*/, Range* /*replacingRange*/, EditorInsertAction /*givenAction*/) function in class:WebEditorClient
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
H A DWKBundlePage.h210 WKBundlePageShouldInsertNodeCallback shouldInsertNode; member in struct:WKBundlePageEditorClient
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/
H A DInjectedBundlePage.cpp236 shouldInsertNode,
840 bool InjectedBundlePage::shouldInsertNode(WKBundlePageRef page, WKBundleNodeHandleRef node, WKBundleRangeHandleRef rangeToReplace, WKInsertActionType action, const void* clientInfo) function in class:WTR::InjectedBundlePage
842 return static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->shouldInsertNode(node, rangeToReplace, action);
905 bool InjectedBundlePage::shouldInsertNode(WKBundleNodeHandleRef node, WKBundleRangeHandleRef rangeToReplace, WKInsertActionType action) function in class:WTR::InjectedBundlePage
917 InjectedBundle::shared().os() << "EDITING DELEGATE: shouldInsertNode:" << dumpPath(m_page, m_world.get(), node) << " replacingDOMRange:" << toStr(m_page, m_world.get(), rangeToReplace) << " givenAction:" << insertactionstring[action] << "\n";
/external/webkit/Tools/DumpRenderTree/chromium/
H A DWebViewHost.cpp302 bool WebViewHost::shouldInsertNode(const WebNode& node, const WebRange& range, WebEditingAction action) function in class:WebViewHost
305 fputs("EDITING DELEGATE: shouldInsertNode:", stdout);
/external/webkit/Source/WebCore/loader/
H A DEmptyClients.h448 virtual bool shouldInsertNode(Node*, Range*, EditorInsertAction) { return false; } function in class:WebCore::EmptyEditorClient
449 // virtual bool shouldInsertNode(Node*, Range* replacingRange, WebViewInsertAction) { return false; }

Completed in 1646 milliseconds