Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DType.cpp771 if (pointeeType.isNull()) in VisitPointerType()
777 return Ctx.getPointerType(pointeeType); in VisitPointerType()
782 if (pointeeType.isNull()) in VisitBlockPointerType()
788 return Ctx.getBlockPointerType(pointeeType); in VisitBlockPointerType()
793 if (pointeeType.isNull()) in VisitLValueReferenceType()
796 if (pointeeType.getAsOpaquePtr() in VisitLValueReferenceType()
805 if (pointeeType.isNull()) in VisitRValueReferenceType()
808 if (pointeeType.getAsOpaquePtr() in VisitRValueReferenceType()
817 if (pointeeType.isNull()) in VisitMemberPointerType()
1087 if (pointeeType.isNull()) in TRIVIAL_TYPE_CLASS()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp1142 QualType pointeeType = resultTy->getPointeeType(); in evalBinOpLN() local
1143 Multiplicand = getContext().getTypeSizeInChars(pointeeType).getQuantity(); in evalBinOpLN()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaType.cpp6515 const Type *pointeeType; in checkNullabilityTypeSpecifier() local
6517 pointeeType = desugared->getArrayElementTypeNoTypeQual(); in checkNullabilityTypeSpecifier()
6519 pointeeType = desugared->getPointeeType().getTypePtr(); in checkNullabilityTypeSpecifier()
6521 if (pointeeType->isAnyPointerType() || in checkNullabilityTypeSpecifier()
6522 pointeeType->isObjCObjectPointerType() || in checkNullabilityTypeSpecifier()
6523 pointeeType->isMemberPointerType()) { in checkNullabilityTypeSpecifier()
H A DTreeTransform.h4882 QualType pointeeType = getDerived().TransformType(T->getPointeeType()); in TransformDependentAddressSpaceType() local
4884 if (pointeeType.isNull()) in TransformDependentAddressSpaceType()
4897 if (getDerived().AlwaysRebuild() || pointeeType != T->getPointeeType() || in TransformDependentAddressSpaceType()
4900 pointeeType, AddrSpace.get(), T->getAttributeLoc()); in TransformDependentAddressSpaceType()