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

/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
H A DInjectedBundlePageEditorClient.cpp67 bool InjectedBundlePageEditorClient::shouldInsertText(WebPage* page, StringImpl* text, Range* rangeToReplace, EditorInsertAction action) function in class:WebKit::InjectedBundlePageEditorClient
69 if (m_client.shouldInsertText) {
71 return m_client.shouldInsertText(toAPI(page), toAPI(text), toAPI(rangeToReplaceHandle.get()), toAPI(action), m_client.clientInfo);
/external/webkit/Tools/DumpRenderTree/gtk/
H A DEditingCallbacks.cpp123 gboolean shouldInsertText(WebKitWebView* webView, const gchar* text, WebKitDOMRange* range, WebKitInsertAction action) function
126 printf("EDITING DELEGATE: shouldInsertText:%s replacingDOMRange:%s givenAction:%s\n",
195 "signal::should-insert-text", shouldInsertText, 0, local
/external/webkit/Tools/DumpRenderTree/win/
H A DEditingDelegate.cpp173 HRESULT STDMETHODCALLTYPE EditingDelegate::shouldInsertText( function in class:EditingDelegate
192 _tprintf(TEXT("EDITING DELEGATE: shouldInsertText:%s replacingDOMRange:%s givenAction:%s\n"), text ? text : TEXT(""), dump(range), insertactionstring[action]);
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DEditorClientAndroid.cpp76 bool EditorClientAndroid::shouldInsertText(const String&, Range*, EditorInsertAction) { return true; } function in class:android::EditorClientAndroid
/external/webkit/Source/WebKit/haiku/WebCoreSupport/
H A DEditorClientHaiku.cpp134 bool EditorClientHaiku::shouldInsertText(const String&, Range*, EditorInsertAction) function in class:WebCore::EditorClientHaiku
/external/webkit/Source/WebKit/chromium/public/
H A DWebViewClient.h151 virtual bool shouldInsertText( function in class:WebKit::WebViewClient
/external/webkit/Source/WebKit/efl/WebCoreSupport/
H A DEditorClientEfl.cpp94 bool EditorClientEfl::shouldInsertText(const String&, Range*, EditorInsertAction) function in class:WebCore::EditorClientEfl
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DEditorClientQt.cpp138 bool EditorClientQt::shouldInsertText(const String& string, Range* range, EditorInsertAction action) function in class:WebCore::EditorClientQt
147 printf("EDITING DELEGATE: shouldInsertText:%s replacingDOMRange:%s givenAction:%s\n",
467 bool shouldInsertText = false; local
472 shouldInsertText = true;
478 shouldInsertText = true;
483 if (shouldInsertText) {
/external/webkit/Source/WebKit/wince/WebCoreSupport/
H A DEditorClientWinCE.cpp93 bool EditorClientWinCE::shouldInsertText(const String&, Range*, EditorInsertAction) function in class:WebKit::EditorClientWinCE
/external/webkit/Source/WebKit/wx/WebKitSupport/
H A DEditorClientWx.cpp219 bool EditorClientWx::shouldInsertText(const String&, Range*, function in class:WebCore::EditorClientWx
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebEditorClient.cpp143 bool WebEditorClient::shouldInsertText(const String& text, Range* rangeToReplace, EditorInsertAction action) function in class:WebKit::WebEditorClient
145 bool result = m_page->injectedBundleEditorClient().shouldInsertText(m_page, text.impl(), rangeToReplace, action);
/external/webkit/Source/WebKit/chromium/src/
H A DEditorClientImpl.cpp217 bool EditorClientImpl::shouldInsertText(const String& text, function in class:WebKit::EditorClientImpl
222 return m_webView->client()->shouldInsertText(WebString(text),
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DEditorClientGtk.cpp342 bool EditorClient::shouldInsertText(const String& string, Range* range, EditorInsertAction action) function in class:WebKit::EditorClient
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebEditorClient.cpp257 bool WebEditorClient::shouldInsertText(const String& /*str*/, Range* /* replacingRange */, EditorInsertAction /*givenAction*/) function in class:WebEditorClient
269 // editingDelegate->shouldInsertText(m_webView, text, domRange, (WebViewInsertAction) givenAction, &result);
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
H A DWKBundlePage.h211 WKBundlePageShouldInsertTextCallback shouldInsertText; member in struct:WKBundlePageEditorClient
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/
H A DInjectedBundlePage.cpp237 shouldInsertText,
845 bool InjectedBundlePage::shouldInsertText(WKBundlePageRef page, WKStringRef text, WKBundleRangeHandleRef rangeToReplace, WKInsertActionType action, const void* clientInfo) function in class:WTR::InjectedBundlePage
847 return static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->shouldInsertText(text, rangeToReplace, action);
921 bool InjectedBundlePage::shouldInsertText(WKStringRef text, WKBundleRangeHandleRef rangeToReplace, WKInsertActionType action) function in class:WTR::InjectedBundlePage
933 InjectedBundle::shared().os() << "EDITING DELEGATE: shouldInsertText:" << text << " replacingDOMRange:" << toStr(m_page, m_world.get(), rangeToReplace) << " givenAction:" << insertactionstring[action] << "\n";
/external/webkit/Tools/DumpRenderTree/chromium/
H A DWebViewHost.cpp314 bool WebViewHost::shouldInsertText(const WebString& text, const WebRange& range, WebEditingAction action) function in class:WebViewHost
317 printf("EDITING DELEGATE: shouldInsertText:%s replacingDOMRange:", text.utf8().data());
/external/webkit/Source/WebCore/editing/
H A DEditor.cpp368 if (client() && client()->shouldInsertText(text, selectedRange().get(), EditorInsertActionPasted))
396 return client()->shouldInsertText(static_cast<CharacterData*>(child)->data(), replacingDOMRange.get(), givenAction);
482 bool Editor::shouldInsertText(const String& text, Range* range, EditorInsertAction action) const function in class:WebCore::Editor
484 return client() && client()->shouldInsertText(text, range, action);
1091 if (!shouldInsertText(text, range.get(), EditorInsertActionTyped))
1137 if (!shouldInsertText("\n", m_frame->selection()->toNormalizedRange().get(), EditorInsertActionTyped))
1155 if (!shouldInsertText("\n", m_frame->selection()->toNormalizedRange().get(), EditorInsertActionTyped))
2032 if (!frame()->editor()->shouldInsertText(autocorrectedString, misspellingRange.get(), EditorInsertActionTyped))
2274 } else if (canEdit() && shouldInsertText(result->replacement, rangeToReplace.get(), EditorInsertActionTyped)) {
2331 if (!shouldInsertText(replacedStrin
[all...]
/external/webkit/Source/WebCore/loader/
H A DEmptyClients.h450 virtual bool shouldInsertText(const String&, Range*, EditorInsertAction) { return false; } function in class:WebCore::EmptyEditorClient

Completed in 5813 milliseconds