Searched refs:openInput (Results 1 - 25 of 56) sorted by relevance

123

/lucene-3.6.0/lucene/contrib/facet/src/test/org/apache/lucene/util/
H A DSlowRAMDirectory.java57 public IndexInput openInput(String name) throws IOException { method in class:SlowRAMDirectory
59 return new SlowIndexInput(super.openInput(name));
61 return super.openInput(name);
65 public IndexInput openInput(String name, int bufferSize) throws IOException { method in class:SlowRAMDirectory
67 return new SlowIndexInput(super.openInput(name, bufferSize));
69 return super.openInput(name, bufferSize);
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/store/
H A DDirectory.java134 public abstract IndexInput openInput(String name) method in class:Directory
144 public IndexInput openInput(String name, int bufferSize) throws IOException { method in class:Directory
145 return openInput(name);
235 is = openInput(src);
H A DNRTCachingDirectory.java256 public synchronized IndexInput openInput(String name) throws IOException { method in class:NRTCachingDirectory
258 System.out.println("nrtdir.openInput name=" + name);
264 return cache.openInput(name);
266 return delegate.openInput(name);
271 public synchronized IndexInput openInput(String name, int bufferSize) throws IOException { method in class:NRTCachingDirectory
273 return cache.openInput(name, bufferSize);
275 return delegate.openInput(name, bufferSize);
338 in = cache.openInput(fileName);
H A DFileSwitchDirectory.java190 public IndexInput openInput(String name) throws IOException { method in class:FileSwitchDirectory
191 return getDirectory(name).openInput(name);
H A DNIOFSDirectory.java77 public IndexInput openInput(String name, int bufferSize) throws IOException { method in class:NIOFSDirectory
H A DSimpleFSDirectory.java55 public IndexInput openInput(String name, int bufferSize) throws IOException { method in class:SimpleFSDirectory
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/index/
H A DTestCompoundFile.java189 IndexInput expected = dir.openInput(name);
190 IndexInput actual = csr.openInput(name);
213 IndexInput expected = dir.openInput("d1");
214 IndexInput actual = csr.openInput("d1");
220 expected = dir.openInput("d2");
221 actual = csr.openInput("d2");
269 IndexInput check = dir.openInput(segment + data[i]);
270 IndexInput test = csr.openInput(segment + data[i]);
309 IndexInput in = fsdir.openInput(file);
356 IndexInput expected = dir.openInput("f1
[all...]
H A DTestCrashCausesCorruptIndex.java247 public IndexInput openInput(String name) throws IOException { method in class:TestCrashCausesCorruptIndex.CrashAfterCreateOutput
248 return realDirectory.openInput(name);
H A DTestLazyProxSkipping.java54 public IndexInput openInput(String name) throws IOException { method in class:TestLazyProxSkipping.SeekCountingDirectory
55 IndexInput ii = super.openInput(name);
H A DTestTermInfosReaderIndex.java81 IndexInput input = directory.openInput(segmentFileName, readBufferSize);
82 termEnum = new SegmentTermEnum(directory.openInput(IndexFileNames.segmentFileName(segment, IndexFileNames.TERMS_EXTENSION), readBufferSize), fieldInfos, false);
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/index/
H A DTestCompoundFile.java189 IndexInput expected = dir.openInput(name);
190 IndexInput actual = csr.openInput(name);
213 IndexInput expected = dir.openInput("d1");
214 IndexInput actual = csr.openInput("d1");
220 expected = dir.openInput("d2");
221 actual = csr.openInput("d2");
269 IndexInput check = dir.openInput(segment + data[i]);
270 IndexInput test = csr.openInput(segment + data[i]);
309 IndexInput in = fsdir.openInput(file);
356 IndexInput expected = dir.openInput("f1
[all...]
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/store/
H A DTestCopyBytes.java64 final IndexInput in = dir.openInput("test");
84 IndexInput in2 = dir.openInput("test2");
120 IndexInput input = d.openInput("data");
141 IndexInput copiedData = d.openInput("copy" + i);
H A DTestMultiMMap.java56 IndexInput one = mmapDir.openInput("bytes");
86 IndexInput ii = mmapDir.openInput("zeroBytes");
102 IndexInput ii = mmapDir.openInput("bytes");
121 IndexInput ii = mmapDir.openInput("bytes");
H A DTestBufferedIndexInput.java307 public IndexInput openInput(String name) throws IOException { method in class:TestBufferedIndexInput.MockFSDirectory
308 return openInput(name, BufferedIndexInput.BUFFER_SIZE);
323 public IndexInput openInput(String name, int bufferSize) throws IOException { method in class:TestBufferedIndexInput.MockFSDirectory
326 IndexInput f = dir.openInput(name, bufferSize);
H A DTestRAMDirectory.java171 IndexInput i = dir.openInput("out");
194 IndexInput i = dir.openInput("out");
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/store/
H A DTestCopyBytes.java64 final IndexInput in = dir.openInput("test");
84 IndexInput in2 = dir.openInput("test2");
120 IndexInput input = d.openInput("data");
141 IndexInput copiedData = d.openInput("copy" + i);
H A DTestMultiMMap.java56 IndexInput ii = mmapDir.openInput("zeroBytes");
72 IndexInput ii = mmapDir.openInput("bytes");
91 IndexInput ii = mmapDir.openInput("bytes");
H A DTestBufferedIndexInput.java307 public IndexInput openInput(String name) throws IOException { method in class:TestBufferedIndexInput.MockFSDirectory
308 return openInput(name, BufferedIndexInput.BUFFER_SIZE);
323 public IndexInput openInput(String name, int bufferSize) throws IOException { method in class:TestBufferedIndexInput.MockFSDirectory
326 IndexInput f = dir.openInput(name, bufferSize);
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DCompoundFileReader.java65 stream = dir.openInput(name, readBufferSize);
144 public synchronized IndexInput openInput(String id) throws IOException { method in class:CompoundFileReader
146 return openInput(id, readBufferSize);
150 public synchronized IndexInput openInput(String id, int readBufferSize) throws IOException { method in class:CompoundFileReader
H A DSegmentCoreReaders.java93 freqStream = cfsDir.openInput(IndexFileNames.segmentFileName(segment, IndexFileNames.FREQ_EXTENSION), readBufferSize);
96 proxStream = cfsDir.openInput(IndexFileNames.segmentFileName(segment, IndexFileNames.PROX_EXTENSION), readBufferSize);
H A DTermInfosReader.java104 origEnum = new SegmentTermEnum(directory.openInput(IndexFileNames.segmentFileName(segment, IndexFileNames.TERMS_EXTENSION),
113 final SegmentTermEnum indexEnum = new SegmentTermEnum(directory.openInput(indexFileName,
/lucene-3.6.0/lucene/contrib/misc/src/java/org/apache/lucene/store/
H A DWindowsDirectory.java72 public IndexInput openInput(String name, int bufferSize) throws IOException { method in class:WindowsDirectory
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/util/
H A DTestByteBlockPool.java49 IndexInput input = dir.openInput("foo.txt");
/lucene-3.6.0/lucene/contrib/misc/src/java/org/apache/lucene/index/
H A DCompoundFileExtractor.java94 IndexInput ii = cfr.openInput(files[i]);
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/util/packed/
H A DTestPackedInts.java74 IndexInput in = d.openInput("out.bin");
205 IndexInput in = dir.openInput("out");

Completed in 63 milliseconds

123