Searched refs:BeforeTextInsertedEvent (Results 1 - 10 of 10) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/dom/
H A DBeforeTextInsertedEvent.cpp27 #include "BeforeTextInsertedEvent.h"
33 BeforeTextInsertedEvent::BeforeTextInsertedEvent(const String& text) function in class:WebCore::BeforeTextInsertedEvent
38 BeforeTextInsertedEvent::~BeforeTextInsertedEvent()
42 EventInterface BeforeTextInsertedEvent::eventInterface() const
44 // Notice that there is no BeforeTextInsertedEvent.idl.
H A DBeforeTextInsertedEvent.h33 class BeforeTextInsertedEvent : public Event { class in namespace:WebCore
35 virtual ~BeforeTextInsertedEvent();
37 static PassRefPtr<BeforeTextInsertedEvent> create(const String& text)
39 return adoptRef(new BeforeTextInsertedEvent(text));
49 explicit BeforeTextInsertedEvent(const String&);
54 EVENT_TYPE_CASTS(BeforeTextInsertedEvent)
/macosx-10.10/WebCore-7600.1.25/editing/
H A DTextInsertionBaseCommand.cpp29 #include "BeforeTextInsertedEvent.h"
65 // Send BeforeTextInsertedEvent. The event handler will update text if necessary.
66 RefPtr<BeforeTextInsertedEvent> evt = BeforeTextInsertedEvent::create(text);
80 RefPtr<BeforeTextInsertedEvent> event = BeforeTextInsertedEvent::create(String("\n"));
H A DReplaceSelectionCommand.cpp31 #include "BeforeTextInsertedEvent.h"
183 RefPtr<BeforeTextInsertedEvent> evt = BeforeTextInsertedEvent::create(text);
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLTextAreaElement.h31 class BeforeTextInsertedEvent;
72 void handleBeforeTextInsertedEvent(BeforeTextInsertedEvent*) const;
H A DTextFieldInputType.h88 virtual void handleBeforeTextInsertedEvent(BeforeTextInsertedEvent*) override;
H A DInputType.h50 class BeforeTextInsertedEvent;
191 virtual void handleBeforeTextInsertedEvent(BeforeTextInsertedEvent*);
H A DHTMLTextAreaElement.cpp30 #include "BeforeTextInsertedEvent.h"
294 void HTMLTextAreaElement::handleBeforeTextInsertedEvent(BeforeTextInsertedEvent* event) const
H A DTextFieldInputType.cpp35 #include "BeforeTextInsertedEvent.h"
379 void TextFieldInputType::handleBeforeTextInsertedEvent(BeforeTextInsertedEvent* event)
466 // sanitizeValue() is needed because IME input doesn't dispatch BeforeTextInsertedEvent.
H A DInputType.cpp32 #include "BeforeTextInsertedEvent.h"
458 void InputType::handleBeforeTextInsertedEvent(BeforeTextInsertedEvent*)

Completed in 284 milliseconds