Lines Matching defs:Req
35 const FuzzyFindRequest &Req,
51 More |= Dynamic->fuzzyFind(Req, [&](const Symbol &S) {
60 More |= Static->fuzzyFind(Req, [&](const Symbol &S) {
92 const LookupRequest &Req,
97 Dynamic->lookup(Req, [&](const Symbol &S) { B.insert(S); });
99 auto RemainingIDs = Req.IDs;
102 Static->lookup(Req, [&](const Symbol &S) {
125 bool MergedIndex::refs(const RefsRequest &Req,
129 uint32_t Remaining = Req.Limit.value_or(std::numeric_limits<uint32_t>::max());
134 More |= Dynamic->refs(Req, [&](const Ref &O) {
142 // We return less than Req.Limit if static index returns more refs for dirty
144 bool StaticHadMore = Static->refs(Req, [&](const Ref &O) {
159 const ContainedRefsRequest &Req,
163 uint32_t Remaining = Req.Limit.value_or(std::numeric_limits<uint32_t>::max());
168 More |= Dynamic->containedRefs(Req, [&](const auto &O) {
176 // We return less than Req.Limit if static index returns more refs for dirty
178 bool StaticHadMore = Static->containedRefs(Req, [&](const auto &O) {
201 const RelationsRequest &Req,
203 uint32_t Remaining = Req.Limit.value_or(std::numeric_limits<uint32_t>::max());
208 Dynamic->relations(Req, [&](const SymbolID &Subject, const Symbol &Object) {
215 Static->relations(Req, [&](const SymbolID &Subject, const Symbol &Object) {