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

  /external/chromium_org/third_party/WebKit/Source/core/events/
EventRetargeter.cpp 32 #include "core/events/EventPath.h"
42 adjustForRelatedTarget(node, mouseEvent.relatedTarget(), mouseEvent.eventPath());
47 adjustForRelatedTarget(node, focusEvent.relatedTarget(), focusEvent.eventPath());
52 EventPath& eventPath = touchEvent.eventPath();
53 size_t eventPathSize = eventPath.size();
60 TouchEventContext* touchEventContext = eventPath[i].ensureTouchEventContext();
66 adjustTouchList(node, touchEvent.touches(), eventPath, eventPathTouches);
67 adjustTouchList(node, touchEvent.targetTouches(), eventPath, eventPathTargetTouches)
    [all...]
EventDispatcher.cpp 63 m_event->eventPath().resetWith(m_node.get());
69 mediator->event()->setTarget(EventPath::eventTargetRespectingTargetRules(node));
109 m_event->setTarget(EventPath::eventTargetRespectingTargetRules(m_node.get()));
113 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willDispatchEvent(&m_node->document(), *m_event, windowEventContext.window(), m_node.get(), m_event->eventPath());
135 return (m_event->eventPath().isEmpty() || m_event->propagationStopped()) ? DoneDispatching : ContinueDispatching;
146 for (size_t i = m_event->eventPath().size() - 1; i > 0; --i) {
147 const EventContext& eventContext = m_event->eventPath()[i];
161 m_event->eventPath()[0].handleLocalEvents(m_event.get());
168 size_t size = m_event->eventPath().size();
170 const EventContext& eventContext = m_event->eventPath()[i]
    [all...]
Event.cpp 204 ASSERT(m_eventPath[i].eventPath());
205 return m_eventPath[i].eventPath();
EventPath.cpp 28 #include "core/events/EventPath.h"
43 Node* EventPath::parent(Node* node)
45 EventPath eventPath(node);
46 return eventPath.size() > 1 ? eventPath[1].node() : 0;
49 EventTarget* EventPath::eventTargetRespectingTargetRules(Node* referenceNode)
108 EventPath::EventPath(Event* event)
114 EventPath::EventPath(Node* node
    [all...]
EventContext.h 76 PassRefPtr<NodeList> eventPath() const { return m_eventPath; }
Event.h 30 #include "core/events/EventPath.h"
178 EventPath& eventPath() { return m_eventPath; }
209 EventPath m_eventPath;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
TreeScope.cpp 39 #include "core/events/EventPath.h"
365 EventPath eventPath(element);
366 for (size_t i = 0; i < eventPath.size(); ++i) {
367 if (eventPath[i].node() == rootNode()) {
368 // eventPath.at(i).target() is one of the followings:
373 return toElement(eventPath[i].target()->toNode());
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorTimelineAgent.cpp 225 static bool eventHasListeners(const AtomicString& eventType, DOMWindow* window, Node* node, const EventPath& eventPath)
233 for (size_t i = 0; i < eventPath.size(); i++) {
234 if (eventPath[i].node()->hasEventListeners(eventType))
446 bool InspectorTimelineAgent::willDispatchEvent(Document* document, const Event& event, DOMWindow* window, Node* node, const EventPath& eventPath)
448 if (!eventHasListeners(event.type(), window, node, eventPath))
    [all...]
InspectorTimelineAgent.h 37 #include "core/events/EventPath.h"
161 bool willDispatchEvent(Document* document, const Event& event, DOMWindow* window, Node* node, const EventPath& eventPath);
  /cts/suite/cts/deviceTests/browserbench/assets/octane/js/
jquery.js     [all...]

Completed in 2184 milliseconds