Lines Matching refs:IndexResult
196 void SymbolQualitySignals::merge(const Symbol &IndexResult) { in merge() argument
197 Deprecated |= (IndexResult.Flags & Symbol::Deprecated); in merge()
198 ImplementationDetail |= (IndexResult.Flags & Symbol::ImplementationDetail); in merge()
199 References = std::max(IndexResult.References, References); in merge()
200 Category = categorize(IndexResult.SymInfo); in merge()
201 ReservedName = ReservedName || isReserved(IndexResult.Name); in merge()
290 void SymbolRelevanceSignals::merge(const Symbol &IndexResult) { in merge() argument
291 SymbolURI = IndexResult.CanonicalDeclaration.FileURI; in merge()
292 SymbolScope = IndexResult.Scope; in merge()
293 IsInstanceMember |= isInstanceMember(IndexResult.SymInfo); in merge()
294 if (!(IndexResult.Flags & Symbol::VisibleOutsideFile)) { in merge()