Home
last modified time | relevance | path

Searched refs:openInput (Results 1 – 25 of 125) sorted by relevance

12345

/dports/textproc/luceneplusplus/LucenePlusPlus-rel_3.0.8/src/test/index/
H A DCompoundFileTest.cpp196 expected = dir->openInput(L"d2"); in TEST_F()
197 actual = csr->openInput(L"d2"); in TEST_F()
303 IndexInputPtr one = cr->openInput(L"f11"); in TEST_F()
347 IndexInputPtr e1 = dir->openInput(L"f11"); in TEST_F()
348 IndexInputPtr e2 = dir->openInput(L"f3"); in TEST_F()
350 IndexInputPtr a1 = cr->openInput(L"f11"); in TEST_F()
351 IndexInputPtr a2 = dir->openInput(L"f3"); in TEST_F()
425 IndexInputPtr e1 = cr->openInput(L"f11"); in TEST_F()
426 IndexInputPtr e2 = cr->openInput(L"f3"); in TEST_F()
504 e1 = cr->openInput(L"bogus"); in TEST_F()
[all …]
H A DLazyProxSkippingTest.cpp79 virtual IndexInputPtr openInput(const String& name) { in openInput() function in SeekCountingDirectory
80 IndexInputPtr ii = RAMDirectory::openInput(name); in openInput()
/dports/devel/hadoop/hadoop-1.2.1/src/contrib/index/src/java/org/apache/hadoop/contrib/index/lucene/
H A DMixedDirectory.java151 public IndexInput openInput(String name) throws IOException { in openInput() method in MixedDirectory
153 return writeDir.openInput(name); in openInput()
155 return readDir.openInput(name); in openInput()
160 public IndexInput openInput(String name, int bufferSize) throws IOException { in openInput() method in MixedDirectory
162 return writeDir.openInput(name, bufferSize); in openInput()
164 return readDir.openInput(name, bufferSize); in openInput()
H A DFileSystemDirectory.java181 public IndexInput openInput(String name) throws IOException { in openInput() method in FileSystemDirectory
182 return openInput(name, ioFileBufferSize); in openInput()
188 public IndexInput openInput(String name, int bufferSize) throws IOException { in openInput() method in FileSystemDirectory
/dports/textproc/luceneplusplus/LucenePlusPlus-rel_3.0.8/src/test/store/
H A DMockFSDirectory.cpp26 IndexInputPtr MockFSDirectory::openInput(const String& name) { in openInput() function in Lucene::MockFSDirectory
27 return openInput(name, BufferedIndexInput::BUFFER_SIZE); in openInput()
38 IndexInputPtr MockFSDirectory::openInput(const String& name, int32_t bufferSize) { in openInput() function in Lucene::MockFSDirectory
41 IndexInputPtr f(dir->openInput(name, bufferSize)); in openInput()
/dports/security/snowflake-tor/snowflake-ead5a960d7fa19dc890ccbfc0765c5ab6629eaa9/vendor/github.com/klauspost/reedsolomon/examples/
H A Dstream-decoder.go75 shards, size, err := openInput(*dataShards, *parShards, fname)
84 shards, size, err = openInput(*dataShards, *parShards, fname)
108 shards, size, err = openInput(*dataShards, *parShards, fname)
127 shards, size, err = openInput(*dataShards, *parShards, fname)
135 func openInput(dataShards, parShards int, fname string) (r []io.Reader, size int64, err error) { func
/dports/graphics/jogamp-jogl/jogl/src/jogl/classes/com/jogamp/audio/windows/waveout/
H A DTrack.java73 openInput(); in Track()
84 private void openInput() throws IOException { in openInput() method in Track
96 openInput(); in play()
144 openInput(); in fill()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/clucene/src/CLucene/store/
H A DDirectory.h64 virtual IndexInput* openInput(const QString& name) = 0; in CL_NS_DEF()
65 virtual IndexInput* openInput(const QString& name, int32_t bufferSize) in CL_NS_DEF()
68 return openInput(name); in CL_NS_DEF()
H A DFSDirectory.h79 IndexInput* openInput(const QString& name); in CL_NS_DEF()
80 IndexInput* openInput(const QString& name, int32_t bufferSize); in CL_NS_DEF()
/dports/textproc/luceneplusplus/LucenePlusPlus-rel_3.0.8/src/core/store/
H A DDirectory.cpp31 IndexInputPtr Directory::openInput(const String& name, int32_t bufferSize) { in openInput() function in Lucene::Directory
32 return openInput(name); in openInput()
81 is = src->openInput(*file); in copy()
H A DFSDirectory.cpp188 IndexInputPtr FSDirectory::openInput(const String& name) { in openInput() function in Lucene::FSDirectory
190 return openInput(name, BufferedIndexInput::BUFFER_SIZE); in openInput()
193 IndexInputPtr FSDirectory::openInput(const String& name, int32_t bufferSize) { in openInput() function in Lucene::FSDirectory
194 return Directory::openInput(name, bufferSize); in openInput()
H A DFileSwitchDirectory.cpp90 IndexInputPtr FileSwitchDirectory::openInput(const String& name) { in openInput() function in Lucene::FileSwitchDirectory
91 return getDirectory(name)->openInput(name); in openInput()
H A DSimpleFSDirectory.cpp29 IndexInputPtr SimpleFSDirectory::openInput(const String& name) { in openInput() function in Lucene::SimpleFSDirectory
30 return FSDirectory::openInput(name); in openInput()
33 IndexInputPtr SimpleFSDirectory::openInput(const String& name, int32_t bufferSize) { in openInput() function in Lucene::SimpleFSDirectory
/dports/textproc/luceneplusplus/LucenePlusPlus-rel_3.0.8/include/lucene++/
H A DMMapDirectory.h34 using FSDirectory::openInput;
37 virtual IndexInputPtr openInput(const String& name, int32_t bufferSize);
H A DSimpleFSDirectory.h30 virtual IndexInputPtr openInput(const String& name);
33 virtual IndexInputPtr openInput(const String& name, int32_t bufferSize);
H A DDirectory.h55 virtual IndexInputPtr openInput(const String& name) = 0;
67 virtual IndexInputPtr openInput(const String& name, int32_t bufferSize);
H A DFSDirectory.h110 virtual IndexInputPtr openInput(const String& name);
115 virtual IndexInputPtr openInput(const String& name, int32_t bufferSize);
H A DCompoundFileReader.h51 virtual IndexInputPtr openInput(const String& name);
52 virtual IndexInputPtr openInput(const String& name, int32_t bufferSize);
/dports/textproc/luceneplusplus/LucenePlusPlus-rel_3.0.8/src/core/index/
H A DCompoundFileReader.cpp33 stream = dir->openInput(name, readBufferSize); in ConstructReader()
92 IndexInputPtr CompoundFileReader::openInput(const String& name) { in openInput() function in Lucene::CompoundFileReader
95 return openInput(name, readBufferSize); in openInput()
98 IndexInputPtr CompoundFileReader::openInput(const String& name, int32_t bufferSize) { in openInput() function in Lucene::CompoundFileReader
/dports/textproc/luceneplusplus/LucenePlusPlus-rel_3.0.8/src/test/include/
H A DMockFSDirectory.h30 virtual IndexInputPtr openInput(const String& name);
31 virtual IndexInputPtr openInput(const String& name, int32_t bufferSize);
/dports/textproc/clucene/clucene-core-2.3.3.4/src/core/CLucene/store/
H A DDirectory.h62 …virtual bool openInput(const char* name, IndexInput*& ret, CLuceneError& error, int32_t bufferSize… in CL_CLASS_DEF()
65 IndexInput* openInput(const char* name, int32_t bufferSize=-1); in CL_CLASS_DEF()
H A DDirectory.cpp56 IndexInput* Directory::openInput(const char* name, int32_t bufferSize){ in openInput() function in Directory
59 if ( ! openInput(name, ret, err, bufferSize) ) in openInput()
/dports/editors/kate/kate-21.12.3/kate/
H A Dkateappadaptor.cpp104 bool KateAppAdaptor::openInput(const QString &text, const QString &encoding) in openInput() function in KateAppAdaptor
106 return m_app->openInput(text, encoding); in openInput()
/dports/misc/mbuffer/mbuffer-20211018/
H A Dinput.h24 void openInput();
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/clucene/src/CLucene/index/
H A DSegmentInfos.cpp117 IndexInput* input = directory->openInput(QLatin1String("segments")); in read()
232 IndexInput* input = directory->openInput(QLatin1String("segments")); in readCurrentVersion()

12345