Home
last modified time | relevance | path

Searched refs:pointeeType (Results 1 – 5 of 5) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DTypeProperties.td21 def : Property<"pointeeType", QualType> {
25 def : Creator<[{ return ctx.getPointerType(pointeeType); }]>;
50 def : Property<"pointeeType", QualType> {
54 def : Creator<[{ return ctx.getBlockPointerType(pointeeType); }]>;
81 def : Property<"pointeeType", QualType> {
89 return ctx.getMemberPointerType(pointeeType, baseType.getTypePtr());
610 def : Property<"pointeeType", QualType> {
621 return ctx.getDependentAddressSpaceType(pointeeType, addressSpace,
863 def : Property<"pointeeType", QualType> {
868 return ctx.getObjCObjectPointerType(pointeeType);
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DType.cpp894 if (pointeeType.isNull()) in VisitPointerType()
900 return Ctx.getPointerType(pointeeType); in VisitPointerType()
905 if (pointeeType.isNull()) in VisitBlockPointerType()
911 return Ctx.getBlockPointerType(pointeeType); in VisitBlockPointerType()
916 if (pointeeType.isNull()) in VisitLValueReferenceType()
919 if (pointeeType.getAsOpaquePtr() in VisitLValueReferenceType()
928 if (pointeeType.isNull()) in VisitRValueReferenceType()
931 if (pointeeType.getAsOpaquePtr() in VisitRValueReferenceType()
940 if (pointeeType.isNull()) in VisitMemberPointerType()
1221 if (pointeeType.isNull()) in TRIVIAL_TYPE_CLASS()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp1034 QualType pointeeType = resultTy->getPointeeType(); in evalBinOpLN() local
1035 Multiplicand = getContext().getTypeSizeInChars(pointeeType).getQuantity(); in evalBinOpLN()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp7192 const Type *pointeeType = nullptr; in checkNullabilityTypeSpecifier() local
7194 pointeeType = desugared->getArrayElementTypeNoTypeQual(); in checkNullabilityTypeSpecifier()
7196 pointeeType = desugared->getPointeeType().getTypePtr(); in checkNullabilityTypeSpecifier()
7198 if (pointeeType && (pointeeType->isAnyPointerType() || in checkNullabilityTypeSpecifier()
7199 pointeeType->isObjCObjectPointerType() || in checkNullabilityTypeSpecifier()
7200 pointeeType->isMemberPointerType())) { in checkNullabilityTypeSpecifier()
H A DTreeTransform.h5451 QualType pointeeType = getDerived().TransformType(T->getPointeeType()); in TransformDependentAddressSpaceType() local
5453 if (pointeeType.isNull()) in TransformDependentAddressSpaceType()
5466 if (getDerived().AlwaysRebuild() || pointeeType != T->getPointeeType() || in TransformDependentAddressSpaceType()
5469 pointeeType, AddrSpace.get(), T->getAttributeLoc()); in TransformDependentAddressSpaceType()