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

  /external/chromium_org/third_party/WebKit/Source/core/dom/
EventRetargeter.h 63 static void calculateAdjustedEventPathForEachNode(EventPath&);
65 static void adjustForRelatedTarget(const Node*, EventTarget* relatedTarget, EventPath&);
66 static void calculateAdjustedNodes(const Node*, const Node* relatedNode, EventWithRelatedTargetDispatchBehavior, EventPath&, AdjustedNodes&);
69 static void adjustTouchList(const Node*, const TouchList*, const EventPath&, EventPathTouchLists&);
EventRetargeter.cpp 79 calculateAdjustedEventPathForEachNode(event->eventPath());
84 EventPath& eventPath = event->eventPath();
85 eventPath.clear();
98 eventPath.append(adoptPtr(new MouseOrFocusEventContext(node, eventTargetRespectingTargetRules(node), targetStack.last())));
100 eventPath.append(adoptPtr(new TouchEventContext(node, eventTargetRespectingTargetRules(node), targetStack.last())));
102 eventPath.append(adoptPtr(new EventContext(node, eventTargetRespectingTargetRules(node), targetStack.last())));
116 void EventRetargeter::calculateAdjustedEventPathForEachNode(EventPath& eventPath)
    [all...]
Event.h 157 EventPath& eventPath() { return m_eventPath; }
191 EventPath m_eventPath;
EventContext.h 49 PassRefPtr<NodeList> eventPath() { return m_eventPath; }
68 typedef Vector<OwnPtr<EventContext>, 32> EventPath;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorTimelineAgent.h 136 bool willDispatchEvent(Document* document, const Event& event, DOMWindow* window, Node* node, const EventPath& eventPath);
InspectorTimelineAgent.cpp 138 static bool eventHasListeners(const AtomicString& eventType, DOMWindow* window, Node* node, const EventPath& eventPath)
146 for (size_t i = 0; i < eventPath.size(); i++) {
147 if (eventPath[i]->node()->hasEventListeners(eventType))
272 bool InspectorTimelineAgent::willDispatchEvent(Document* document, const Event& event, DOMWindow* window, Node* node, const EventPath& eventPath)
274 if (!eventHasListeners(event.type(), window, node, eventPath))
InspectorInstrumentation.idl 152 InspectorInstrumentationCookie willDispatchEvent([Keep] Document*, const Event&, DOMWindow*, Node*, const EventPath&);

Completed in 1095 milliseconds