| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | DeclBase.cpp | 539 ASTMutationListener *Decl::getASTMutationListener() const { in getASTMutationListener() function in Decl 540 return getASTContext().getASTMutationListener(); in getASTMutationListener() 577 if (C.getASTMutationListener()) in markUsed() 578 C.getASTMutationListener()->DeclarationMarkedUsed(this); in markUsed() 2146 if (ASTMutationListener *L = DCAsDecl->getASTMutationListener()) in makeDeclVisibleInContextWithFlags()
|
| H A D | DeclTemplate.cpp | 434 if (ASTMutationListener *L = getASTMutationListener()) in addSpecializationImpl() 614 if (ASTMutationListener *L = getASTMutationListener()) in AddPartialSpecialization() 1374 if (ASTMutationListener *L = getASTMutationListener()) in AddPartialSpecialization()
|
| H A D | Decl.cpp | 2919 if (ASTMutationListener *L = getASTContext().getASTMutationListener()) in setTemplateSpecializationKind() 2927 if (ASTMutationListener *L = getASTContext().getASTMutationListener()) in setTemplateSpecializationKind() 4429 if (ASTMutationListener *L = getASTContext().getASTMutationListener()) in setTemplateSpecializationKind() 4440 if (ASTMutationListener *L = getASTContext().getASTMutationListener()) in setTemplateSpecializationKind() 4859 if (ASTMutationListener *L = getASTMutationListener()) in completeDefinition() 5379 if (ASTMutationListener *Listener = Ctx.getASTMutationListener()) in setAnonymousNamespace()
|
| H A D | DeclCXX.cpp | 816 if (ASTMutationListener *L = getASTMutationListener()) in addedMember() 3116 if (auto *L = getASTMutationListener()) in setOperatorDelete()
|
| H A D | DeclObjC.cpp | 2140 if (ASTMutationListener *L = C.getASTMutationListener()) in Create()
|
| H A D | ASTContext.cpp | 1080 if (auto *Listener = getASTMutationListener(); in mergeDefinitionIntoModule() 3808 if (ASTMutationListener *L = getASTMutationListener()) in adjustDeducedFunctionResultType()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Frontend/ |
| H A D | ASTUnit.h | 502 ASTMutationListener *getASTMutationListener();
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaModule.cpp | 483 if (auto *Listener = getASTMutationListener()) in ActOnModuleDecl()
|
| H A D | SemaExceptionSpec.cpp | 246 if (auto *Listener = getASTMutationListener()) in UpdateExceptionSpec()
|
| H A D | SemaDeclCXX.cpp | 9253 if (ASTMutationListener *L = getASTMutationListener()) in DefineDefaultedComparison() 14219 if (ASTMutationListener *L = getASTMutationListener()) { in DefineImplicitDefaultConstructor() 14400 if (ASTMutationListener *L = getASTMutationListener()) { in DefineInheritingConstructor() 14511 if (ASTMutationListener *L = getASTMutationListener()) { in DefineImplicitDestructor() 15385 if (ASTMutationListener *L = getASTMutationListener()) { in DefineImplicitCopyAssignment() 15777 if (ASTMutationListener *L = getASTMutationListener()) { in DefineImplicitMoveAssignment() 15927 if (ASTMutationListener *L = getASTMutationListener()) { in DefineImplicitCopyConstructor() 16058 if (ASTMutationListener *L = getASTMutationListener()) { in DefineImplicitMoveConstructor() 16129 if (ASTMutationListener *L = getASTMutationListener()) { in DefineImplicitLambdaToFunctionPointerConversion() 16181 if (ASTMutationListener *L = getASTMutationListener()) { in DefineImplicitLambdaToBlockPointerConversion()
|
| H A D | SemaTemplateInstantiateDecl.cpp | 5232 if (ASTMutationListener *L = getASTMutationListener()) in InstantiateDefaultArgument() 5858 if (auto *Listener = getASTMutationListener()) in InstantiateFunctionDefinition() 6101 if (ASTMutationListener *L = getASTContext().getASTMutationListener()) in InstantiateVariableInitializer()
|
| H A D | SemaObjC.cpp | 2131 if (ASTMutationListener *L = SemaRef.getASTMutationListener()) in handleBoxable()
|
| H A D | Sema.cpp | 655 ASTMutationListener *Sema::getASTMutationListener() const { in getASTMutationListener() function in Sema
|
| H A D | SemaTemplateInstantiate.cpp | 3955 if (auto *L = getASTMutationListener()) in InstantiateInClassInitializer()
|
| H A D | SemaOpenMP.cpp | 3312 if (ASTMutationListener *ML = Context.getASTMutationListener()) in CheckOMPThreadPrivateDecl() 3420 if (ASTMutationListener *ML = S.Context.getASTMutationListener()) in applyOMPAllocateAttribute() 23123 if (ASTMutationListener *ML = getASTContext().getASTMutationListener()) in ActOnOpenMPDeclareTargetName() 23231 if (ASTMutationListener *ML = getASTContext().getASTMutationListener()) in checkDeclIsAllowedInOpenMPTarget()
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | ASTUnit.cpp | 766 ASTMutationListener *ASTUnit::getASTMutationListener() { in getASTMutationListener() function in ASTUnit 1035 return Unit.getASTMutationListener(); in GetASTMutationListener()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | DeclBase.h | 1281 ASTMutationListener *getASTMutationListener() const;
|
| H A D | ASTContext.h | 1341 ASTMutationListener *getASTMutationListener() const { return Listener; } in getASTMutationListener() function
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 911 ASTMutationListener *getASTMutationListener() const;
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReader.cpp | 10927 if (auto *Listener = getContext().getASTMutationListener()) in FinishedDeserializing()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Testing/Demangle/ |
| H A D | DemangleTestCases.inc | 9780 {"_ZNK5clang4Decl22getASTMutationListenerEv", "clang::Decl::getASTMutationListener() const"},
|