Searched defs:targetNode (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DMediaDocument.cpp138 Node* targetNode = event->target()->toNode(); local
139 if (!targetNode)
143 HTMLVideoElement* video = Traversal<HTMLVideoElement>::firstWithin(*targetNode);
H A DHTMLFormElement.cpp204 Node* targetNode = event->target()->toNode(); local
205 if (event->eventPhase() != Event::CAPTURING_PHASE && targetNode && targetNode != this && (event->type() == EventTypeNames::submit || event->type() == EventTypeNames::reset)) {
H A DHTMLSelectElement.cpp1387 Node* targetNode = event.target()->toNode(); local
1388 if (!targetNode || !isHTMLOptionElement(*targetNode))
1390 return listIndexForOption(toHTMLOptionElement(*targetNode));
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DTemplateSubPatternAssociation.java145 * @param targetNode Target node
151 public boolean matches(XPathContext xctxt, int targetNode, QName mode) argument
155 double score = m_stepPattern.getMatchScore(xctxt, targetNode);
H A DTemplateList.java421 * the name and type of the targetNode argument.
424 * @param targetNode The target node that will be checked for a match.
431 int targetNode, DTM dtm)
433 short targetNodeType = dtm.getNodeType(targetNode);
441 dtm.getLocalName(targetNode));
450 dtm.getNodeName(targetNode)); // %REVIEW% I think this is right
454 dtm.getLocalName(targetNode));
466 dtm.getNodeName(targetNode)); // %REVIEW% I think this is right
480 * @param targetNode
493 int targetNode,
430 getHead(XPathContext xctxt, int targetNode, DTM dtm) argument
492 getTemplateFast(XPathContext xctxt, int targetNode, int expTypeID, QName mode, int maxImportLevel, boolean quietConflictWarnings, DTM dtm) argument
593 getTemplate(XPathContext xctxt, int targetNode, QName mode, boolean quietConflictWarnings, DTM dtm) argument
657 getTemplate(XPathContext xctxt, int targetNode, QName mode, int maxImportLevel, int endImportLevel, boolean quietConflictWarnings, DTM dtm) argument
726 checkConflicts(TemplateSubPatternAssociation head, XPathContext xctxt, int targetNode, QName mode) argument
[all...]
H A DStylesheetRoot.java748 * @param targetNode non-null reference of node that the template must match.
752 * @return reference to ElemTemplate that is the best match for targetNode, or
758 int targetNode,
764 return m_templateList.getTemplate(xctxt, targetNode, mode,
775 * @param targetNode non-null reference of node that the template must match.
783 * @return reference to ElemTemplate that is the best match for targetNode, or
789 int targetNode,
796 return m_templateList.getTemplate(xctxt, targetNode, mode,
757 getTemplateComposed(XPathContext xctxt, int targetNode, QName mode, boolean quietConflictWarnings, DTM dtm) argument
788 getTemplateComposed(XPathContext xctxt, int targetNode, QName mode, int maxImportLevel, int endImportLevel, boolean quietConflictWarnings, DTM dtm) argument
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
H A Duser_commands.js546 var targetNode = cvox.ChromeVox.navigationManager.getCurrentNode(); variable
547 cvox.DomUtil.clickElem(targetNode, false, false);
551 var targetNode = cvox.ChromeVox.navigationManager.getCurrentNode(); variable
552 cvox.DomUtil.clickElem(targetNode, false, false, true);
/external/chromium_org/third_party/skia/src/core/
H A DSkPictureStateTree.cpp147 Node* targetNode = draw->fNode; local
154 if (fCurrentNode != targetNode) {
164 Node* ancestor = targetNode;
193 if (targetNode != ancestor) {
202 if (fCurrentNode != targetNode) {
205 fSave = fCurrentNode != targetNode && fCurrentNode->fFlags & Node::kSave_Flag;
/external/skia/src/core/
H A DSkPictureStateTree.cpp145 Node* targetNode = draw->fNode; local
152 if (fCurrentNode != targetNode) {
162 Node* ancestor = targetNode;
191 if (targetNode != ancestor) {
200 if (fCurrentNode != targetNode) {
203 fSave = fCurrentNode != targetNode && fCurrentNode->fFlags & Node::kSave_Flag;
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DMouseRelatedEvent.cpp135 Node* targetNode = target() ? target()->toNode() : 0; local
136 if (!targetNode)
144 targetNode->document().updateLayoutIgnorePendingStylesheets();
147 if (RenderObject* r = targetNode->renderer()) {
159 Node* n = targetNode;
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DDOMPatchSupport.cpp125 Node* targetNode = node->parentElementOrShadowRoot() ? node->parentElementOrShadowRoot() : document().documentElement(); local
129 if (targetNode->isShadowRoot())
130 targetNode = document().body();
131 Element* targetElement = toElement(targetNode);
H A DInspectorCSSAgent.cpp1249 ContainerNode* targetNode; local
1252 targetNode = document->head();
1254 targetNode = document->body();
1260 targetNode->appendChild(styleElement, exceptionState);
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DMarkupAccumulator.cpp112 String MarkupAccumulator::serializeNodes(Node& targetNode, EChildrenOnly childrenOnly, Vector<QualifiedName>* tagNamesToSkip) argument
116 if (!serializeAsHTMLDocument(targetNode)) {
122 serializeNodesWithNamespaces(targetNode, childrenOnly, namespaces, tagNamesToSkip);
126 void MarkupAccumulator::serializeNodesWithNamespaces(Node& targetNode, EChildrenOnly childrenOnly, const Namespaces* namespaces, Vector<QualifiedName>* tagNamesToSkip) argument
128 if (tagNamesToSkip && targetNode.isElementNode()) {
130 if (toElement(targetNode).hasTagName(tagNamesToSkip->at(i)))
140 appendStartTag(targetNode, &namespaceHash);
142 if (!(serializeAsHTMLDocument(targetNode) && elementCannotHaveEndTag(targetNode))) {
143 Node* current = isHTMLTemplateElement(targetNode)
[all...]
H A DApplyStyleCommand.cpp1050 void ApplyStyleCommand::pushDownInlineStyleAroundNode(EditingStyle* style, Node* targetNode) argument
1052 HTMLElement* highestAncestor = highestAncestorWithConflictingInlineStyle(style, targetNode);
1056 // The outer loop is traversing the tree vertically from highestAncestor to targetNode
1058 // Along the way, styled elements that contain targetNode are removed and accumulated into elementsToPushDown.
1059 // Each child of the removed element, exclusing ancestors of targetNode, is then wrapped by clones of elements in elementsToPushDown.
1061 while (current && current != targetNode && current->contains(targetNode)) {
1080 if (!child->contains(targetNode) && elementsToPushDown.size()) {
1088 // Apply style to all nodes containing targetNode and their siblings but NOT to targetNode
[all...]
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DTouchAdjustment.cpp450 bool findNodeWithLowestDistanceMetric(Node*& targetNode, IntPoint& targetPoint, IntRect& targetArea, const IntPoint& touchHotspot, const IntRect& touchArea, SubtargetGeometryList& subtargets, DistanceFunction distanceFunction) argument
452 targetNode = 0;
465 targetNode = node;
470 if (node->isDescendantOf(targetNode)) {
473 targetNode = node;
481 if (targetNode && targetNode->isPseudoElement())
482 targetNode = targetNode->parentOrShadowHostNode();
484 if (targetNode) {
492 findBestClickableCandidate(Node*& targetNode, IntPoint& targetPoint, const IntPoint& touchHotspot, const IntRect& touchArea, const WillBeHeapVector<RefPtrWillBeMember<Node> >& nodes) argument
500 findBestContextMenuCandidate(Node*& targetNode, IntPoint& targetPoint, const IntPoint& touchHotspot, const IntRect& touchArea, const WillBeHeapVector<RefPtrWillBeMember<Node> >& nodes) argument
508 findBestZoomableArea(Node*& targetNode, IntRect& targetArea, const IntPoint& touchHotspot, const IntRect& touchArea, const WillBeHeapVector<RefPtrWillBeMember<Node> >& nodes) argument
[all...]
H A DEventHandler.cpp196 Node* targetNode = mev.innerNode(); local
197 if (!targetNode || !targetNode->parentNode())
199 return targetNode->isShadowRoot() && isHTMLInputElement(*toShadowRoot(targetNode)->host());
335 static VisibleSelection expandSelectionToRespectUserSelectAll(Node* targetNode, const VisibleSelection& selection) argument
337 Node* rootUserSelectAll = Position::rootUserSelectAllForNode(targetNode);
348 bool EventHandler::updateSelectionForMouseDownDispatchingSelectStart(Node* targetNode, const VisibleSelection& selection, TextGranularity granularity) argument
350 if (Position::nodeIsUserSelectNone(targetNode))
353 if (!dispatchSelectStart(targetNode))
1806 updateMouseEventTargetNode(Node* targetNode, const PlatformMouseEvent& mouseEvent, bool fireMouseOverOut) argument
1868 dispatchMouseEvent(const AtomicString& eventType, Node* targetNode, int clickCount, const PlatformMouseEvent& mouseEvent, bool setUnder) argument
2516 bestClickableNodeForHitTestResult(const HitTestResult& result, IntPoint& targetPoint, Node*& targetNode) argument
2539 bestContextMenuNodeForHitTestResult(const HitTestResult& result, IntPoint& targetPoint, Node*& targetNode) argument
2551 bestZoomableAreaForTouchPoint(const IntPoint& touchCenter, const IntSize& touchRadius, IntRect& targetArea, Node*& targetNode) argument
2773 Node* targetNode = doc->focusedElement(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DContainerNode.cpp786 Node* targetNode = postInsertionNotificationTargets[i].get(); local
787 if (targetNode->inDocument())
788 targetNode->didNotifySubtreeInsertionsToDocument();
H A DNode.cpp1882 static inline bool tryAddEventListener(Node* targetNode, const AtomicString& eventType, PassRefPtr<EventListener> listener, bool useCapture) argument
1884 if (!targetNode->EventTarget::addEventListener(eventType, listener, useCapture))
1887 Document& document = targetNode->document();
1890 document.frameHost()->eventHandlerRegistry().didAddEventHandler(*targetNode, eventType);
1900 static inline bool tryRemoveEventListener(Node* targetNode, const AtomicString& eventType, PassRefPtr<EventListener> listener, bool useCapture) argument
1902 if (!targetNode->EventTarget::removeEventListener(eventType, listener, useCapture))
1907 Document& document = targetNode->document();
1909 document.frameHost()->eventHandlerRegistry().didRemoveEventHandler(*targetNode, eventType);
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DInternals.cpp997 Node* targetNode; local
1000 bool foundNode = eventHandler.bestClickableNodeForHitTestResult(result, adjustedPoint, targetNode);
1024 Node* targetNode; local
1026 document->frame()->eventHandler().bestClickableNodeForHitTestResult(result, adjustedPoint, targetNode);
1027 return targetNode;
1047 Node* targetNode = 0; local
1050 bool foundNode = eventHandler.bestContextMenuNodeForHitTestResult(result, adjustedPoint, targetNode);
1074 Node* targetNode = 0; local
1076 eventHandler.bestContextMenuNodeForHitTestResult(result, adjustedPoint, targetNode);
1077 return targetNode;
1093 Node* targetNode; local
[all...]
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 801 milliseconds