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

  /external/webkit/WebKitTools/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/WebKit/chromium/public/
WebViewClient.h 112 virtual bool shouldInsertText(
  /external/webkit/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.cpp 141 bool EditorClientHaiku::shouldInsertText(const String&, Range*, EditorInsertAction)
  /external/webkit/WebKit/android/WebCoreSupport/
EditorClientAndroid.cpp 73 bool EditorClientAndroid::shouldInsertText(const String&, Range*, EditorInsertAction) { return true; }
  /external/webkit/WebKit/qt/WebCoreSupport/
EditorClientQt.cpp 148 bool EditorClientQt::shouldInsertText(const String& string, Range* range, EditorInsertAction action)
157 printf("EDITING DELEGATE: shouldInsertText:%s replacingDOMRange:%s givenAction:%s\n",
  /external/webkit/WebKit/wx/WebKitSupport/
EditorClientWx.cpp 232 bool EditorClientWx::shouldInsertText(const String&, Range*,
  /external/webkit/WebKit/chromium/src/
EditorClientImpl.cpp 210 bool EditorClientImpl::shouldInsertText(const String& text,
215 return m_webView->client()->shouldInsertText(WebString(text),
    [all...]
  /external/webkit/WebKit/gtk/WebCoreSupport/
EditorClientGtk.cpp 156 bool EditorClient::shouldInsertText(const String&, Range*, EditorInsertAction)
  /external/webkit/WebKit/win/WebCoreSupport/
WebEditorClient.cpp 258 bool WebEditorClient::shouldInsertText(const String& /*str*/, Range* /* replacingRange */, EditorInsertAction /*givenAction*/)
270 // editingDelegate->shouldInsertText(m_webView, text, domRange, (WebViewInsertAction) givenAction, &result);
  /external/webkit/WebCore/editing/
Editor.cpp 276 if (client() && client()->shouldInsertText(text, selectedRange().get(), EditorInsertActionPasted))
301 return client()->shouldInsertText(static_cast<CharacterData*>(child)->data(), replacingDOMRange.get(), givenAction);
375 bool Editor::shouldInsertText(const String& text, Range* range, EditorInsertAction action) const
377 return client() && client()->shouldInsertText(text, range, action);
    [all...]
  /external/webkit/WebCore/loader/
EmptyClients.h 354 virtual bool shouldInsertText(const String&, Range*, EditorInsertAction) { return false; }

Completed in 163 milliseconds