Home
last modified time | relevance | path

Searched refs:matchingVectorsReader (Results 1 – 3 of 3) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/external/api-doc-tools/external/Lucene.Net.Light/src/core/Index/
H A DSegmentMerger.cs552 TermVectorsReader matchingVectorsReader = null; in MergeVectors()
560 matchingVectorsReader = vectorsReader; in MergeVectors()
565 CopyVectorsWithDeletions(termVectorsWriter, matchingVectorsReader, reader); in MergeVectors()
569 CopyVectorsNoDeletions(termVectorsWriter, matchingVectorsReader, reader); in MergeVectors()
593 if (matchingVectorsReader != null) in CopyVectorsWithDeletions()
621 matchingVectorsReader.RawDocs(rawDocLengths, rawDocLengths2, start, numDocs); in CopyVectorsWithDeletions()
622 … termVectorsWriter.AddRawDocuments(matchingVectorsReader, rawDocLengths, rawDocLengths2, numDocs); in CopyVectorsWithDeletions()
645 …oDeletions(TermVectorsWriter termVectorsWriter, TermVectorsReader matchingVectorsReader, IndexRead… in CopyVectorsNoDeletions() argument
648 if (matchingVectorsReader != null) in CopyVectorsNoDeletions()
655 matchingVectorsReader.RawDocs(rawDocLengths, rawDocLengths2, docCount, len); in CopyVectorsNoDeletions()
[all …]
/dports/textproc/luceneplusplus/LucenePlusPlus-rel_3.0.8/src/core/index/
H A DSegmentMerger.cpp364 TermVectorsReaderPtr matchingVectorsReader; in mergeVectors() local
370 matchingVectorsReader = vectorsReader; in mergeVectors()
374 copyVectorsWithDeletions(termVectorsWriter, matchingVectorsReader, *reader); in mergeVectors()
376 copyVectorsNoDeletions(termVectorsWriter, matchingVectorsReader, *reader); in mergeVectors()
399 if (matchingVectorsReader) { in copyVectorsWithDeletions()
422 matchingVectorsReader->rawDocs(rawDocLengths, rawDocLengths2, start, numDocs); in copyVectorsWithDeletions()
423 … termVectorsWriter->addRawDocuments(matchingVectorsReader, rawDocLengths, rawDocLengths2, numDocs); in copyVectorsWithDeletions()
440 …mVectorsWriterPtr& termVectorsWriter, const TermVectorsReaderPtr& matchingVectorsReader, const Ind… in copyVectorsNoDeletions() argument
442 if (matchingVectorsReader) { in copyVectorsNoDeletions()
447 matchingVectorsReader->rawDocs(rawDocLengths, rawDocLengths2, docCount, len); in copyVectorsNoDeletions()
[all …]
/dports/textproc/luceneplusplus/LucenePlusPlus-rel_3.0.8/include/lucene++/
H A DSegmentMerger.h105 …mVectorsWriterPtr& termVectorsWriter, const TermVectorsReaderPtr& matchingVectorsReader, const Ind…
106 …mVectorsWriterPtr& termVectorsWriter, const TermVectorsReaderPtr& matchingVectorsReader, const Ind…