Searched refs:it (Results 1 - 11 of 11) sorted by relevance

/opengrok-sun/src/org/opensolaris/opengrok/analysis/
H A DList2TokenStream.java32 private Iterator<String> it; field in class:List2TokenStream
38 it = l.iterator();
43 if (!it.hasNext()) {
49 String tok = it.next();
73 it = null;
/opengrok-sun/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DTrunkNode.java181 for (int it = 0; it < getText().length; it++)
183 original.add(new Line(this, getText()[it]));
H A DPath.java149 * the revision in which it was last changed or added.
168 * the revision in which it was last changed or added.
188 * the revision in which it was last changed or added.
260 for (Iterator it = ap.path.iterator(); it.hasNext(); )
262 Node tn = (Node) it.next();
H A DNode.java286 * If the year has two digits, it is interpreted as belonging to the 20th
543 for (int it = 0; it < text.length; it++)
545 String cmd = text[it].toString();
570 revision.addDelta(new AddDelta(n, new Chunk(getTextLines(it + 1, it + 1 + count), 0, count, n - 1)));
571 it += count;
612 } // This is not very neat. But it will work.
627 * add it t
[all...]
/opengrok-sun/src/org/opensolaris/opengrok/history/
H A DRepository.java46 * {@code null} if the repository isn't accessed via a CLI, or if it
83 * should override it in order to get good performance. Once every subclass
98 // it may be slow.
130 * recent changeset first) and verify that it is the changeset we expected
144 // we expected it to be, since some SCMs may change the revision
203 Iterator<TagEntry> it = this.getTagList().descendingIterator();
211 while (lastTagEntry != null || it.hasNext()) {
213 lastTagEntry = it.next();
224 if (it.hasNext()) {
225 lastTagEntry = it
[all...]
H A DAnnotation.java81 for (Iterator<Line> it = this.lines.iterator(); it.hasNext();) {
82 Line ln = it.next();
183 // to see if it will not be usefull, if title attribute of <a> loses it's breath
H A DJDBCHistoryCache.java70 * indicates that it may succeed if it's tried again.
150 * operation may succeed if it's retried and the number of attempts hasn't
151 * exceeded the limit defined by {@link #MAX_RETRIES}, ignore it and let
204 // create it and populate it. Bug #3174.
314 * in the table, take the maximum value and increment it by one. Otherwise,
371 // understand it, so suppress the warning.
482 * possibly just a part of it (only the {@code num} first elements will
600 // We do check next(), but PMD doesn't understand it
[all...]
/opengrok-sun/test/org/opensolaris/opengrok/analysis/
H A DLuceneCompatibilityTest.java49 // create the object out of it and call it's methods
96 for (Iterator it = guru.getAnalyzerFactories().iterator(); it.hasNext();) {
97 FileAnalyzerFactory fa = (FileAnalyzerFactory) it.next();
/opengrok-sun/src/org/opensolaris/opengrok/management/
H A DAgentIndexRunner.java183 * Will start the purger if it is enabled and return immediately.
203 * it will return when the indexing is done.
318 Iterator<NotificationHolder> it = notifListeners.iterator();
319 while (it.hasNext()) {
320 NotificationHolder mnf = it.next();
322 it.remove();
337 Iterator<NotificationHolder> it = notifListeners.iterator();
338 while (it.hasNext()) {
339 NotificationHolder mnf = it.next();
343 it
[all...]
/opengrok-sun/src/org/opensolaris/opengrok/search/context/
H A DHistoryContext.java45 * it is supposed to get the matching lines from history log files.
125 // none or both are specified, it's a bug.
135 Iterator<HistoryEntry> it = in.getHistoryEntries().iterator();
140 while(( it.hasNext()||(nhe!=null) ) && matchedLines < 10) {
141 if (nhe==null) { he=it.next(); }
145 if (it.hasNext()) { nhe=it.next(); } //this prefetch mechanism is here because of the diff link generation
/opengrok-sun/src/org/opensolaris/opengrok/analysis/php/
H A DPhpXref.lex328 * it doesn't need to keep state about the HTML */

Completed in 20 milliseconds