OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EventDispatcher
(Results
1 - 25
of
46
) sorted by null
1
2
/external/chromium_org/ui/events/
event_handler.h
19
class
EventDispatcher
;
53
friend class
EventDispatcher
;
55
//
EventDispatcher
pushes itself on the top of this stack while dispatching
57
std::stack<
EventDispatcher
*> dispatchers_;
event_dispatcher.h
16
class
EventDispatcher
;
66
EventDispatcher
* dispatcher_;
72
class EVENTS_EXPORT
EventDispatcher
{
74
explicit
EventDispatcher
(EventDispatcherDelegate* delegate);
75
virtual ~
EventDispatcher
();
104
DISALLOW_COPY_AND_ASSIGN(
EventDispatcher
);
event_dispatcher.cc
75
EventDispatcher
* old_dispatcher = dispatcher_;
76
EventDispatcher
dispatcher(this);
88
//
EventDispatcher
:
90
EventDispatcher
::
EventDispatcher
(EventDispatcherDelegate* delegate)
95
EventDispatcher
::~
EventDispatcher
() {
98
void
EventDispatcher
::OnHandlerDestroyed(EventHandler* handler) {
104
void
EventDispatcher
::ProcessEvent(EventTarget* target, Event* event) {
145
void
EventDispatcher
::OnDispatcherDelegateDestroyed()
[
all
...]
event_target.h
18
class
EventDispatcher
;
94
friend class
EventDispatcher
;
event_handler.cc
17
EventDispatcher
* dispatcher = dispatchers_.top();
/external/chromium_org/third_party/WebKit/Source/core/events/
EventDispatchMediator.h
41
class
EventDispatcher
;
48
virtual bool dispatchEvent(
EventDispatcher
*) const;
EventDispatcher.cpp
27
#include "core/events/
EventDispatcher
.h"
43
bool
EventDispatcher
::dispatchEvent(Node* node, PassRefPtr<EventDispatchMediator> mediator)
48
EventDispatcher
dispatcher(node, mediator->event());
52
EventDispatcher
::
EventDispatcher
(Node* node, PassRefPtr<Event> event)
66
void
EventDispatcher
::dispatchScopedEvent(Node* node, PassRefPtr<EventDispatchMediator> mediator)
73
void
EventDispatcher
::dispatchSimulatedClick(Node* node, Event* underlyingEvent, SimulatedClickMouseEventOptions mouseEventOptions)
86
EventDispatcher
(node, SimulatedMouseEvent::create(EventTypeNames::mouseover, node->document().domWindow(), underlyingEvent)).dispatch();
89
EventDispatcher
(node, SimulatedMouseEvent::create(EventTypeNames::mousedown, node->document().domWindow(), underlyingEvent)).dispatch();
92
EventDispatcher
(node, SimulatedMouseEvent::create(EventTypeNames::mouseup, node->document().domWindow(), underlyin (…)
[
all
...]
EventDispatchMediator.cpp
35
#include "core/events/
EventDispatcher
.h"
49
bool EventDispatchMediator::dispatchEvent(
EventDispatcher
* dispatcher) const
EventDispatcher.h
52
class
EventDispatcher
{
64
EventDispatcher
(Node*, PassRefPtr<Event>);
FocusEvent.cpp
30
#include "core/events/
EventDispatcher
.h"
80
bool FocusEventDispatchMediator::dispatchEvent(
EventDispatcher
* dispatcher) const
96
bool BlurEventDispatchMediator::dispatchEvent(
EventDispatcher
* dispatcher) const
112
bool FocusInEventDispatchMediator::dispatchEvent(
EventDispatcher
* dispatcher) const
128
bool FocusOutEventDispatchMediator::dispatchEvent(
EventDispatcher
* dispatcher) const
FocusEvent.h
82
virtual bool dispatchEvent(
EventDispatcher
*) const OVERRIDE;
91
virtual bool dispatchEvent(
EventDispatcher
*) const OVERRIDE;
100
virtual bool dispatchEvent(
EventDispatcher
*) const OVERRIDE;
109
virtual bool dispatchEvent(
EventDispatcher
*) const OVERRIDE;
GestureEvent.h
29
#include "core/events/
EventDispatcher
.h"
71
virtual bool dispatchEvent(
EventDispatcher
*) const OVERRIDE;
KeyboardEvent.h
32
class
EventDispatcher
;
125
virtual bool dispatchEvent(
EventDispatcher
*) const OVERRIDE;
ScopedEventQueue.cpp
36
#include "core/events/
EventDispatcher
.h"
83
EventDispatcher
::dispatchEvent(node, mediator);
MouseEvent.h
33
class
EventDispatcher
;
138
virtual bool dispatchEvent(
EventDispatcher
*) const OVERRIDE;
TouchEvent.cpp
31
#include "core/events/
EventDispatcher
.h"
107
bool TouchEventDispatchMediator::dispatchEvent(
EventDispatcher
* dispatcher) const
TouchEvent.h
93
virtual bool dispatchEvent(
EventDispatcher
*) const OVERRIDE;
GestureEvent.cpp
130
bool GestureEventDispatchMediator::dispatchEvent(
EventDispatcher
* dispatcher) const
WheelEvent.h
123
virtual bool dispatchEvent(
EventDispatcher
*) const OVERRIDE;
Event.h
38
class
EventDispatcher
;
/external/chromium_org/base/message_loop/
message_pump_gtk.h
35
// some task before/after calling the default handler (
EventDispatcher
).
49
// Invoked from
EventDispatcher
. Notifies all observers we're about to
53
// Invoked from
EventDispatcher
. Notifies all observers we processed an
58
static void
EventDispatcher
(GdkEvent* event, void* data);
message_pump_gtk.cc
65
gdk_event_handler_set(&
EventDispatcher
, this, NULL);
115
void MessagePumpGtk::
EventDispatcher
(GdkEvent* event, gpointer data) {
/external/chromium/base/
message_pump_glib.h
83
// some task before/after calling the default handler (
EventDispatcher
).
101
// Invoked from
EventDispatcher
. Notifies all observers we're about to
105
// Invoked from
EventDispatcher
. Notifies all observers we processed an
110
static void
EventDispatcher
(GdkEvent* event, void* data);
message_pump_glib.cc
163
gdk_event_handler_set(&
EventDispatcher
, this, NULL);
359
void MessagePumpForUI::
EventDispatcher
(GdkEvent* event, gpointer data) {
/external/chromium/third_party/libjingle/source/talk/base/
physicalsocketserver.cc
523
class
EventDispatcher
: public Dispatcher {
525
EventDispatcher
(PhysicalSocketServer* ss) : ss_(ss), fSignaled_(false) {
531
virtual ~
EventDispatcher
() {
961
class
EventDispatcher
: public Dispatcher {
963
EventDispatcher
(PhysicalSocketServer *ss) : ss_(ss) {
970
~
EventDispatcher
() {
1131
class Signaler : public
EventDispatcher
{
1134
:
EventDispatcher
(ss), pf_(pf) {
[
all
...]
Completed in 393 milliseconds
1
2