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

  /external/chromium_org/third_party/WebKit/Source/core/page/
EditorClient.h 72 virtual bool shouldInsertText(const String&, Range*, EditorInsertAction) = 0;
DragController.cpp 515 if (text.isEmpty() || !innerFrame->editor()->shouldInsertText(text, range.get(), EditorInsertActionDropped)) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
EditorClientImpl.h 63 virtual bool shouldInsertText(const WTF::String&, WebCore::Range*, WebCore::EditorInsertAction) OVERRIDE;
EditorClientImpl.cpp 180 bool EditorClientImpl::shouldInsertText(const String& text,
185 return m_webView->client()->shouldInsertText(WebString(text),
  /external/chromium_org/third_party/WebKit/public/testing/
WebTestProxy.h 161 bool shouldInsertText(const WebKit::WebString& text, const WebKit::WebRange&, WebKit::WebEditingAction);
330 virtual bool shouldInsertText(const WebKit::WebString& text, const WebKit::WebRange& range, WebKit::WebEditingAction action)
332 WebTestProxyBase::shouldInsertText(text, range, action);
333 return Base::shouldInsertText(text, range, action);
  /external/chromium_org/third_party/WebKit/public/web/
WebViewClient.h 171 virtual bool shouldInsertText(
  /external/chromium_org/third_party/WebKit/Source/core/editing/
Editor.cpp 370 if (client() && client()->shouldInsertText(text, selectedRange().get(), EditorInsertActionPasted))
396 return client()->shouldInsertText(static_cast<CharacterData*>(child)->data(), replacingDOMRange.get(), givenAction);
471 bool Editor::shouldInsertText(const String& text, Range* range, EditorInsertAction action) const
473 return client() && client()->shouldInsertText(text, range, action);
838 if (!shouldInsertText(text, range.get(), EditorInsertActionTyped))
874 if (!shouldInsertText("\n", m_frame->selection()->toNormalizedRange().get(), EditorInsertActionTyped))
893 if (!shouldInsertText("\n", m_frame->selection()->toNormalizedRange().get(), EditorInsertActionTyped))
    [all...]
Editor.h 113 bool shouldInsertText(const String&, Range*, EditorInsertAction) const;
  /external/chromium_org/third_party/WebKit/Source/core/loader/
EmptyClients.h 281 virtual bool shouldInsertText(const String&, Range*, EditorInsertAction) OVERRIDE { return false; }
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
WebTestProxy.cpp 954 bool WebTestProxyBase::shouldInsertText(const WebString& text, const WebRange& range, WebEditingAction action)
957 m_delegate->printMessage(string("EDITING DELEGATE: shouldInsertText:") + text.utf8().data() + " replacingDOMRange:");
    [all...]

Completed in 214 milliseconds