Searched defs:mark (Results 1 - 4 of 4) sorted by relevance

/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/util/
H A DUnsafeByteArrayInputStream.java85 public void mark(int readlimit) { method in class:UnsafeByteArrayInputStream
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/analysis/
H A DCharFilter.java71 public void mark( int readAheadLimit ) throws IOException { method in class:CharFilter
72 input.mark(readAheadLimit);
H A DCharReader.java63 public void mark( int readAheadLimit ) throws IOException { method in class:CharReader
64 input.mark(readAheadLimit);
/lucene-3.6.0/lucene/contrib/benchmark/src/java/org/apache/lucene/benchmark/byTask/utils/
H A DStringBuilderReader.java27 * doesn't mark the passed-in {@link StringBuilder} as shared (which will cause
59 // The mark position. The default value 0 means the start of the text.
60 private int mark = 0; field in class:StringBuilderReader
85 * while still preserving the mark. Because the stream's input comes
92 public void mark(int readAheadLimit) throws IOException { method in class:StringBuilderReader
98 mark = next;
152 next = mark;
161 next = mark = 0;

Completed in 1316 milliseconds