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

1 2

  /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);
InjectedBundlePageEditorClient.h 51 bool shouldInsertText(WebPage*, StringImpl*, WebCore::Range* rangeToReplace, WebCore::EditorInsertAction);
  /external/webkit/Source/WebKit/mac/WebView/
WebEditingDelegate.h 45 - (BOOL)webView:(WebView *)webView shouldInsertText:(NSString *)text replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action;
  /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/Source/WebKit/android/WebCoreSupport/
EditorClientAndroid.h 66 virtual bool shouldInsertText(const String&, Range*, EditorInsertAction);
EditorClientAndroid.cpp 76 bool EditorClientAndroid::shouldInsertText(const String&, Range*, EditorInsertAction) { return true; }
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
EditorClientEfl.h 67 virtual bool shouldInsertText(const String&, Range*, EditorInsertAction);
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.h 64 virtual bool shouldInsertText(const String&, Range*, EditorInsertAction);
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
EditorClientQt.h 64 virtual bool shouldInsertText(const String&, Range*, EditorInsertAction);
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/wx/WebKitSupport/
EditorClientWx.h 65 virtual bool shouldInsertText(const String&, Range*,
  /external/webkit/Source/WebCore/page/
EditorClient.h 94 virtual bool shouldInsertText(const String&, Range*, EditorInsertAction) = 0;
  /external/webkit/Source/WebKit/chromium/public/
WebViewClient.h 151 virtual bool shouldInsertText(
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
EditorClientGtk.h 93 virtual bool shouldInsertText(const WTF::String&, WebCore::Range*, WebCore::EditorInsertAction);
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebEditorClient.h 53 virtual bool shouldInsertText(const WTF::String&, WebCore::Range*, WebCore::EditorInsertAction);
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
EditorClientWinCE.h 55 virtual bool shouldInsertText(const WTF::String&, WebCore::Range*, WebCore::EditorInsertAction);
  /external/webkit/Source/WebKit/mac/DefaultDelegates/
WebDefaultEditingDelegate.m 70 - (BOOL)webView:(WebView *)webView shouldInsertText:(NSString *)text replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
InjectedBundlePage.h 130 static bool shouldInsertText(WKBundlePageRef, WKStringRef, WKBundleRangeHandleRef rangeToReplace, WKInsertActionType, const void* clientInfo);
141 bool shouldInsertText(WKStringRef, WKBundleRangeHandleRef rangeToReplace, WKInsertActionType);
  /external/webkit/Source/WebKit/chromium/src/
EditorClientImpl.h 65 virtual bool shouldInsertText(const WTF::String&, WebCore::Range*, WebCore::EditorInsertAction);
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebEditorClient.h 61 virtual bool shouldInsertText(const WTF::String&, WebCore::Range*, WebCore::EditorInsertAction);
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebEditorClient.h 61 virtual bool shouldInsertText(const String&, WebCore::Range*, WebCore::EditorInsertAction);
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/Tools/DumpRenderTree/win/
EditingDelegate.h 62 virtual HRESULT STDMETHODCALLTYPE shouldInsertText(
  /external/webkit/Tools/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/Source/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);

Completed in 257 milliseconds

1 2