Searched refs:next (Results 1 - 25 of 30) sorted by relevance

12

/opengrok-jel/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DPath.java214 TrunkNode head = (TrunkNode) p.next();
220 Node n = (Node) p.next();
235 TrunkNode head = (TrunkNode) p.next();
240 Node n = (Node) p.next();
247 Node n = (Node) p.next();
255 Node pn = (Node) p.next();
278 Node tn = (Node) it.next();
291 n = (Node) p.next();
H A DToken.java31 * A reference to the next regular (non-special) token from the input
38 public Token next; field in class:Token
45 * to the last of these special tokens, which in turn refers to the next
48 * The next fields of special tokens refer to other special tokens that
H A DParseException.java122 Token tok = currentToken.next;
130 tok = tok.next;
132 retval += "\" at line " + currentToken.next.beginLine + ", column " + currentToken.next.beginColumn;
H A DBranchNode.java68 * the next revision in the branch.
82 * The next field in a Branch node points to the next higher
85 * @param next the next node in the logical RCS hierarchy.
88 BranchNode(Version vernum, BranchNode next) argument
90 super(vernum, next);
114 * Set the next node in the RCS logical hierarcy.
116 * For BranchNodes, the RCS-next is a child, that is,
H A DArchiveParser.java515 token.next = jj_nt = token_source.getNextToken();
521 token.next = jj_nt = token_source.getNextToken();
527 token.next = jj_nt = token_source.getNextToken();
533 token.next = jj_nt = token_source.getNextToken();
538 if ((token = jj_nt).next != null) jj_nt = jj_nt.next;
539 else jj_nt = jj_nt.next = token_source.getNextToken();
549 if ((token = jj_nt).next != null) jj_nt = jj_nt.next;
550 else jj_nt = jj_nt.next
[all...]
H A DPhrases.java83 String key = i.next().toString();
H A DTrunkNode.java93 * The next field in a TrunkNode points to the immediate
96 TrunkNode(Version vernum, TrunkNode next) argument
99 super(vernum, next);
107 * Set the next node in the RCS logical hierarcy.
109 * For a TrunkNode, the RCS-next is the immediate parent.
H A DLines.java147 Line l = (Line) r.next();
H A DArchive.java717 s.append(i.next());
724 Map.Entry e = (Map.Entry) i.next();
735 String locker = ((Node) i.next()).getLocker();
767 Node n = (Node) i.next();
1026 return addRevision(text, head.getVersion().next(), log);
1105 vernum = vernum.next();
H A DNode.java162 * @param rcsnext The next node in the RCS logical hierarchy.
179 * @param rcsnext The next node in the RCS logical hierarchy.
323 * Sets the next node in the RCS logical hierarchy.
326 * points to the next revision.
327 * @param node The next node in the RCS logical hierarchy.
353 * current revision and the next revision in the RCS logical hierarchy.
374 * current revision and the next revision in the RCS logical hierarchy.
413 * @return The next version number.
417 return this.version.next();
443 * Return the next nod
[all...]
H A DVersion.java381 public Version next() method in class:Version
/opengrok-jel/src/org/opensolaris/opengrok/web/
H A DEftarFileReader.java153 FNode next = null;
154 while (toks.hasMoreTokens() && ((next = n.get(EftarFile.myHash(toks.nextToken()))) != null)) {
155 n = next;
158 return next;
177 FNode next;
185 next = n.get(EftarFile.myHash(tok));
186 if (next == null) {
189 if (next.tagOffset != 0) {
190 tagOffset = next.offset + next
[all...]
/opengrok-jel/jrcs/src/main/java/org/apache/commons/jrcs/diff/
H A DRevision.java199 ((Delta) i.next()).toString(s);
215 ((Delta) i.next()).toRCSString(s, EOL);
260 ((Delta) iter.next()).accept(visitor);
H A DChunk.java267 target.add(start++, i.next());
298 s.append(i.next());
/opengrok-jel/src/org/opensolaris/opengrok/analysis/
H A DHash2TokenStream.java45 term = keys.next();
53 // no tokens found in this key, try next
H A DList2TokenStream.java49 String tok = it.next();
/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DJDBCHistoryCache.java88 /** The id to be used for the next row inserted into FILES. */
91 /** The id to be used for the next row inserted into DIRECTORIES. */
94 /** The id to be used for the next row inserted into CHANGESETS. */
97 /** The id to be used for the next row inserted into AUTHORS. */
273 while (rs.next()) {
293 return rs.next();
304 return rs.next();
312 * the id to use for the next row in a certain table. If there are rows
326 if (rs.next()) {
369 // We do check the return value from ResultSet.next(), bu
[all...]
H A DDirectoryHistoryReader.java155 while (next()) {
199 private boolean next() { method in class:DirectoryHistoryReader
207 aiter = hash.get(idate = diter.next()).keySet().iterator();
213 citer = hash.get(idate).get(iauthor = aiter.next()).keySet().iterator();
216 icomment = citer.next();
H A DSCCSHistoryParser.java84 while (next()) {
108 private boolean next() throws java.io.IOException { method in class:SCCSHistoryParser
/opengrok-jel/test/org/opensolaris/opengrok/index/
H A DCommandLineOptionsTest.java81 CommandLineOptions.Option o = iter.next();
/opengrok-jel/src/org/opensolaris/opengrok/search/context/
H A DHistoryLineTokenizer.lex34 %function next
H A DHistoryContext.java175 HistoryEntry nhe = null; // next HE, the lookahead revision
178 he = nhe == null ? it.next() : nhe;
184 ? it.next()
192 while ((token = tokens.next()) != null) {
/opengrok-jel/test/org/opensolaris/opengrok/history/
H A DJDBCHistoryCacheTest.java127 while (rs.next()) {
241 assertSameEntry(expectedEntry, actualIt.next());
295 HistoryEntry e1 = entryIt.next();
300 HistoryEntry e2 = entryIt.next();
/opengrok-jel/src/org/opensolaris/opengrok/management/
H A DAgentIndexRunner.java386 NotificationHolder mnf = it.next();
410 NotificationHolder mnf = it.next();
/opengrok-jel/src/org/opensolaris/opengrok/index/
H A DIndexDatabase.java385 uidIter.next();
848 uidIter.next();
855 uidIter.next(); // keep matching docs
962 iter.next();
1014 iter.next();

Completed in 36 milliseconds

12