Lines Matching defs:IndexResult
188 void SymbolQualitySignals::merge(const Symbol &IndexResult) {
189 Deprecated |= (IndexResult.Flags & Symbol::Deprecated);
190 ImplementationDetail |= (IndexResult.Flags & Symbol::ImplementationDetail);
191 References = std::max(IndexResult.References, References);
192 Category = categorize(IndexResult.SymInfo);
193 ReservedName = ReservedName || isReservedName(IndexResult.Name);
283 void SymbolRelevanceSignals::merge(const Symbol &IndexResult) {
284 SymbolURI = IndexResult.CanonicalDeclaration.FileURI;
285 SymbolScope = IndexResult.Scope;
286 IsInstanceMember |= isInstanceMember(IndexResult.SymInfo);
287 if (!(IndexResult.Flags & Symbol::VisibleOutsideFile)) {
293 MainFileSignals->ReferencedSymbols.lookup(IndexResult.ID));
296 MainFileSignals->RelatedNamespaces.lookup(IndexResult.Scope));