HomeSort by relevance Sort by last modified time
    Searched refs:shouldInsertText (Results 1 - 25 of 30) sorted by null

1 2

  /external/webkit/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.h 65 virtual bool shouldInsertText(const String&, Range*, EditorInsertAction);
EditorClientHaiku.cpp 141 bool EditorClientHaiku::shouldInsertText(const String&, Range*, EditorInsertAction)
  /external/webkit/WebKit/mac/WebView/
WebEditingDelegate.h 45 - (BOOL)webView:(WebView *)webView shouldInsertText:(NSString *)text replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action;
  /external/webkit/WebKit/qt/WebCoreSupport/
EditorClientQt.h 64 virtual bool shouldInsertText(const String&, Range*, EditorInsertAction);
  /external/webkit/WebKit/wx/WebKitSupport/
EditorClientWx.h 65 virtual bool shouldInsertText(const String&, Range*,
EditorClientWx.cpp 232 bool EditorClientWx::shouldInsertText(const String&, Range*,
  /external/webkit/WebKit/android/WebCoreSupport/
EditorClientAndroid.h 59 virtual bool shouldInsertText(const String&, Range*, EditorInsertAction);
EditorClientAndroid.cpp 73 bool EditorClientAndroid::shouldInsertText(const String&, Range*, EditorInsertAction) { return true; }
  /external/webkit/WebKit/chromium/public/
WebViewClient.h 112 virtual bool shouldInsertText(
  /external/webkit/WebCore/page/
EditorClient.h 102 virtual bool shouldInsertText(const String&, Range*, EditorInsertAction) = 0;
ContextMenuController.cpp 230 if (frame->editor()->shouldInsertText(item->title(), frame->selection()->toNormalizedRange().get(), EditorInsertActionPasted)) {
  /external/webkit/WebKit/chromium/src/
EditorClientImpl.h 64 virtual bool shouldInsertText(const WebCore::String&, WebCore::Range*, WebCore::EditorInsertAction);
EditorClientImpl.cpp 210 bool EditorClientImpl::shouldInsertText(const String& text,
215 return m_webView->client()->shouldInsertText(WebString(text),
    [all...]
  /external/webkit/WebKit/gtk/WebCoreSupport/
EditorClientGtk.h 75 virtual bool shouldInsertText(const WebCore::String&, WebCore::Range*, WebCore::EditorInsertAction);
  /external/webkit/WebKit/mac/WebCoreSupport/
WebEditorClient.h 60 virtual bool shouldInsertText(const WebCore::String&, WebCore::Range*, WebCore::EditorInsertAction);
WebEditorClient.mm 258 bool WebEditorClient::shouldInsertText(const String& text, Range* range, EditorInsertAction action)
261 return [[webView _editingDelegateForwarder] webView:webView shouldInsertText:text replacingDOMRange:kit(range) givenAction:kit(action)];
  /external/webkit/WebKit/win/WebCoreSupport/
WebEditorClient.h 56 virtual bool shouldInsertText(const WebCore::String&, WebCore::Range*, WebCore::EditorInsertAction);
  /external/webkit/WebKit/mac/DefaultDelegates/
WebDefaultEditingDelegate.m 70 - (BOOL)webView:(WebView *)webView shouldInsertText:(NSString *)text replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action
  /external/webkit/WebKitTools/DumpRenderTree/win/
EditingDelegate.h 62 virtual HRESULT STDMETHODCALLTYPE shouldInsertText(
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/WebKitTools/DumpRenderTree/mac/
EditingDelegate.mm 102 - (BOOL)webView:(WebView *)webView shouldInsertText:(NSString *)text replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action
111 printf("EDITING DELEGATE: shouldInsertText:%s replacingDOMRange:%s givenAction:%s\n", [[text description] UTF8String], [[range dump] UTF8String], insertactionstring[action]);
  /external/webkit/WebKit/win/Interfaces/
IWebEditingDelegate.idl 119 - (BOOL)webView:(WebView *)webView shouldInsertText:(NSString *)text replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action;
121 HRESULT shouldInsertText([in] IWebView* webView, [in] BSTR text, [in] IDOMRange* range, [in] WebViewInsertAction action, [out, retval] BOOL* 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...]
Editor.h 108 bool shouldInsertText(const String&, Range*, EditorInsertAction) const;
  /external/webkit/WebCore/loader/
EmptyClients.h 354 virtual bool shouldInsertText(const String&, Range*, EditorInsertAction) { return false; }

Completed in 152 milliseconds

1 2