Searched defs:seek (Results 1 - 25 of 38) sorted by relevance

12

/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/store/
H A DIndexInput.java79 * @see #seek(long)
86 public abstract void seek(long pos) throws IOException; method in class:IndexInput
H A DIndexOutput.java38 * @see #seek(long)
45 public abstract void seek(long pos) throws IOException; method in class:IndexOutput
H A DChecksumIndexInput.java25 * checksum as it goes. Note that you cannot use seek().
69 public void seek(long pos) { method in class:ChecksumIndexInput
H A DChecksumIndexOutput.java25 * checksum. Note that you cannot use seek().
70 public void seek(long pos) { method in class:ChecksumIndexOutput
90 main.seek(pos);
H A DBufferedIndexOutput.java118 * @see #seek(long)
129 public void seek(long pos) throws IOException { method in class:BufferedIndexOutput
H A DBufferedIndexInput.java150 // this function, there is no need to do a seek
289 public final void seek(long pos) throws IOException { method in class:BufferedIndexInput
291 bufferPosition = (int)(pos - bufferStart); // seek within buffer
300 /** Expert: implements seek. Sets current position in this file, where the
H A DRAMInputStream.java141 public void seek(long pos) throws IOException { method in class:RAMInputStream
H A DRAMOutputStream.java86 public void seek(long pos) throws IOException { method in class:RAMOutputStream
87 // set the file length in case we seek back
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DAbstractAllTermDocs.java38 public void seek(Term term) throws IOException { method in class:AbstractAllTermDocs
46 public void seek(TermEnum termEnum) throws IOException { method in class:AbstractAllTermDocs
H A DTermDocs.java36 void seek(Term term) throws IOException; method in interface:TermDocs
41 void seek(TermEnum termEnum) throws IOException; method in interface:TermDocs
H A DByteSliceReader.java145 public void seek(long pos) {throw new RuntimeException("not implemented");} method in class:ByteSliceReader
H A DSegmentTermDocs.java65 public void seek(Term term) throws IOException { method in class:SegmentTermDocs
67 seek(ti, term);
70 public void seek(TermEnum termEnum) throws IOException { method in class:SegmentTermDocs
84 seek(ti, term);
87 void seek(TermInfo ti, Term term) throws IOException { method in class:SegmentTermDocs
100 freqStream.seek(freqBasePointer);
206 freqStream.seek(skipListReader.getFreqPointer());
H A DSegmentTermEnum.java113 final void seek(long pointer, long p, Term t, TermInfo ti) method in class:SegmentTermEnum
115 input.seek(pointer);
H A DSegmentTermPositions.java48 final void seek(TermInfo ti, Term term) throws IOException { method in class:SegmentTermPositions
49 super.seek(ti, term);
138 proxStream.seek(proxStream.getFilePointer() + payloadLength);
164 proxStream.seek(lazySkipPointer);
/lucene-3.6.0/lucene/contrib/instantiated/src/java/org/apache/lucene/store/instantiated/
H A DInstantiatedTermDocs.java39 public void seek(Term term) { method in class:InstantiatedTermDocs
44 public void seek(org.apache.lucene.index.TermEnum termEnum) { method in class:InstantiatedTermDocs
45 seek(termEnum.term());
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/store/
H A DMockIndexOutputWrapper.java139 public void seek(long pos) throws IOException { method in class:MockIndexOutputWrapper
140 delegate.seek(pos);
H A DMockIndexInputWrapper.java98 public void seek(long pos) throws IOException { method in class:MockIndexInputWrapper
100 delegate.seek(pos);
/lucene-3.6.0/lucene/backwards/src/test-framework/java/org/apache/lucene/store/
H A DMockIndexOutputWrapper.java139 public void seek(long pos) throws IOException { method in class:MockIndexOutputWrapper
140 delegate.seek(pos);
/lucene-3.6.0/lucene/contrib/facet/src/test/org/apache/lucene/util/
H A DSlowRAMDirectory.java123 @Override public void seek(long pos) throws IOException { ii.seek(pos); } method in class:SlowRAMDirectory.SlowIndexInput
164 @Override public void seek(long pos) throws IOException { io.seek(pos); } method in class:SlowRAMDirectory.SlowIndexOutput
/lucene-3.6.0/lucene/contrib/pruning/src/java/org/apache/lucene/index/
H A DPruningReader.java263 public void seek(Term t) throws IOException { method in class:PruningReader.PruningTermPositions
264 super.seek(t);
269 public void seek(TermEnum termEnum) throws IOException { method in class:PruningReader.PruningTermPositions
270 super.seek(termEnum);
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/index/
H A DTestLazyProxSkipping.java57 // we decorate the proxStream with a wrapper class that allows to count the number of calls of seek()
118 // check if the number of calls of seek() does not exceed the number of hits
144 tp.seek(new Term(this.field, "b"));
150 tp.seek(new Term(this.field, "a"));
163 // of invocations of seek()
194 public void seek(long pos) throws IOException { method in class:TestLazyProxSkipping.SeeksCountingStream
196 this.input.seek(pos);
H A DTestMultiLevelSkipList.java69 tp.seek(term);
159 public void seek(long pos) throws IOException { method in class:TestMultiLevelSkipList.CountingStream
160 this.input.seek(pos);
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/util/
H A DThrottledIndexOutput.java92 public void seek(long pos) throws IOException { method in class:ThrottledIndexOutput
94 delegate.seek(pos);
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/index/
H A DTestLazyProxSkipping.java57 // we decorate the proxStream with a wrapper class that allows to count the number of calls of seek()
118 // check if the number of calls of seek() does not exceed the number of hits
144 tp.seek(new Term(this.field, "b"));
150 tp.seek(new Term(this.field, "a"));
163 // of invocations of seek()
194 public void seek(long pos) throws IOException { method in class:TestLazyProxSkipping.SeeksCountingStream
196 this.input.seek(pos);
H A DTestMultiLevelSkipList.java69 tp.seek(term);
159 public void seek(long pos) throws IOException { method in class:TestMultiLevelSkipList.CountingStream
160 this.input.seek(pos);

Completed in 45 milliseconds

12