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

  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundlePageEditorClient.cpp 67 bool InjectedBundlePageEditorClient::shouldInsertText(WebPage* page, StringImpl* text, Range* rangeToReplace, EditorInsertAction action)
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/
EditingCallbacks.cpp 123 gboolean shouldInsertText(WebKitWebView* webView, const gchar* text, WebKitDOMRange* range, WebKitInsertAction action)
126 printf("EDITING DELEGATE: shouldInsertText:%s replacingDOMRange:%s givenAction:%s\n",
195 "signal::should-insert-text", shouldInsertText, 0,
  /external/webkit/Tools/DumpRenderTree/win/
EditingDelegate.cpp 173 HRESULT STDMETHODCALLTYPE EditingDelegate::shouldInsertText(
192 _tprintf(TEXT("EDITING DELEGATE: shouldInsertText:%s replacingDOMRange:%s givenAction:%s\n"), text ? text : TEXT(""), dump(range), insertactionstring[action]);
  /external/webkit/Source/WebKit/chromium/public/
WebViewClient.h 151 virtual bool shouldInsertText(
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.cpp 134 bool EditorClientHaiku::shouldInsertText(const String&, Range*, EditorInsertAction)
  /external/webkit/Source/WebKit/android/WebCoreSupport/
EditorClientAndroid.cpp 76 bool EditorClientAndroid::shouldInsertText(const String&, Range*, EditorInsertAction) { return true; }
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
EditorClientEfl.cpp 94 bool EditorClientEfl::shouldInsertText(const String&, Range*, EditorInsertAction)
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
EditorClientWinCE.cpp 93 bool EditorClientWinCE::shouldInsertText(const String&, Range*, EditorInsertAction)
  /external/webkit/Source/WebKit/wx/WebKitSupport/
EditorClientWx.cpp 219 bool EditorClientWx::shouldInsertText(const String&, Range*,
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebEditorClient.cpp 143 bool WebEditorClient::shouldInsertText(const String& text, Range* rangeToReplace, EditorInsertAction action)
145 bool result = m_page->injectedBundleEditorClient().shouldInsertText(m_page, text.impl(), rangeToReplace, action);
  /external/webkit/Source/WebKit/chromium/src/
EditorClientImpl.cpp 217 bool EditorClientImpl::shouldInsertText(const String& text,
222 return m_webView->client()->shouldInsertText(WebString(text),
    [all...]
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
EditorClientGtk.cpp 342 bool EditorClient::shouldInsertText(const String& string, Range* range, EditorInsertAction action)
    [all...]
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
EditorClientQt.cpp 138 bool EditorClientQt::shouldInsertText(const String& string, Range* range, EditorInsertAction action)
147 printf("EDITING DELEGATE: shouldInsertText:%s replacingDOMRange:%s givenAction:%s\n",
467 bool shouldInsertText = false;
472 shouldInsertText = true;
478 shouldInsertText = true;
483 if (shouldInsertText) {
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebEditorClient.cpp 257 bool WebEditorClient::shouldInsertText(const String& /*str*/, Range* /* replacingRange */, EditorInsertAction /*givenAction*/)
269 // editingDelegate->shouldInsertText(m_webView, text, domRange, (WebViewInsertAction) givenAction, &result);
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundlePage.h 211 WKBundlePageShouldInsertTextCallback shouldInsertText;
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
InjectedBundlePage.cpp 237 shouldInsertText,
    [all...]
  /external/webkit/Tools/DumpRenderTree/chromium/
WebViewHost.cpp 314 bool WebViewHost::shouldInsertText(const WebString& text, const WebRange& range, WebEditingAction action)
317 printf("EDITING DELEGATE: shouldInsertText:%s replacingDOMRange:", text.utf8().data());
    [all...]
  /external/webkit/Source/WebCore/editing/
Editor.cpp 368 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
484 return client() && client()->shouldInsertText(text, range, action);
    [all...]
  /external/webkit/Source/WebCore/loader/
EmptyClients.h 450 virtual bool shouldInsertText(const String&, Range*, EditorInsertAction) { return false; }

Completed in 557 milliseconds