#include "clang/AST/ASTContext.h"
#include "clang/AST/ASTTypeTraits.h"
#include "clang/AST/NestedNameSpecifier.h"
#include "clang/AST/Stmt.h"
#include "clang/Basic/SourceLocation.h"
#include "llvm/ADT/Optional.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/SmallPtrSet.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/Support/raw_ostream.h"
#include <bitset>
Go to the source code of this file.
|
llvm::SmallVector< const NamedDecl *, 1 > | clang::clangd::targetDecl (const ast_type_traits::DynTypedNode &, DeclRelationSet Mask) |
| targetDecl() finds the declaration referred to by an AST node. More...
|
|
llvm::SmallVector< std::pair< const NamedDecl *, DeclRelationSet >, 1 > | clang::clangd::allTargetDecls (const ast_type_traits::DynTypedNode &) |
| Similar to targetDecl(), however instead of applying a filter, all possible decls are returned along with their DeclRelationSets. More...
|
|
llvm::raw_ostream & | clang::clangd::operator<< (llvm::raw_ostream &OS, DeclRelation R) |
|
llvm::raw_ostream & | clang::clangd::operator<< (llvm::raw_ostream &OS, ReferenceLoc R) |
|
void | clang::clangd::findExplicitReferences (const Stmt *S, llvm::function_ref< void(ReferenceLoc)> Out) |
| Recursively traverse S and report all references explicitly written in the code. More...
|
|
void | clang::clangd::findExplicitReferences (const Decl *D, llvm::function_ref< void(ReferenceLoc)> Out) |
|
void | clang::clangd::findExplicitReferences (const ASTContext &AST, llvm::function_ref< void(ReferenceLoc)> Out) |
|
llvm::SmallVector< const NamedDecl *, 1 > | clang::clangd::explicitReferenceTargets (ast_type_traits::DynTypedNode N, DeclRelationSet Mask) |
| Find declarations explicitly referenced in the source code defined by N . More...
|
|
DeclRelationSet | clang::clangd::operator| (DeclRelation L, DeclRelation R) |
|
DeclRelationSet | clang::clangd::operator& (DeclRelation L, DeclRelation R) |
|
DeclRelationSet | clang::clangd::operator~ (DeclRelation R) |
|
llvm::raw_ostream & | clang::clangd::operator<< (llvm::raw_ostream &OS, DeclRelationSet RS) |
|