TextEvent 2260 Source/core/dom/Node.cpp if (event->hasInterface(EventNames::TextEvent)) { TextEvent 155 Source/core/editing/Editor.cpp bool Editor::handleTextEvent(TextEvent* event) TextEvent 350 Source/core/editing/Editor.cpp target->dispatchEvent(TextEvent::createForPlainTextPaste(m_frame.domWindow(), pastingText, smartReplace), IGNORE_EXCEPTION); TextEvent 358 Source/core/editing/Editor.cpp target->dispatchEvent(TextEvent::createForFragmentPaste(m_frame.domWindow(), pastingFragment, smartReplace, matchStyle), IGNORE_EXCEPTION); TextEvent 779 Source/core/editing/Editor.cpp bool Editor::insertTextWithoutSendingTextEvent(const String& text, bool selectInsertedText, TextEvent* triggeringEvent) TextEvent 60 Source/core/editing/Editor.h class TextEvent; TextEvent 79 Source/core/editing/Editor.h bool handleTextEvent(TextEvent*); TextEvent 161 Source/core/editing/Editor.h bool insertTextWithoutSendingTextEvent(const String&, bool selectInsertedText, TextEvent* triggeringEvent); TextEvent 34 Source/core/events/TextEvent.cpp PassRefPtrWillBeRawPtr<TextEvent> TextEvent::create() TextEvent 36 Source/core/events/TextEvent.cpp return adoptRefWillBeNoop(new TextEvent); TextEvent 39 Source/core/events/TextEvent.cpp PassRefPtrWillBeRawPtr<TextEvent> TextEvent::create(PassRefPtrWillBeRawPtr<AbstractView> view, const String& data, TextEventInputType inputType) TextEvent 41 Source/core/events/TextEvent.cpp return adoptRefWillBeNoop(new TextEvent(view, data, inputType)); TextEvent 44 Source/core/events/TextEvent.cpp PassRefPtrWillBeRawPtr<TextEvent> TextEvent::createForPlainTextPaste(PassRefPtrWillBeRawPtr<AbstractView> view, const String& data, bool shouldSmartReplace) TextEvent 46 Source/core/events/TextEvent.cpp return adoptRefWillBeNoop(new TextEvent(view, data, nullptr, shouldSmartReplace, false)); TextEvent 49 Source/core/events/TextEvent.cpp PassRefPtrWillBeRawPtr<TextEvent> TextEvent::createForFragmentPaste(PassRefPtrWillBeRawPtr<AbstractView> view, PassRefPtr<DocumentFragment> data, bool shouldSmartReplace, bool shouldMatchStyle) TextEvent 51 Source/core/events/TextEvent.cpp return adoptRefWillBeNoop(new TextEvent(view, "", data, shouldSmartReplace, shouldMatchStyle)); TextEvent 54 Source/core/events/TextEvent.cpp PassRefPtrWillBeRawPtr<TextEvent> TextEvent::createForDrop(PassRefPtrWillBeRawPtr<AbstractView> view, const String& data) TextEvent 56 Source/core/events/TextEvent.cpp return adoptRefWillBeNoop(new TextEvent(view, data, TextEventInputDrop)); TextEvent 59 Source/core/events/TextEvent.cpp TextEvent::TextEvent() TextEvent 67 Source/core/events/TextEvent.cpp TextEvent::TextEvent(PassRefPtrWillBeRawPtr<AbstractView> view, const String& data, TextEventInputType inputType) TextEvent 78 Source/core/events/TextEvent.cpp TextEvent::TextEvent(PassRefPtrWillBeRawPtr<AbstractView> view, const String& data, PassRefPtr<DocumentFragment> pastingFragment, TextEvent 90 Source/core/events/TextEvent.cpp TextEvent::~TextEvent() TextEvent 94 Source/core/events/TextEvent.cpp void TextEvent::initTextEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, const String& data) TextEvent 104 Source/core/events/TextEvent.cpp const AtomicString& TextEvent::interfaceName() const TextEvent 106 Source/core/events/TextEvent.cpp return EventNames::TextEvent; TextEvent 109 Source/core/events/TextEvent.cpp void TextEvent::trace(Visitor* visitor) TextEvent 37 Source/core/events/TextEvent.h class TextEvent FINAL : public UIEvent { TextEvent 40 Source/core/events/TextEvent.h static PassRefPtrWillBeRawPtr<TextEvent> create(); TextEvent 41 Source/core/events/TextEvent.h static PassRefPtrWillBeRawPtr<TextEvent> create(PassRefPtrWillBeRawPtr<AbstractView>, const String& data, TextEventInputType = TextEventInputKeyboard); TextEvent 42 Source/core/events/TextEvent.h static PassRefPtrWillBeRawPtr<TextEvent> createForPlainTextPaste(PassRefPtrWillBeRawPtr<AbstractView>, const String& data, bool shouldSmartReplace); TextEvent 43 Source/core/events/TextEvent.h static PassRefPtrWillBeRawPtr<TextEvent> createForFragmentPaste(PassRefPtrWillBeRawPtr<AbstractView>, PassRefPtr<DocumentFragment> data, bool shouldSmartReplace, bool shouldMatchStyle); TextEvent 44 Source/core/events/TextEvent.h static PassRefPtrWillBeRawPtr<TextEvent> createForDrop(PassRefPtrWillBeRawPtr<AbstractView>, const String& data); TextEvent 46 Source/core/events/TextEvent.h virtual ~TextEvent(); TextEvent 66 Source/core/events/TextEvent.h TextEvent(); TextEvent 68 Source/core/events/TextEvent.h TextEvent(PassRefPtrWillBeRawPtr<AbstractView>, const String& data, TextEventInputType = TextEventInputKeyboard); TextEvent 69 Source/core/events/TextEvent.h TextEvent(PassRefPtrWillBeRawPtr<AbstractView>, const String& data, PassRefPtr<DocumentFragment>, TextEvent 82 Source/core/events/TextEvent.h return event.type() == EventTypeNames::textInput && event.hasInterface(EventNames::TextEvent); TextEvent 85 Source/core/events/TextEvent.h DEFINE_TYPE_CASTS(TextEvent, Event, event, isTextEvent(*event), isTextEvent(event)); TextEvent 261 Source/core/html/forms/TextFieldInputType.cpp return (event->type() == EventTypeNames::textInput && event->hasInterface(EventNames::TextEvent) && toTextEvent(event)->data() == "\n") || InputType::shouldSubmitImplicitly(event); TextEvent 393 Source/core/html/shadow/TextControlInnerElements.cpp input->dispatchEvent(TextEvent::create(document().domWindow(), results.isEmpty() ? "" : results[0]->utterance(), TextEventInputOther)); TextEvent 443 Source/core/page/DragController.cpp return target->dispatchEvent(TextEvent::createForDrop(innerFrame->domWindow(), text), IGNORE_EXCEPTION); TextEvent 3412 Source/core/page/EventHandler.cpp RefPtrWillBeRawPtr<TextEvent> event = TextEvent::create(m_frame->domWindow(), text, inputType); TextEvent 3419 Source/core/page/EventHandler.cpp void EventHandler::defaultTextInputEventHandler(TextEvent* event) TextEvent 76 Source/core/page/EventHandler.h class TextEvent; TextEvent 167 Source/core/page/EventHandler.h void defaultTextInputEventHandler(TextEvent*); TextEvent 129 Source/web/WebDOMEvent.cpp return m_private->hasInterface(WebCore::EventNames::TextEvent);