Home
last modified time | relevance | path

Searched refs:TextEvent (Results 1 – 25 of 32) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/events/
DTextEvent.cpp34 PassRefPtr<TextEvent> TextEvent::create() in create()
36 return adoptRef(new TextEvent); in create()
39 PassRefPtr<TextEvent> TextEvent::create(PassRefPtr<AbstractView> view, const String& data, TextEven… in create()
41 return adoptRef(new TextEvent(view, data, inputType)); in create()
44 PassRefPtr<TextEvent> TextEvent::createForPlainTextPaste(PassRefPtr<AbstractView> view, const Strin… in createForPlainTextPaste()
46 return adoptRef(new TextEvent(view, data, 0, shouldSmartReplace, false)); in createForPlainTextPaste()
49 PassRefPtr<TextEvent> TextEvent::createForFragmentPaste(PassRefPtr<AbstractView> view, PassRefPtr<D… in createForFragmentPaste()
51 return adoptRef(new TextEvent(view, "", data, shouldSmartReplace, shouldMatchStyle)); in createForFragmentPaste()
54 PassRefPtr<TextEvent> TextEvent::createForDrop(PassRefPtr<AbstractView> view, const String& data) in createForDrop()
56 return adoptRef(new TextEvent(view, data, TextEventInputDrop)); in createForDrop()
[all …]
DTextEvent.h38 class TextEvent : public UIEvent {
41 static PassRefPtr<TextEvent> create();
42 …static PassRefPtr<TextEvent> create(PassRefPtr<AbstractView>, const String& data, TextEventInputTy…
43 …static PassRefPtr<TextEvent> createForPlainTextPaste(PassRefPtr<AbstractView> view, const String& …
44 …static PassRefPtr<TextEvent> createForFragmentPaste(PassRefPtr<AbstractView> view, PassRefPtr<Docu…
45 … static PassRefPtr<TextEvent> createForDrop(PassRefPtr<AbstractView> view, const String& data);
47 virtual ~TextEvent();
66 TextEvent();
68TextEvent(PassRefPtr<AbstractView>, const String& data, TextEventInputType = TextEventInputKeyboar…
69 TextEvent(PassRefPtr<AbstractView>, const String& data, PassRefPtr<DocumentFragment>,
[all …]
DTextEvent.idl27 interface TextEvent : UIEvent {
/external/chromium_org/third_party/WebKit/Source/core/editing/
DEditor.h59 class TextEvent; variable
78 bool handleTextEvent(TextEvent*);
169 …bool insertTextWithoutSendingTextEvent(const String&, bool selectInsertedText, TextEvent* triggeri…
DEditor.cpp156 bool Editor::handleTextEvent(TextEvent* event) in handleTextEvent()
353 …target->dispatchEvent(TextEvent::createForPlainTextPaste(m_frame.domWindow(), pastingText, smartRe… in pasteAsPlainText()
361 …target->dispatchEvent(TextEvent::createForFragmentPaste(m_frame.domWindow(), pastingFragment, smar… in pasteAsFragment()
859 …extWithoutSendingTextEvent(const String& text, bool selectInsertedText, TextEvent* triggeringEvent) in insertTextWithoutSendingTextEvent()
/external/chromium_org/third_party/WebKit/Source/core/page/
DEventHandler.h75 class TextEvent; variable
165 void defaultTextInputEventHandler(TextEvent*);
DDragController.cpp444 …return target->dispatchEvent(TextEvent::createForDrop(innerFrame->domWindow(), text), IGNORE_EXCEP… in dispatchTextInputEventFor()
DEventHandler.cpp3412 RefPtr<TextEvent> event = TextEvent::create(m_frame->domWindow(), text, inputType); in handleTextInputEvent()
3419 void EventHandler::defaultTextInputEventHandler(TextEvent* event) in defaultTextInputEventHandler()
/external/chromium_org/third_party/WebKit/Source/web/
DWebDOMEvent.cpp132 return m_private->hasInterface(WebCore::EventNames::TextEvent); in isTextEvent()
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
DTextControlInnerElements.cpp416 …input->dispatchEvent(TextEvent::create(document().domWindow(), results.isEmpty() ? "" : results[0]… in setRecognitionResult()
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
DTextFieldInputType.cpp270 …return (event->type() == EventTypeNames::textInput && event->hasInterface(EventNames::TextEvent) &… in shouldSubmitImplicitly()
/external/chromium_org/third_party/WebKit/Source/core/
Dwebcore_dom.target.linux-x86.mk193 third_party/WebKit/Source/core/events/TextEvent.cpp \
Dwebcore_dom.target.darwin-x86.mk193 third_party/WebKit/Source/core/events/TextEvent.cpp \
Dwebcore_dom.target.linux-mips.mk193 third_party/WebKit/Source/core/events/TextEvent.cpp \
Dwebcore_dom.target.darwin-mips.mk193 third_party/WebKit/Source/core/events/TextEvent.cpp \
Dwebcore_dom.target.darwin-arm.mk193 third_party/WebKit/Source/core/events/TextEvent.cpp \
Dwebcore_dom.target.linux-arm.mk193 third_party/WebKit/Source/core/events/TextEvent.cpp \
Dcore.gypi117 'events/TextEvent.idl',
2151 'events/TextEvent.cpp',
2152 'events/TextEvent.h',
/external/chromium_org/third_party/WebKit/Source/bindings/
Dmain_idl_files_list.tmp111 ../core/events/TextEvent.idl
Dinterface_dependencies.target.darwin-mips.mk21 …yViolationEvent.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/events/TextEvent.idl $(LOCAL_PATH…
Dinterface_dependencies.target.darwin-x86.mk21 …yViolationEvent.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/events/TextEvent.idl $(LOCAL_PATH…
Dinterface_dependencies.target.darwin-arm.mk21 …yViolationEvent.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/events/TextEvent.idl $(LOCAL_PATH…
Dinterface_dependencies.target.linux-mips.mk21 …yViolationEvent.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/events/TextEvent.idl $(LOCAL_PATH…
Dinterface_dependencies.target.linux-arm.mk21 …yViolationEvent.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/events/TextEvent.idl $(LOCAL_PATH…
/external/chromium_org/third_party/WebKit/Source/core/dom/
DNode.cpp2481 if (event->hasInterface(EventNames::TextEvent)) { in defaultEventHandler()

12