Home
last modified time | relevance | path

Searched refs:isPolymorphic (Results 1 – 21 of 21) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.h349 virtual bool isPolymorphic() const { return false; }
924 bool isPolymorphic() const override { return true; }
1049 bool isPolymorphic() const override { return false; }
H A DRegistry.cpp709 bool IsPolymorphic = Matcher.isPolymorphic(); in getMatcherCompletions()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DCXXInheritance.cpp472 if (!BaseDecl->isPolymorphic()) in Collect()
H A DRecordLayoutBuilder.cpp2336 if (!RD->isPolymorphic()) in computeKeyFunction()
2835 HasPolymorphicBaseClass |= BaseDecl->isPolymorphic(); in layoutNonVirtualBases()
2859 if (RD->isPolymorphic()) { in layoutNonVirtualBases()
H A DVTableBuilder.cpp387 if (!BaseDecl->isPolymorphic()) in dump()
3044 if (!RD->isPolymorphic()) in AddMethods()
H A DJSONNodeDumper.cpp523 FIELD1(isPolymorphic); in createCXXRecordDefinitionData()
H A DExprCXX.cpp143 if (RD->isPolymorphic() && E->isGLValue()) in isPotentiallyEvaluated()
H A DASTContext.cpp1710 if (!Class->isPolymorphic()) in primaryBaseHaseAddressDiscriminatedVTableAuthentication()
3326 assert(RD->isPolymorphic() && in getPointerAuthVTablePointerDiscriminator()
15114 assert(ThisClass->isPolymorphic()); in baseForVTableAuthentication()
15118 assert(PrimaryBase->isPolymorphic()); in baseForVTableAuthentication()
15121 if (!Base || Base == PrimaryBase || !Base->isPolymorphic()) in baseForVTableAuthentication()
H A DTextNodeDumper.cpp2610 FLAG(isPolymorphic, polymorphic); in VisitCXXRecordDecl()
H A DDeclCXX.cpp278 if (BaseClassDecl->isPolymorphic()) { in setBases()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaTypeTraits.cpp688 RD && !RD->isPolymorphic() && SemaRef.IsCXXTriviallyRelocatableType(*RD)) in IsTriviallyRelocatableType()
820 return !RD->isUnion() && RD->isPolymorphic(); in EvaluateUnaryTypeTrait()
2526 if (D->isPolymorphic()) { in DiagnoseNonStandardLayoutReason()
H A DSemaCast.cpp969 if (!cast<CXXRecordDecl>(SrcDecl)->isPolymorphic()) { in CheckDynamicCast()
H A DSemaDeclCXX.cpp6998 if (Record->isPolymorphic() && !Record->isDependentType()) { in CheckCompletedCXXClass()
7265 (Record->isPolymorphic() || Record->getNumBases())) { in CheckCompletedCXXClass()
10557 if (RD.isPolymorphic()) { in checkIllFormedTrivialABIStruct()
10646 if (!Base || Base == PrimaryBase || !Base->isPolymorphic()) in checkIncorrectVTablePointerAuthenticationAttribute()
10654 if (!RD.isPolymorphic()) in checkIncorrectVTablePointerAuthenticationAttribute()
H A DSemaExprCXX.cpp582 if (RecordD->isPolymorphic() && E->isGLValue()) { in BuildCXXTypeId()
4335 if (!PointeeRD->isPolymorphic() || PointeeRD->hasAttr<FinalAttr>()) in CheckVirtualDtorCall()
H A DSemaInit.cpp8566 Record->isPolymorphic()) in Perform()
H A DSemaChecking.cpp1859 if (!FirstArgRecord->isPolymorphic()) { in GetVTablePointer()
H A DTreeTransform.h14298 if (cast<CXXRecordDecl>(RecordT->getDecl())->isPolymorphic()) in TransformCXXTypeidExpr()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGPointerAuth.cpp607 if (!Record->getDefinition() || !Record->isPolymorphic()) in getVTablePointerAuthentication()
H A DCGClass.cpp1894 ClassDecl->isPolymorphic()) in EnterDtorCleanups()
1926 ClassDecl->isPolymorphic()) in EnterDtorCleanups()
H A DMicrosoftCXXABI.cpp1140 if (RD->isPolymorphic()) in isTrivialForMSVC()
4483 if (RD->isPolymorphic()) in isPermittedToBeHomogeneousAggregate()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h1223 bool isPolymorphic() const { return data().Polymorphic; } in isPolymorphic() function