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

  /external/chromium_org/third_party/WebKit/Source/core/events/
TextEvent.cpp 44 PassRefPtr<TextEvent> TextEvent::createForPlainTextPaste(PassRefPtr<AbstractView> view, const String& data, bool shouldSmartReplace)
46 return adoptRef(new TextEvent(view, data, 0, shouldSmartReplace, false));
49 PassRefPtr<TextEvent> TextEvent::createForFragmentPaste(PassRefPtr<AbstractView> view, PassRefPtr<DocumentFragment> data, bool shouldSmartReplace, bool shouldMatchStyle)
51 return adoptRef(new TextEvent(view, "", data, shouldSmartReplace, shouldMatchStyle));
79 bool shouldSmartReplace, bool shouldMatchStyle)
84 , m_shouldSmartReplace(shouldSmartReplace)
TextEvent.h 43 static PassRefPtr<TextEvent> createForPlainTextPaste(PassRefPtr<AbstractView> view, const String& data, bool shouldSmartReplace);
44 static PassRefPtr<TextEvent> createForFragmentPaste(PassRefPtr<AbstractView> view, PassRefPtr<DocumentFragment> data, bool shouldSmartReplace, bool shouldMatchStyle);
61 bool shouldSmartReplace() const { return m_shouldSmartReplace; }
70 bool shouldSmartReplace, bool shouldMatchStyle);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
Editor.cpp 165 replaceSelectionWithFragment(event->pastingFragment(), false, event->shouldSmartReplace(), event->shouldMatchStyle());
167 replaceSelectionWithText(event->data(), false, event->shouldSmartReplace());
    [all...]

Completed in 27 milliseconds