Searched defs:currentNode (Results 1 - 25 of 27) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRUnbufferedCommonTreeNodeStreamState.h31 ANTLRCommonTree *currentNode; variable
42 - (ANTLRCommonTree *) currentNode;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRUnbufferedCommonTreeNodeStreamState.h31 ANTLRCommonTree *currentNode; variable
42 - (ANTLRCommonTree *) currentNode;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRUnbufferedCommonTreeNodeStreamState.h31 ANTLRCommonTree *currentNode; variable
42 - (ANTLRCommonTree *) currentNode;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRUnbufferedCommonTreeNodeStreamState.h31 ANTLRCommonTree *currentNode; variable
42 - (ANTLRCommonTree *) currentNode;
H A DANTLRUnbufferedCommonTreeNodeStream.h39 ANTLRCommonTree *currentNode; variable
60 @property (retain, getter=getCurrentNode, setter=setCurrentNode:) ANTLRCommonTree *currentNode; variable
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DTreeWalker.h47 Node* currentNode() const { return m_current.get(); } function in class:WebCore::FINAL
H A DChildNodeList.cpp49 Node* ChildNodeList::traverseForwardToOffset(unsigned offset, Node& currentNode, unsigned& currentOffset) const argument
52 Node* next = &currentNode;
60 Node* ChildNodeList::traverseBackwardToOffset(unsigned offset, Node& currentNode, unsigned& currentOffset) const argument
63 Node* previous = &currentNode;
H A DLiveNodeList.cpp53 Element* LiveNodeList::traverseForwardToOffset(unsigned offset, Element& currentNode, unsigned& currentOffset) const argument
55 return traverseMatchingElementsForwardToOffset(*this, offset, currentNode, currentOffset);
58 Element* LiveNodeList::traverseBackwardToOffset(unsigned offset, Element& currentNode, unsigned& currentOffset) const argument
60 return traverseMatchingElementsBackwardToOffset(*this, offset, currentNode, currentOffset);
H A DPosition.cpp573 Node* currentNode = currentPos.node(); local
577 if (currentNode != lastNode) {
579 bool currentEditable = currentNode->rendererIsEditable();
585 lastNode = currentNode;
590 if (endsOfNodeAreVisuallyDistinctPositions(currentNode) && currentNode != boundary)
594 RenderObject* renderer = currentNode->renderer();
609 if (endsOfNodeAreVisuallyDistinctPositions(currentNode) && currentPos.atStartOfNode())
613 if (editingIgnoresContent(currentNode) || isRenderedTableElement(currentNode)) {
696 Node* currentNode = currentPos.node(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DSimplifyMarkupCommand.cpp61 Node* currentNode = startingNode; local
63 while (currentNode != rootNode) {
64 if (currentNode->parentNode() != rootNode && isRemovableBlock(currentNode))
65 nodesToRemove.append(currentNode);
67 currentNode = currentNode->parentNode();
68 if (!currentNode)
71 if (!currentNode->renderer() || !currentNode
[all...]
H A DApplyStyleCommand.cpp496 RefPtrWillBeRawPtr<Node> currentNode = node; local
497 while (currentNode) {
498 RefPtrWillBeRawPtr<Element> parent = toElement(currentNode->parentNode());
499 if (before ? currentNode->previousSibling() : currentNode->nextSibling())
500 splitElement(parent, before ? currentNode.get() : currentNode->nextSibling());
503 currentNode = parent;
/external/chromium_org/third_party/angle/src/compiler/translator/depgraph/
H A DDependencyGraphBuilder.cpp224 TGraphParentNode* currentNode = *iter; local
225 currentNode->addDependentNode(node);
/external/llvm/lib/Analysis/
H A DDominanceFrontier.cpp55 const DomTreeNode *currentNode = currentW->Node; local
58 assert (currentNode && "Invalid work object. Missing current Node");
65 // Loop over CFG successors to calculate DFlocal[currentNode]
69 if (DT[*SI]->getIDom() != currentNode)
78 for (DomTreeNode::const_iterator NI = currentNode->begin(),
79 NE = currentNode->end(); NI != NE; ++NI) {
84 IDominee, currentNode));
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3commontreenodestream.h224 pANTLR3_BASE_TREE currentNode; member in struct:ANTLR3_COMMON_TREE_NODE_STREAM_struct
322 pANTLR3_BASE_TREE currentNode; member in struct:ANTLR3_TREE_WALK_STATE_struct
/external/apache-xml/src/main/java/org/apache/xpath/
H A DExpression.java84 * @param currentNode The currentNode.
91 public XObject execute(XPathContext xctxt, int currentNode) argument
105 * @param currentNode The currentNode.
115 XPathContext xctxt, int currentNode, DTM dtm, int expType)
114 execute( XPathContext xctxt, int currentNode, DTM dtm, int expType) argument
/external/apache-xml/src/main/java/org/apache/xpath/patterns/
H A DStepPattern.java320 * @param currentNode The current node context.
330 public XObject execute(XPathContext xctxt, int currentNode) argument
334 DTM dtm = xctxt.getDTM(currentNode);
338 int expType = dtm.getExpandedTypeID(currentNode);
340 return execute(xctxt, currentNode, dtm, expType);
372 * @param currentNode The currentNode.
382 XPathContext xctxt, int currentNode, DTM dtm, int expType)
398 score = super.execute(xctxt, currentNode, dtm, expType);
405 if (!executePredicates(xctxt, dtm, currentNode))
381 execute( XPathContext xctxt, int currentNode, DTM dtm, int expType) argument
664 executeRelativePathPattern( XPathContext xctxt, DTM dtm, int currentNode) argument
708 executePredicates( XPathContext xctxt, DTM dtm, int currentNode) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DEventPath.cpp212 Node* currentNode = at(i).node(); local
213 TreeScope& currentTreeScope = currentNode->treeScope();
215 lastTreeScopeEventContext = ensureTreeScopeEventContext(currentNode, &currentTreeScope, treeScopeEventContextMap);
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLConstructionSite.h179 ContainerNode* currentNode() const { return m_openElements.topNode(); } function in class:WebCore::FINAL
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DFocusController.cpp393 Node* currentNode = document->focusedElement(); local
397 if (caretBrowsing && !currentNode)
398 currentNode = frame->selection().start().deprecatedNode();
402 RefPtrWillBeRawPtr<Node> node = findFocusableNodeAcrossFocusScope(type, FocusNavigationScope::focusNavigationScopeOf(currentNode ? currentNode : document), currentNode);
468 Node* FocusController::findFocusableNodeAcrossFocusScope(FocusType type, FocusNavigationScope scope, Node* currentNode) argument
470 ASSERT(!currentNode || !isNonFocusableShadowHost(currentNode));
472 if (currentNode
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DNewHdfParser.java111 Data currentNode; field in class:NewHdfParser.ParseState
119 currentNode = output;
532 Data child = handleNodeCreation(state.currentNode, element);
533 state.context.push(state.currentNode);
534 state.currentNode = child;
543 Data child = handleNodeCreation(state.currentNode, element);
548 Data child = handleNodeCreation(state.currentNode, element);
558 Data child = handleNodeCreation(state.currentNode, element);
567 state.currentNode = state.context.pop();
/external/chromium_org/third_party/libxml/src/
H A DHTMLparser.c3983 xmlChar *currentNode; local
3987 currentNode = xmlStrdup(ctxt->name);
4002 ((currentNode != NULL) || (ctxt->nameNr == 0))) {
4003 if (currentNode != NULL)
4004 xmlFree(currentNode);
4022 if (currentNode != NULL)
4023 xmlFree(currentNode);
4040 (!xmlStrEqual(currentNode, ctxt->name)))
4042 if (currentNode != NULL) xmlFree(currentNode);
4141 xmlChar *currentNode = NULL; local
4383 xmlChar *currentNode; local
[all...]
/external/libxml2/
H A DHTMLparser.c4060 xmlChar *currentNode; local
4064 currentNode = xmlStrdup(ctxt->name);
4079 ((currentNode != NULL) || (ctxt->nameNr == 0))) {
4080 if (currentNode != NULL)
4081 xmlFree(currentNode);
4099 if (currentNode != NULL)
4100 xmlFree(currentNode);
4117 (!xmlStrEqual(currentNode, ctxt->name)))
4119 if (currentNode != NULL) xmlFree(currentNode);
4218 xmlChar *currentNode = NULL; local
4460 xmlChar *currentNode; local
[all...]
/external/owasp/sanitizer/lib/htmlparser-1.3/
H A Dhtmlparser-1.3-with-transitions.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
H A Dhtmlparser-1.3.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
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 909 milliseconds

12