clang-tools
15.0.0git
|
#include "CodeComplete.h"
#include "AST.h"
#include "CodeCompletionStrings.h"
#include "Compiler.h"
#include "ExpectedTypes.h"
#include "FileDistance.h"
#include "FuzzyMatch.h"
#include "Headers.h"
#include "Hover.h"
#include "Preamble.h"
#include "Protocol.h"
#include "Quality.h"
#include "SourceCode.h"
#include "URI.h"
#include "index/Index.h"
#include "index/Symbol.h"
#include "index/SymbolOrigin.h"
#include "support/Logger.h"
#include "support/Markup.h"
#include "support/Threading.h"
#include "support/ThreadsafeFS.h"
#include "support/Trace.h"
#include "clang/AST/Decl.h"
#include "clang/AST/DeclBase.h"
#include "clang/Basic/CharInfo.h"
#include "clang/Basic/LangOptions.h"
#include "clang/Basic/SourceLocation.h"
#include "clang/Basic/TokenKinds.h"
#include "clang/Format/Format.h"
#include "clang/Frontend/CompilerInstance.h"
#include "clang/Frontend/FrontendActions.h"
#include "clang/Lex/ExternalPreprocessorSource.h"
#include "clang/Lex/Lexer.h"
#include "clang/Lex/Preprocessor.h"
#include "clang/Lex/PreprocessorOptions.h"
#include "clang/Sema/CodeCompleteConsumer.h"
#include "clang/Sema/DeclSpec.h"
#include "clang/Sema/Sema.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/None.h"
#include "llvm/ADT/Optional.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringExtras.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Support/Casting.h"
#include "llvm/Support/Compiler.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/Error.h"
#include "llvm/Support/FormatVariadic.h"
#include "llvm/Support/ScopedPrinter.h"
#include <algorithm>
#include <iterator>
#include <limits>
Go to the source code of this file.
Namespaces | |
clang | |
===– Representation.cpp - ClangDoc Representation --------—*- C++ -*-===// | |
clang::clangd | |
Macros | |
#define | DEBUG_TYPE "CodeComplete" |
Functions | |
CompletionPrefix | clang::clangd::guessCompletionPrefix (llvm::StringRef Content, unsigned Offset) |
CodeCompleteResult | clang::clangd::codeCompleteComment (PathRef FileName, unsigned Offset, llvm::StringRef Prefix, const PreambleData *Preamble, const ParseInputs &ParseInput) |
llvm::Optional< unsigned > | clang::clangd::maybeFunctionArgumentCommentStart (llvm::StringRef Content) |
CodeCompleteResult | clang::clangd::codeComplete (PathRef FileName, Position Pos, const PreambleData *Preamble, const ParseInputs &ParseInput, CodeCompleteOptions Opts, SpeculativeFuzzyFind *SpecFuzzyFind=nullptr) |
Gets code completions at a specified Pos in FileName . More... | |
SignatureHelp | clang::clangd::signatureHelp (PathRef FileName, Position Pos, const PreambleData &Preamble, const ParseInputs &ParseInput, MarkupKind DocumentationFormat) |
Get signature help at a specified Pos in FileName . More... | |
bool | clang::clangd::isIndexedForCodeCompletion (const NamedDecl &ND, ASTContext &ASTCtx) |
llvm::raw_ostream & | clang::clangd::operator<< (llvm::raw_ostream &OS, const CodeCompletion &C) |
llvm::raw_ostream & | clang::clangd::operator<< (llvm::raw_ostream &OS, const CodeCompleteResult &R) |
bool | clang::clangd::isIncludeFile (llvm::StringRef Line) |
bool | clang::clangd::allowImplicitCompletion (llvm::StringRef Content, unsigned Offset) |
#define DEBUG_TYPE "CodeComplete" |
Definition at line 75 of file CodeComplete.cpp.
std::vector<std::string> AccessibleScopes |
Definition at line 619 of file CodeComplete.cpp.
CodeCompletionContext CCContext |
Definition at line 785 of file CodeComplete.cpp.
Sema* CCSema = nullptr |
Definition at line 786 of file CodeComplete.cpp.
PathRef FileName |
Definition at line 1202 of file CodeComplete.cpp.
const RawIdentifier* IdentifierResult = nullptr |
Definition at line 188 of file CodeComplete.cpp.
SymbolID IDForDoc |
Definition at line 897 of file CodeComplete.cpp.
const Symbol* IndexResult = nullptr |
Definition at line 187 of file CodeComplete.cpp.
Referenced by clang::clangd::SymbolQualitySignals::merge(), and clang::clangd::SymbolRelevanceSignals::merge().
llvm::StringRef Name |
Definition at line 177 of file CodeComplete.cpp.
size_t Offset |
Definition at line 1203 of file CodeComplete.cpp.
Referenced by clang::tidy::utils::IncludeSorter::addInclude(), clang::clangd::allowImplicitCompletion(), clang::clangd::buildRenameEdit(), llvm::yaml::MappingTraits< tooling::Range >::NormalizedRange::denormalize(), clang::clangd::diffTokens(), clang::clangd::getBacktickQuoteRange(), clang::tidy::readability::getLocationOfConst(), clang::clangd::guessCompletionPrefix(), clang::clangd::offsetToClangLineColumn(), and clang::clangd::offsetToPosition().
const ParseInputs& ParseInput |
Definition at line 1206 of file CodeComplete.cpp.
const llvm::Optional<PreamblePatch> Patch |
Definition at line 1205 of file CodeComplete.cpp.
const PreambleData& Preamble |
Definition at line 1204 of file CodeComplete.cpp.
Referenced by clang::clangd::ParsedAST::build(), clang::clangd::isPreambleCompatible(), clang::clangd::ParsedAST::preambleVersion(), clang::clangd::prepareCompilerInstance(), clang::clangd::TUScheduler::runWithPreamble(), and clang::clangd::PreamblePatch::unmodified().
SignatureQualitySignals Quality |
Definition at line 899 of file CodeComplete.cpp.
Referenced by clang::clangd::evaluateDecisionForest().
llvm::SmallVector<llvm::StringRef, 1> RankedIncludeHeaders |
Definition at line 189 of file CodeComplete.cpp.
unsigned References |
Definition at line 178 of file CodeComplete.cpp.
Referenced by clang::clangd::SymbolCollector::finish(), and clang::doc::genReferencesBlock().
std::vector<CodeCompletionResult> Results |
Definition at line 784 of file CodeComplete.cpp.
Referenced by clang::tidy::modernize::collectParamDecls(), clang::clangd::flattenSymbolHierarchy(), clang::clangd::getIndexableLocalDecls(), clang::clangd::incomingCalls(), clang::clangd::lookup(), clang::clangd::ClangdServer::prepareRename(), and clang::include_fixer::YamlSymbolIndex::search().
std::string ReturnType |
Definition at line 452 of file CodeComplete.cpp.
const CodeCompletionResult* SemaResult = nullptr |
Definition at line 186 of file CodeComplete.cpp.
Referenced by clang::clangd::SymbolRelevanceSignals::computeASTSignals().
SignatureInformation Signature |
Definition at line 451 of file CodeComplete.cpp.
Referenced by clang::clangd::getSignature().
std::string SnippetSuffix |
Definition at line 450 of file CodeComplete.cpp.
llvm::Optional<std::string> UnresolvedQualifier |
Definition at line 622 of file CodeComplete.cpp.