OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EventToDispatch
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/animation/
DocumentTimeline.h
82
m_events.append(
EventToDispatch
(target, event));
100
struct
EventToDispatch
{
101
EventToDispatch
(EventTarget* target, PassRefPtr<Event> event)
109
Vector<
EventToDispatch
> m_events;
DocumentTimeline.cpp
152
Vector<
EventToDispatch
> events = m_events;
/external/chromium_org/third_party/WebKit/Source/core/frame/animation/
AnimationControllerPrivate.h
119
class
EventToDispatch
{
127
Vector<
EventToDispatch
> m_eventsToDispatch;
AnimationController.cpp
190
Vector<
EventToDispatch
> eventsToDispatch = m_eventsToDispatch;
192
Vector<
EventToDispatch
>::const_iterator eventsToDispatchEnd = eventsToDispatch.end();
193
for (Vector<
EventToDispatch
>::const_iterator it = eventsToDispatch.begin(); it != eventsToDispatchEnd; ++it) {
221
EventToDispatch
& event = m_eventsToDispatch[m_eventsToDispatch.size()-1];
Completed in 808 milliseconds