Searched refs:DeclRelationSet (Results 1 – 4 of 4) sorted by relevance
| /llvm-project-15.0.7/clang-tools-extra/clangd/ |
| H A D | FindTarget.h | 42 class DeclRelationSet; variable 173 class DeclRelationSet { 183 friend DeclRelationSet operator&(DeclRelationSet L, DeclRelationSet R) { 186 friend DeclRelationSet operator|(DeclRelationSet L, DeclRelationSet R) { 189 friend bool operator==(DeclRelationSet L, DeclRelationSet R) { 192 friend DeclRelationSet operator~(DeclRelationSet R) { return ~R.S; } 193 DeclRelationSet &operator|=(DeclRelationSet Other) { 197 DeclRelationSet &operator&=(DeclRelationSet Other) { 209 return DeclRelationSet(L) | DeclRelationSet(R); 212 return DeclRelationSet(L) & DeclRelationSet(R); [all …]
|
| H A D | FindTarget.cpp | 131 using RelSet = DeclRelationSet; 528 llvm::SmallVector<std::pair<const NamedDecl *, DeclRelationSet>, 1> 532 DeclRelationSet Flags; in allTargetDecls() 557 targetDecl(const DynTypedNode &N, DeclRelationSet Mask, in targetDecl() 568 explicitReferenceTargets(DynTypedNode N, DeclRelationSet Mask, in explicitReferenceTargets() 1141 llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, DeclRelationSet RS) { in operator <<()
|
| H A D | XRefs.cpp | 169 std::vector<std::pair<const NamedDecl *, DeclRelationSet>> 171 DeclRelationSet Relations, in getDeclAtPositionWithRelations() 174 std::vector<std::pair<const NamedDecl *, DeclRelationSet>> Result; in getDeclAtPositionWithRelations() 197 getDeclAtPosition(ParsedAST &AST, SourceLocation Pos, DeclRelationSet Relations, in getDeclAtPosition() 375 DeclRelationSet Relations = in locateASTReferent() 1244 DeclRelationSet Relations = in findDocumentHighlights() 1293 DeclRelationSet Relations = in findImplementations() 1373 DeclRelationSet Relations = in findReferences() 1518 DeclRelationSet Relations = DeclRelation::TemplatePattern | in getSymbolInfo()
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/unittests/ |
| H A D | FindTargetTests.cpp | 35 PrintedDecl(const char *Name, DeclRelationSet Relations = {}) in PrintedDecl() 37 PrintedDecl(const NamedDecl *D, DeclRelationSet Relations = {}) in PrintedDecl() 49 DeclRelationSet Relations;
|