Searched defs:nextNode (Results 1 - 25 of 52) sorted by relevance

123

/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DRewriteRuleNodeStream.as13 public function nextNode():Object { function
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/xpath/axes/
H A DBasicTestIterator.java128 * to nextNode() returns the first node in the set.
133 public int nextNode() method in class:BasicTestIterator
H A DChildIterator.java79 * to nextNode() returns the first node in the set.
84 public int nextNode() method in class:ChildIterator
H A DSelfIteratorNoPredicate.java68 * to nextNode() returns the first node in the set.
73 public int nextNode() method in class:SelfIteratorNoPredicate
H A DDescendantIterator.java163 * to nextNode() returns the first node in the set.
172 public int nextNode() method in class:DescendantIterator
330 * <code>nextNode</code> or<code>previousNode</code> will raise the
H A DMatchPatternIterator.java170 * <code>nextNode</code> or<code>previousNode</code> will raise the
199 * to nextNode() returns the first node in the set.
203 public int nextNode() method in class:MatchPatternIterator
H A DFilterExprIteratorSimple.java103 // and so we may not be in the context of LocPathIterator#nextNode,
143 * to nextNode() returns the first node in the set.
148 public int nextNode() method in class:FilterExprIteratorSimple
157 m_lastFetched = next = m_exprObj.nextNode();
H A DUnionPathIterator.java37 * As each node is iterated via nextNode(), the node is also stored
82 iter.nextNode();
119 expr.nextNode();
128 * <code>nextNode</code> or<code>previousNode</code> will raise the
378 * to nextNode() returns the first node in the set.
382 public int nextNode() method in class:UnionPathIterator
413 m_iterators[i].nextNode();
430 m_iterators[iteratorUsed].nextNode();
H A DWalkingIterator.java165 * to nextNode() returns the first node in the set.
169 public int nextNode() method in class:WalkingIterator
184 return returnNextNode(m_firstWalker.nextNode());
195 int n = returnNextNode(m_firstWalker.nextNode());
255 * <code>nextNode</code> or<code>previousNode</code> will raise the
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...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMNodeIterator.java158 public Node nextNode() throws DOMException method in class:DTMNodeIterator
163 int handle=dtm_iter.nextNode();
/external/webkit/Source/WebCore/dom/
H A DTreeWalker.cpp252 Node* TreeWalker::nextNode(ScriptState* state) function in class:WebCore::TreeWalker
H A DTreeWalker.h53 Node* nextNode(ScriptState*);
63 Node* nextNode() { return nextNode(scriptStateFromNode(mainThreadNormalWorld(), m_current.get())); } function in class:WebCore::TreeWalker
H A DNodeIterator.h45 PassRefPtr<Node> nextNode(ScriptState*, ExceptionCode&);
57 PassRefPtr<Node> nextNode(ExceptionCode& ec) { return nextNode(scriptStateFromNode(mainThreadNormalWorld(), referenceNode()), ec); } function in class:WebCore::NodeIterator
H A DNodeIterator.cpp91 PassRefPtr<Node> NodeIterator::nextNode(ScriptState* state, ExceptionCode& ec) function in class:WebCore::NodeIterator
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3rewritestreams.h146 pANTLR3_BASE_TREE (*nextNode) (struct ANTLR3_REWRITE_RULE_ELEMENT_STREAM_struct * stream); member in struct:ANTLR3_REWRITE_RULE_ELEMENT_STREAM_struct
/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/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/icu4c/common/unicode/
H A Dstringtriebuilder.h267 IntermediateValueNode(int32_t v, Node *nextNode) argument
268 : ValueNode(0x222222*37+hashCode(nextNode)), next(nextNode) { setValue(v); }
279 LinearMatchNode(int32_t len, Node *nextNode) argument
280 : ValueNode((0x333333*37+len)*37+hashCode(nextNode)),
281 length(len), next(nextNode) {}
360 Node *nextNode) const = 0;
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
H A DDOM2DTM.java134 // add its attributes. Adapted from nextNode().
327 protected boolean nextNode() method in class:DOM2DTM
638 if (!nextNode())
679 isMore = nextNode();

Completed in 278 milliseconds

123