Home
last modified time | relevance | path

Searched refs:IndexResult (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/clang-tools-extra/clangd/
DCodeComplete.cpp170 const Symbol *IndexResult = nullptr; member
193 if (IndexResult) { in overloadSet()
194 switch (IndexResult->SymInfo.Kind) { in overloadSet()
207 (IndexResult->Scope + IndexResult->Name).toStringRef(Scratch), in overloadSet()
308 if (C.IndexResult) { in CodeCompletionBuilder()
309 Completion.Origin |= C.IndexResult->Origin; in CodeCompletionBuilder()
311 Completion.Scope = std::string(C.IndexResult->Scope); in CodeCompletionBuilder()
313 Completion.Kind = toCompletionItemKind(C.IndexResult->SymInfo.Kind); in CodeCompletionBuilder()
315 Completion.Name = std::string(C.IndexResult->Name); in CodeCompletionBuilder()
319 llvm::StringRef ShortestQualifier = C.IndexResult->Scope; in CodeCompletionBuilder()
[all …]
DQuality.cpp196 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()
[all …]
DQuality.h78 void merge(const Symbol &IndexResult);
157 void merge(const Symbol &IndexResult);
/external/llvm-project/clang/lib/Sema/
DSemaChecking.cpp7353 Expr::EvalResult IndexResult; in checkFormatStringExpr() local
7354 if (ASE->getRHS()->EvaluateAsInt(IndexResult, S.Context, in checkFormatStringExpr()
7357 sumOffsets(Offset, IndexResult.Val.getInt(), BO_Add, in checkFormatStringExpr()