HomeSort by relevance Sort by last modified time
    Searched refs:EventPath (Results 1 - 25 of 25) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/events/
EventPath.h 45 class EventPath FINAL : public NoBaseWillBeGarbageCollected<EventPath> {
47 explicit EventPath(Event*);
48 explicit EventPath(Node*);
66 EventPath();
EventPath.cpp 28 #include "core/events/EventPath.h"
41 EventTarget* EventPath::eventTargetRespectingTargetRules(Node* referenceNode)
69 EventPath::EventPath(Event* event)
75 EventPath::EventPath(Node* node)
82 void EventPath::resetWith(Node* node)
93 void EventPath::addNodeEventContext(Node* node)
98 void EventPath::calculatePath()
140 void EventPath::calculateTreeScopePrePostOrderNumbers(
    [all...]
TreeScopeEventContext.h 39 class EventPath;
64 PassRefPtrWillBeRawPtr<StaticNodeList> ensureEventPath(EventPath&);
Event.h 29 #include "core/events/EventPath.h"
179 EventPath& eventPath() { ASSERT(m_eventPath); return *m_eventPath; }
180 EventPath& ensureEventPath();
212 OwnPtrWillBeMember<EventPath> m_eventPath;
TreeScopeEventContext.cpp 32 #include "core/events/EventPath.h"
37 PassRefPtrWillBeRawPtr<StaticNodeList> TreeScopeEventContext::ensureEventPath(EventPath& path)
Event.cpp 215 EventPath& Event::ensureEventPath()
218 m_eventPath = adoptPtrWillBeNoop(new EventPath(this));
Event.idl 73 [MeasureAs=EventPath] readonly attribute NodeList path;
EventDispatcher.cpp 70 mediator->event()->setTarget(EventPath::eventTargetRespectingTargetRules(node));
116 m_event->setTarget(EventPath::eventTargetRespectingTargetRules(m_node.get()));
122 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willDispatchEvent(&m_node->document(), *m_event, windowEventContext.window(), m_node.get(), m_event->eventPath());
145 return (m_event->eventPath().isEmpty() || m_event->propagationStopped()) ? DoneDispatching : ContinueDispatching;
156 for (size_t i = m_event->eventPath().size() - 1; i > 0; --i) {
157 const NodeEventContext& eventContext = m_event->eventPath()[i];
171 m_event->eventPath()[0].handleLocalEvents(m_event.get());
178 size_t size = m_event->eventPath().size();
180 const NodeEventContext& eventContext = m_event->eventPath()[i];
199 m_event->setTarget(EventPath::eventTargetRespectingTargetRules(m_node.get()))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
UseCounter.h 334 EventPath = 345,
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorTimelineAgent.h 38 #include "core/events/EventPath.h"
143 bool willDispatchEvent(Document* document, const Event& event, LocalDOMWindow* window, Node* node, const EventPath& eventPath);
InspectorInstrumentation.idl 161 InspectorInstrumentationCookie willDispatchEvent([Keep] Document*, const Event&, LocalDOMWindow*, Node*, const EventPath&);
InspectorTimelineAgent.cpp 268 static bool eventHasListeners(const AtomicString& eventType, LocalDOMWindow* window, Node* node, const EventPath& eventPath)
276 for (size_t i = 0; i < eventPath.size(); i++) {
277 if (eventPath[i].node()->hasEventListeners(eventType))
495 bool InspectorTimelineAgent::willDispatchEvent(Document* document, const Event& event, LocalDOMWindow* window, Node* node, const EventPath& eventPath)
497 if (!eventHasListeners(event.type(), window, node, eventPath))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
TreeScope.cpp 42 #include "core/events/EventPath.h"
378 EventPath eventPath(element);
379 for (size_t i = 0; i < eventPath.size(); ++i) {
380 if (eventPath[i].node() == rootNode()) {
381 // eventPath.at(i).target() is one of the followings:
386 return toElement(eventPath[i].target()->toNode());
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_dom.target.darwin-arm.mk 186 third_party/WebKit/Source/core/events/EventPath.cpp \
webcore_dom.target.darwin-arm64.mk 186 third_party/WebKit/Source/core/events/EventPath.cpp \
webcore_dom.target.darwin-mips.mk 186 third_party/WebKit/Source/core/events/EventPath.cpp \
webcore_dom.target.darwin-mips64.mk 186 third_party/WebKit/Source/core/events/EventPath.cpp \
webcore_dom.target.darwin-x86.mk 186 third_party/WebKit/Source/core/events/EventPath.cpp \
webcore_dom.target.darwin-x86_64.mk 186 third_party/WebKit/Source/core/events/EventPath.cpp \
webcore_dom.target.linux-arm.mk 186 third_party/WebKit/Source/core/events/EventPath.cpp \
webcore_dom.target.linux-arm64.mk 186 third_party/WebKit/Source/core/events/EventPath.cpp \
webcore_dom.target.linux-mips.mk 186 third_party/WebKit/Source/core/events/EventPath.cpp \
webcore_dom.target.linux-mips64.mk 186 third_party/WebKit/Source/core/events/EventPath.cpp \
webcore_dom.target.linux-x86.mk 186 third_party/WebKit/Source/core/events/EventPath.cpp \
webcore_dom.target.linux-x86_64.mk 186 third_party/WebKit/Source/core/events/EventPath.cpp \

Completed in 626 milliseconds