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

  /external/webkit/Source/WebCore/dom/
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));
77 bool shouldSmartReplace, bool shouldMatchStyle)
82 , m_shouldSmartReplace(shouldSmartReplace)
TextEvent.h 41 static PassRefPtr<TextEvent> createForPlainTextPaste(PassRefPtr<AbstractView> view, const String& data, bool shouldSmartReplace);
42 static PassRefPtr<TextEvent> createForFragmentPaste(PassRefPtr<AbstractView> view, PassRefPtr<DocumentFragment> data, bool shouldSmartReplace, bool shouldMatchStyle);
59 bool shouldSmartReplace() const { return m_shouldSmartReplace; }
68 bool shouldSmartReplace, bool shouldMatchStyle);
  /external/webkit/Source/WebCore/editing/
Editor.cpp 166 replaceSelectionWithFragment(event->pastingFragment(), false, event->shouldSmartReplace(), event->shouldMatchStyle());
168 replaceSelectionWithText(event->data(), false, event->shouldSmartReplace());
    [all...]

Completed in 165 milliseconds