#include "FindTarget.h"
#include "AST.h"
#include "HeuristicResolver.h"
#include "support/Logger.h"
#include "clang/AST/ASTConcept.h"
#include "clang/AST/ASTTypeTraits.h"
#include "clang/AST/Decl.h"
#include "clang/AST/DeclBase.h"
#include "clang/AST/DeclCXX.h"
#include "clang/AST/DeclTemplate.h"
#include "clang/AST/DeclVisitor.h"
#include "clang/AST/DeclarationName.h"
#include "clang/AST/Expr.h"
#include "clang/AST/ExprCXX.h"
#include "clang/AST/ExprConcepts.h"
#include "clang/AST/ExprObjC.h"
#include "clang/AST/NestedNameSpecifier.h"
#include "clang/AST/PrettyPrinter.h"
#include "clang/AST/RecursiveASTVisitor.h"
#include "clang/AST/StmtVisitor.h"
#include "clang/AST/TemplateBase.h"
#include "clang/AST/Type.h"
#include "clang/AST/TypeLoc.h"
#include "clang/AST/TypeLocVisitor.h"
#include "clang/AST/TypeVisitor.h"
#include "clang/Basic/LangOptions.h"
#include "clang/Basic/SourceLocation.h"
#include "clang/Basic/SourceManager.h"
#include "clang/Basic/Specifiers.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringExtras.h"
#include "llvm/Support/Casting.h"
#include "llvm/Support/Compiler.h"
#include "llvm/Support/raw_ostream.h"
#include <iterator>
#include <string>
#include <utility>
#include <vector>
Go to the source code of this file.
|
namespace | clang |
| ===– Representation.cpp - ClangDoc Representation --------—*- C++ -*-===//
|
|
namespace | clang::clangd |
| FIXME: Skip testing on windows temporarily due to the different escaping code mode.
|
|
|
llvm::SmallVector< std::pair< const NamedDecl *, DeclRelationSet >, 1 > | clang::clangd::allTargetDecls (const DynTypedNode &, const HeuristicResolver *) |
| Similar to targetDecl(), however instead of applying a filter, all possible decls are returned along with their DeclRelationSets.
|
|
llvm::SmallVector< const NamedDecl *, 1 > | clang::clangd::targetDecl (const DynTypedNode &, DeclRelationSet Mask, const HeuristicResolver *Resolver) |
| targetDecl() finds the declaration referred to by an AST node.
|
|
llvm::SmallVector< const NamedDecl *, 1 > | clang::clangd::explicitReferenceTargets (DynTypedNode N, DeclRelationSet Mask, const HeuristicResolver *Resolver) |
| Find declarations explicitly referenced in the source code defined by N .
|
|
void | clang::clangd::findExplicitReferences (const Stmt *S, llvm::function_ref< void(ReferenceLoc)> Out, const HeuristicResolver *Resolver) |
| Recursively traverse S and report all references explicitly written in the code.
|
|
void | clang::clangd::findExplicitReferences (const Decl *D, llvm::function_ref< void(ReferenceLoc)> Out, const HeuristicResolver *Resolver) |
|
void | clang::clangd::findExplicitReferences (const ASTContext &AST, llvm::function_ref< void(ReferenceLoc)> Out, const HeuristicResolver *Resolver) |
|
llvm::raw_ostream & | clang::clangd::operator<< (llvm::raw_ostream &OS, DeclRelation R) |
|
llvm::raw_ostream & | clang::clangd::operator<< (llvm::raw_ostream &OS, DeclRelationSet RS) |
|
llvm::raw_ostream & | clang::clangd::operator<< (llvm::raw_ostream &OS, ReferenceLoc R) |
|
◆ REL_CASE
Value: case DeclRelation::X: \
llvm::raw_string_ostream OS