Searched refs:nextNode (Results 1 - 25 of 144) sorted by relevance

123456

/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowUriMatcher.java83 MatchNode nextNode = null;
87 nextNode = baseNode.number;
88 if (nextNode == null) {
89 nextNode = new MatchNode(rootNode.code);
90 baseNode.number = nextNode;
94 nextNode = baseNode.text;
95 if (nextNode == null) {
96 nextNode = new MatchNode(rootNode.code);
97 baseNode.text = nextNode;
101 nextNode
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DNodeIterator.idl33 [RaisesException] Node nextNode();
H A DTreeWalker.idl38 [RaisesException] Node nextNode();
H A DNodeRenderingTraversal.cpp176 Node* nextNode = nextSibling(node); local
178 if (parentNode && parentNode->isElementNode() && !nextNode) {
186 return nextNode;
211 if (Node* nextNode = pseudoAwareNextSibling(node))
212 return nextNode;
216 if (Node* nextNode = pseudoAwareNextSibling(parentNode))
217 return nextNode;
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DRewriteRuleNodeStream.js11 nextNode: function() {
H A DRewriteRuleSubtreeStream.js21 nextNode: function() {
H A DRewriteRuleTokenStream.js9 nextNode: function() {
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMTreeWalker.java115 int nextNode = m_dtm.getFirstChild(pos);
116 while (DTM.NULL == nextNode)
123 nextNode = m_dtm.getNextSibling(pos);
125 if (DTM.NULL == nextNode)
136 nextNode = DTM.NULL;
143 pos = nextNode;
168 int nextNode = m_dtm.getFirstChild(pos);
169 while (DTM.NULL == nextNode)
176 nextNode = m_dtm.getNextSibling(pos);
178 if (DTM.NULL == nextNode)
[all...]
H A DDTMNodeIterator.java158 public Node nextNode() throws DOMException method in class:DTMNodeIterator
163 int handle=dtm_iter.nextNode();
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DTreeWalker.java147 Node nextNode = pos.getFirstChild();
149 while (null == nextNode)
156 nextNode = pos.getNextSibling();
158 if (null == nextNode)
167 nextNode = null;
174 pos = nextNode;
201 Node nextNode = pos.getFirstChild();
203 while (null == nextNode)
210 nextNode = pos.getNextSibling();
212 if (null == nextNode)
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DTreeWalker.java179 Node nextNode = pos.getFirstChild();
181 while (null == nextNode)
188 nextNode = pos.getNextSibling();
190 if (null == nextNode)
199 nextNode = null;
206 pos = nextNode;
232 Node nextNode = pos.getFirstChild();
234 while (null == nextNode)
241 nextNode = pos.getNextSibling();
243 if (null == nextNode)
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DRewriteRuleSubtreeStream.as49 public function nextNode():Object { function
H A DRewriteRuleTokenStream.as39 public function nextNode():Object { function
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DRewriteRuleNodeStream.java57 public Object nextNode() { method in class:RewriteRuleNodeStream
H A DRewriteRuleSubtreeStream.java67 public Object nextNode() { method in class:RewriteRuleSubtreeStream
68 //System.out.println("nextNode: elements="+elements+", singleElement="+((Tree)singleElement).toStringTree());
H A DRewriteRuleTokenStream.java57 public Object nextNode() { method in class:RewriteRuleTokenStream
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTMIterator.java169 * the first call to <code>nextNode()</code> returns that root or (if it
175 public int nextNode(); method in interface:DTMIterator
189 * calls to <code>nextNode</code> or <code>previousNode</code> will
213 * the first nextNode() that is called will return the
243 * less than the next nextNode() call will retrieve. i.e. if you
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DLocPathIterator.java43 * as each node is iterated via nextNode(), the node is also stored
241 int node = clone.nextNode();
302 int next = iter.nextNode();
396 * the next nextNode() call will retrieve. i.e. if
556 while (DTM.NULL != (next = clone.nextNode()))
569 * the first nextNode() that is called will return the
572 * @return true of nextNode has not been called.
673 * <code>nextNode</code> or<code>previousNode</code> will raise the
747 * to nextNode() returns the first node in the set.
751 public abstract int nextNode(); method in class:LocPathIterator
761 returnNextNode(int nextNode) argument
[all...]
H A DAxesWalker.java347 * current node has no next node, or if the search for nextNode attempts
353 public int nextNode() method in class:AxesWalker
355 int nextNode = DTM.NULL;
363 nextNode = walker.getNextNode();
365 if (DTM.NULL == nextNode)
372 if (walker.acceptNode(nextNode) != DTMIterator.FILTER_ACCEPT)
381 // return walker.returnNextNode(nextNode);
390 walker.setRoot(nextNode);
396 } // if(null != nextNode)
399 return nextNode;
[all...]
H A DSelfIteratorNoPredicate.java68 * to nextNode() returns the first node in the set.
73 public int nextNode() method in class:SelfIteratorNoPredicate
/external/lzma/CPP/7zip/UI/Common/
H A DEnumDirItems.cpp239 const NWildcard::CCensorNode *nextNode = 0; local
246 nextNode = &curNode.SubNodes[index];
250 nextNode = &curNode;
254 RINOK(EnumerateDirItems_Spec(*nextNode, phyParent, logParent, fi.Name, phyPrefix,
262 const NWildcard::CCensorNode &nextNode = curNode.SubNodes[i]; local
263 const UString fullPath = phyPrefix + nextNode.Name;
267 if (!nextNode.AreThereIncludeItems())
280 RINOK(EnumerateDirItems_Spec(nextNode, phyParent, logParent, fi.Name, phyPrefix,
322 const NWildcard::CCensorNode *nextNode = 0; local
327 nextNode
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/patterns/
H A DFunctionPattern.java113 while (DTM.NULL != (n = nl.nextNode()))
157 while (DTM.NULL != (n = nl.nextNode()))
200 while (DTM.NULL != (n = nl.nextNode()))
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3rewritestreams.c52 static pANTLR3_BASE_TREE nextNode (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream);
229 stream->nextNode = nextNode;
325 stream->nextNode = nextNodeToken;
327 // No nextNode implementation for a token rewrite stream
344 stream->nextNode = nextNodeToken;
346 // No nextNode implementation for a token rewrite stream
363 stream->nextNode = nextNodeToken;
365 // No nextNode implementation for a token rewrite stream
389 stream->nextNode
788 nextNode (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream) function
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DKeyTable.java197 while (DTM.NULL != (currentNode = m_keyNodes.nextNode()))
216 while (DTM.NULL != (currentNodeInUseClause = i.nextNode())) {
245 nodes.nextNode();
252 // in each nodeset. We use nodes.nextNode after each entry so we can
256 nodes.nextNode();
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFuncSum.java53 while (DTM.NULL != (pos = nodes.nextNode()))

Completed in 2041 milliseconds

123456