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

/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/webkit/Source/WebCore/html/
H A DMediaDocument.cpp153 Node* targetNode = event->target()->toNode(); local
154 if (!targetNode)
157 HTMLVideoElement* video = descendentVideoElement(targetNode);
H A DHTMLFormElement.cpp155 Node* targetNode = event->target()->toNode(); local
156 if (event->eventPhase() != Event::CAPTURING_PHASE && targetNode && targetNode != this && (event->type() == eventNames().submitEvent || event->type() == eventNames().resetEvent)) {
199 Node* targetNode = event->target()->toNode(); local
200 if (!targetNode || !targetNode->isElementNode())
202 Element* targetElement = static_cast<Element*>(targetNode);
/external/webkit/Source/WebCore/dom/
H A DMouseRelatedEvent.cpp171 Node* targetNode = target() ? target()->toNode() : 0; local
172 if (!targetNode)
182 targetNode->document()->updateStyleIfNeeded();
186 if (RenderObject* r = targetNode->renderer()) {
199 Node* n = targetNode;
H A DNode.cpp2550 static inline bool tryAddEventListener(Node* targetNode, const AtomicString& eventType, PassRefPtr<EventListener> listener, bool useCapture) argument
2552 if (!targetNode->EventTarget::addEventListener(eventType, listener, useCapture))
2555 if (Document* document = targetNode->document())
2595 static inline bool tryRemoveEventListener(Node* targetNode, const AtomicString& eventType, EventListener* listener, bool useCapture) argument
2597 if (!targetNode->EventTarget::removeEventListener(eventType, listener, useCapture))
/external/webkit/Source/WebCore/inspector/
H A DInspectorCSSAgent.cpp448 ContainerNode* targetNode; local
451 targetNode = document->head();
453 targetNode = document->body();
456 targetNode->appendChild(styleElement, ec);
/external/llvm/lib/Transforms/Instrumentation/
H A DPathProfiling.cpp485 BallLarusNode* targetNode = getTarget(); local
487 BasicBlock* target = targetNode->getBlock();
1089 BLInstrumentationNode* targetNode = (BLInstrumentationNode*)edge->getTarget(); local
1101 nextSourceNode = targetNode; // ... since we never made any new nodes
1107 else if( targetNode->getNumberPredEdges() == 1 ) {
1109 << targetNode->getName() << " (at beginning)\n");
1110 pushValueIntoNode(sourceNode, targetNode);
1111 instrumentNode = targetNode;
1205 for( BLEdgeIterator next = targetNode->succBegin(),
1206 end = targetNode
1407 BallLarusNode* targetNode = edge->getTarget(); local
[all...]
/external/webkit/Source/WebCore/editing/
H A DApplyStyleCommand.cpp967 void ApplyStyleCommand::pushDownInlineStyleAroundNode(EditingStyle* style, Node* targetNode) argument
969 HTMLElement* highestAncestor = highestAncestorWithConflictingInlineStyle(style, targetNode);
973 // The outer loop is traversing the tree vertically from highestAncestor to targetNode
975 // Along the way, styled elements that contain targetNode are removed and accumulated into elementsToPushDown.
976 // Each child of the removed element, exclusing ancestors of targetNode, is then wrapped by clones of elements in elementsToPushDown.
978 while (current != targetNode) {
980 ASSERT(current->contains(targetNode));
998 if (!child->contains(targetNode) && elementsToPushDown.size()) {
1008 // Apply text decoration to all nodes containing targetNode and their siblings but NOT to targetNode
[all...]
/external/webkit/Source/WebCore/page/
H A DEventHandler.cpp285 Node* innerNode = targetNode(result);
312 Node* innerNode = targetNode(result);
354 Node* innerNode = targetNode(event);
384 Node* innerNode = targetNode(event);
460 m_mouseDownMayStartSelect = canMouseDownStartSelect(targetNode(event));
490 Node* innerNode = targetNode(event);
547 Node* targetNode = EventHandler::targetNode(event);
548 if (event.event().button() != LeftButton || !targetNode || !targetNode
635 selectionExtentRespectingEditingBoundary(const VisibleSelection& selection, const IntPoint& localPoint, Node* targetNode) argument
1327 Node* EventHandler::targetNode(const MouseEventWithHitTestResults& event) function in class:EventHandler
1332 Node* EventHandler::targetNode(const HitTestResult& hitTestResult) function in class:EventHandler
1924 updateMouseEventTargetNode(Node* targetNode, const PlatformMouseEvent& mouseEvent, bool fireMouseOverOut) argument
2025 dispatchMouseEvent(const AtomicString& eventType, Node* targetNode, bool , int clickCount, const PlatformMouseEvent& mouseEvent, bool setUnder) argument
2283 Node* targetNode = doc->focusedNode(); 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 139 milliseconds