Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DMicrosoftCXXABI.cpp215 if (RD->isPolymorphic() && !Base->isPolymorphic()) in usesMultipleInheritanceModel()
241 (hasDefinition() && isPolymorphic()); in nullFieldOffsetIsZero()
H A DCXXInheritance.cpp523 if (!BaseDecl->isPolymorphic()) in Collect()
H A DRecordLayoutBuilder.cpp2328 if (!RD->isPolymorphic()) in computeKeyFunction()
2832 HasPolymorphicBaseClass |= BaseDecl->isPolymorphic(); in layoutNonVirtualBases()
2856 if (RD->isPolymorphic()) { in layoutNonVirtualBases()
H A DVTableBuilder.cpp387 if (!BaseDecl->isPolymorphic()) in dump()
2949 if (!RD->isPolymorphic()) in AddMethods()
H A DJSONNodeDumper.cpp491 FIELD1(isPolymorphic); in createCXXRecordDefinitionData()
H A DExprCXX.cpp144 if (RD->isPolymorphic() && E->isGLValue()) in isPotentiallyEvaluated()
H A DTextNodeDumper.cpp2197 FLAG(isPolymorphic, polymorphic); in VisitCXXRecordDecl()
H A DDeclCXX.cpp277 if (BaseClassDecl->isPolymorphic()) { in setBases()
/freebsd-14.2/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.cpp705 bool IsPolymorphic = Matcher.isPolymorphic(); in getMatcherCompletions()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaExceptionSpec.cpp1124 if (!cast<CXXRecordDecl>(RT->getDecl())->isPolymorphic()) in canTypeidThrow()
H A DSemaExprCXX.cpp598 if (RecordD->isPolymorphic() && E->isGLValue()) { in BuildCXXTypeId()
3991 if (!PointeeRD->isPolymorphic() || PointeeRD->hasAttr<FinalAttr>()) in CheckVirtualDtorCall()
5148 return !RD->isUnion() && RD->isPolymorphic(); in EvaluateUnaryTypeTrait()
H A DSemaCast.cpp911 if (!cast<CXXRecordDecl>(SrcDecl)->isPolymorphic()) { in CheckDynamicCast()
H A DSemaDeclCXX.cpp7050 if (Record->isPolymorphic() && !Record->isDependentType()) { in CheckCompletedCXXClass()
7271 (Record->isPolymorphic() || Record->getNumBases())) { in CheckCompletedCXXClass()
10463 if (RD.isPolymorphic()) { in checkIllFormedTrivialABIStruct()
H A DTreeTransform.h12322 if (cast<CXXRecordDecl>(RecordT->getDecl())->isPolymorphic()) in TransformCXXTypeidExpr()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGClass.cpp1881 ClassDecl->isPolymorphic()) in EnterDtorCleanups()
1913 ClassDecl->isPolymorphic()) in EnterDtorCleanups()
H A DMicrosoftCXXABI.cpp1134 if (RD->isPolymorphic()) in isTrivialForMSVC()
4481 if (RD->isPolymorphic()) in isPermittedToBeHomogeneousAggregate()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h1214 bool isPolymorphic() const { return data().Polymorphic; } in isPolymorphic() function