Searched refs:shouldInsertText (Results 1 - 25 of 30) sorted by relevance

12

/external/webkit/WebKit/mac/WebView/
H A DWebEditingDelegate.h45 - (BOOL)webView:(WebView *)webView shouldInsertText:(NSString *)text replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action;
/external/webkit/WebKit/android/WebCoreSupport/
H A DEditorClientAndroid.h59 virtual bool shouldInsertText(const String&, Range*, EditorInsertAction);
H A DEditorClientAndroid.cpp73 bool EditorClientAndroid::shouldInsertText(const String&, Range*, EditorInsertAction) { return true; } function in class:android::EditorClientAndroid
/external/webkit/WebKit/haiku/WebCoreSupport/
H A DEditorClientHaiku.h65 virtual bool shouldInsertText(const String&, Range*, EditorInsertAction);
H A DEditorClientHaiku.cpp141 bool EditorClientHaiku::shouldInsertText(const String&, Range*, EditorInsertAction) function in class:WebCore::EditorClientHaiku
/external/webkit/WebKit/qt/WebCoreSupport/
H A DEditorClientQt.h64 virtual bool shouldInsertText(const String&, Range*, EditorInsertAction);
H A DEditorClientQt.cpp148 bool EditorClientQt::shouldInsertText(const String& string, Range* range, EditorInsertAction action) function in class:WebCore::EditorClientQt
157 printf("EDITING DELEGATE: shouldInsertText:%s replacingDOMRange:%s givenAction:%s\n",
/external/webkit/WebKit/win/WebCoreSupport/
H A DWebEditorClient.h56 virtual bool shouldInsertText(const WebCore::String&, WebCore::Range*, WebCore::EditorInsertAction);
/external/webkit/WebKit/wx/WebKitSupport/
H A DEditorClientWx.h65 virtual bool shouldInsertText(const String&, Range*,
H A DEditorClientWx.cpp232 bool EditorClientWx::shouldInsertText(const String&, Range*, function in class:WebCore::EditorClientWx
/external/webkit/WebKit/mac/DefaultDelegates/
H A DWebDefaultEditingDelegate.m70 - (BOOL)webView:(WebView *)webView shouldInsertText:(NSString *)text replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action
/external/webkit/WebCore/page/
H A DEditorClient.h102 virtual bool shouldInsertText(const String&, Range*, EditorInsertAction) = 0;
H A DContextMenuController.cpp230 if (frame->editor()->shouldInsertText(item->title(), frame->selection()->toNormalizedRange().get(), EditorInsertActionPasted)) {
/external/webkit/WebKit/chromium/public/
H A DWebViewClient.h112 virtual bool shouldInsertText( function in class:WebKit::WebViewClient
/external/webkit/WebKit/chromium/src/
H A DEditorClientImpl.h64 virtual bool shouldInsertText(const WebCore::String&, WebCore::Range*, WebCore::EditorInsertAction);
H A DEditorClientImpl.cpp210 bool EditorClientImpl::shouldInsertText(const String& text, function in class:WebKit::EditorClientImpl
215 return m_webView->client()->shouldInsertText(WebString(text),
/external/webkit/WebKit/gtk/WebCoreSupport/
H A DEditorClientGtk.h75 virtual bool shouldInsertText(const WebCore::String&, WebCore::Range*, WebCore::EditorInsertAction);
/external/webkit/WebKit/mac/WebCoreSupport/
H A DWebEditorClient.h60 virtual bool shouldInsertText(const WebCore::String&, WebCore::Range*, WebCore::EditorInsertAction);
H A DWebEditorClient.mm258 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/WebKitTools/DumpRenderTree/win/
H A DEditingDelegate.h62 virtual HRESULT STDMETHODCALLTYPE shouldInsertText(
H A DEditingDelegate.cpp173 HRESULT STDMETHODCALLTYPE EditingDelegate::shouldInsertText( function in class:EditingDelegate
192 _tprintf(TEXT("EDITING DELEGATE: shouldInsertText:%s replacingDOMRange:%s givenAction:%s\n"), text ? text : TEXT(""), dump(range), insertactionstring[action]);
/external/webkit/WebKitTools/DumpRenderTree/mac/
H A DEditingDelegate.mm102 - (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/
H A DIWebEditingDelegate.idl119 - (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/
H A DEditor.cpp276 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 function in class:WebCore::Editor
377 return client() && client()->shouldInsertText(text, range, action);
954 if (!shouldInsertText(text, range.get(), EditorInsertActionTyped))
983 if (!shouldInsertText("\n", m_frame->selection()->toNormalizedRange().get(), EditorInsertActionTyped))
999 if (!shouldInsertText("\n", m_frame->selection()->toNormalizedRange().get(), EditorInsertActionTyped))
2255 if (!frame()->editor()->shouldInsertText(autocorrectedString, misspellingRange.get(), EditorInsertActionTyped))
2523 } else if (canEdit() && shouldInsertText(result->replacement, rangeToReplace.get(), EditorInsertActionTyped)) {
2565 if (!shouldInsertText(replacedStrin
[all...]
H A DEditor.h108 bool shouldInsertText(const String&, Range*, EditorInsertAction) const;

Completed in 87 milliseconds

12