Searched refs:ClassDecl (Results 26 - 30 of 30) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp2545 if (const auto *ClassDecl = dyn_cast<CXXRecordDecl>(RD))
2546 return ClassDecl->isEmpty();
2558 if (const auto *ClassDecl = dyn_cast<CXXRecordDecl>(RD)) {
2559 if (ClassDecl->isDynamicClass())
2563 for (const auto &Base : ClassDecl->bases()) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExpr.cpp322 auto *ClassDecl = cast<CXXRecordDecl>(RT->getDecl()); local
323 if (!ClassDecl->hasTrivialDestructor())
324 ReferenceTemporaryDtor = ClassDecl->getDestructor();
H A DCGObjCMac.cpp1359 void GenerateClass(const ObjCImplementationDecl *ClassDecl) override;
1649 void GenerateClass(const ObjCImplementationDecl *ClassDecl) override;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp7912 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(TyRec->getDecl());
7913 for (NamedDecl *D : ClassDecl->getVisibleConversionFunctions()) {
7981 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(TyRec->getDecl());
7982 if (!ClassDecl->hasDefinition())
7985 for (NamedDecl *D : ClassDecl->getVisibleConversionFunctions()) {
H A DSemaInit.cpp5013 if (CXXRecordDecl *ClassDecl = dyn_cast<CXXRecordDecl>(RT->getDecl())) {
5027 CXXConstructorDecl *CD = S.LookupDefaultConstructor(ClassDecl);
5051 ClassDecl->hasUninitializedReferenceMember()) {

Completed in 393 milliseconds

12