HomeSort by relevance Sort by last modified time
    Searched refs:shouldInsertText (Results 26 - 44 of 44) sorted by null

12

  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.cpp 134 bool EditorClientHaiku::shouldInsertText(const String&, Range*, EditorInsertAction)
  /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/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/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/Tools/WebKitTestRunner/InjectedBundle/
InjectedBundlePage.cpp 237 shouldInsertText,
    [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...]
Editor.h 128 bool shouldInsertText(const String&, Range*, EditorInsertAction) const;
  /external/webkit/Source/WebCore/loader/
EmptyClients.h 454 virtual bool shouldInsertText(const String&, Range*, EditorInsertAction) { return false; }
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundlePage.h 211 WKBundlePageShouldInsertTextCallback shouldInsertText;
  /external/webkit/Tools/DumpRenderTree/chromium/
WebViewHost.h 123 virtual bool shouldInsertText(const WebKit::WebString&, const WebKit::WebRange&, WebKit::WebEditingAction);
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/WebKit/gtk/WebCoreSupport/
EditorClientGtk.cpp 342 bool EditorClient::shouldInsertText(const String& string, Range* range, EditorInsertAction action)
    [all...]
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebEditorClient.mm 280 bool WebEditorClient::shouldInsertText(const String& text, Range* range, EditorInsertAction action)
283 return [[webView _editingDelegateForwarder] webView:webView shouldInsertText:text replacingDOMRange:kit(range) givenAction:kit(action)];
    [all...]
  /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/WebCore/page/
DragController.cpp 480 if (text.isEmpty() || !innerFrame->editor()->shouldInsertText(text, range.get(), EditorInsertActionDropped)) {
    [all...]
ContextMenuController.cpp 280 if (frame->editor()->shouldInsertText(item->title(), frame->selection()->toNormalizedRange().get(), EditorInsertActionPasted)) {
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebHTMLView.mm     [all...]

Completed in 441 milliseconds

12