Searched refs:PointeeTy (Results 1 - 15 of 15) sorted by relevance

/external/clang/lib/StaticAnalyzer/Core/
H A DStore.cpp96 QualType PointeeTy = CastToTy->getPointeeType(); local
97 QualType CanonPointeeTy = Ctx.getCanonicalType(PointeeTy);
140 return MakeElementRegion(R, PointeeTy);
179 QualType CanonPointeeTy = Ctx.getCanonicalType(PointeeTy);
185 return MakeElementRegion(baseR, PointeeTy);
189 // if the offset can be evenly divided by sizeof(PointeeTy). If so,
198 // We can only compute sizeof(PointeeTy) if it is a complete type.
199 if (IsCompleteType(Ctx, PointeeTy)) {
201 CharUnits pointeeTySize = Ctx.getTypeSizeInChars(PointeeTy);
204 // ElementRegion (with elementType == PointeeTy) directl
[all...]
H A DCallEvent.cpp115 QualType PointeeTy = Ty->getPointeeType(); local
116 if (PointeeTy == QualType())
118 if (!PointeeTy.isConstQualified())
120 if (PointeeTy->isAnyPointerType())
/external/clang/lib/Analysis/
H A DBodyFarm.cpp300 QualType PointeeTy = PT->getPointeeType();
310 PointeeTy),
311 PointeeTy),
320 PointeeTy),
/external/clang/lib/CodeGen/
H A DCGRTTI.cpp54 void BuildPointerTypeInfo(QualType PointeeTy);
221 QualType PointeeTy = PointerTy->getPointeeType(); local
222 const BuiltinType *BuiltinTy = dyn_cast<BuiltinType>(PointeeTy);
227 Qualifiers Quals = PointeeTy.getQualifiers();
916 void RTTIBuilder::BuildPointerTypeInfo(QualType PointeeTy) { argument
919 CGM.getContext().getUnqualifiedArrayType(PointeeTy, Quals);
947 QualType PointeeTy = Ty->getPointeeType(); local
951 CGM.getContext().getUnqualifiedArrayType(PointeeTy, Quals);
H A DCGDebugInfo.h132 llvm::DIType CreatePointeeType(QualType PointeeTy, llvm::DIFile F);
134 const Type *Ty, QualType PointeeTy,
H A DCGDebugInfo.cpp614 llvm::DIType CGDebugInfo::CreatePointeeType(QualType PointeeTy, argument
617 return getOrCreateType(PointeeTy, Unit);
623 llvm::DIType Ty = getTypeOrNull(PointeeTy);
627 if (PointeeTy.hasLocalQualifiers())
628 return CreateQualifiedType(PointeeTy, Unit);
630 if (const RecordType *RTy = dyn_cast<RecordType>(PointeeTy)) {
638 return getOrCreateType(PointeeTy, Unit);
643 QualType PointeeTy,
648 CreatePointeeType(PointeeTy, Unit));
653 unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
641 CreatePointerLikeType(unsigned Tag, const Type *Ty, QualType PointeeTy, llvm::DIFile Unit) argument
994 QualType PointeeTy = ThisPtrTy->getPointeeType(); local
[all...]
/external/clang/lib/AST/
H A DMicrosoftMangle.cpp1492 QualType PointeeTy = T->getPointeeType(); local
1493 if (PointeeTy->isArrayType()) {
1495 mangleExtraDimensions(PointeeTy);
1496 } else if (const FunctionType *FT = PointeeTy->getAs<FunctionType>()) {
1501 mangleQualifiers(PointeeTy.getQualifiers(), false);
1502 mangleType(PointeeTy, Range, false);
1517 QualType PointeeTy = T->getPointeeType(); local
1518 if (!PointeeTy.hasQualifiers())
1521 mangleType(PointeeTy, Range);
1529 QualType PointeeTy local
[all...]
H A DASTContext.cpp4868 void ASTContext::getLegacyIntegralTypeEncoding (QualType &PointeeTy) const {
4869 if (isa<TypedefType>(PointeeTy.getTypePtr())) {
4870 if (const BuiltinType *BT = PointeeTy->getAs<BuiltinType>()) {
4871 if (BT->getKind() == BuiltinType::ULong && getIntWidth(PointeeTy) == 32)
4872 PointeeTy = UnsignedIntTy;
4874 if (BT->getKind() == BuiltinType::Long && getIntWidth(PointeeTy) == 32)
4875 PointeeTy = IntTy;
5036 QualType PointeeTy; local
5043 PointeeTy = PT->getPointeeType();
5045 PointeeTy
5293 QualType PointeeTy = OPT->getPointeeType(); local
[all...]
/external/llvm/include/llvm/
H A DDIBuilder.h127 /// @param PointeeTy Type pointed by this pointer.
132 createPointerType(DIType PointeeTy, uint64_t SizeInBits,
136 /// @param PointeeTy Type pointed to by this pointer.
138 DIDerivedType createMemberPointerType(DIType PointeeTy, DIType Class);
/external/clang/lib/Sema/
H A DSemaChecking.cpp3228 QualType PointeeTy = DestPtrTy->getPointeeType(); local
3232 if (PointeeTy->isVoidType())
3257 if (!PointeeTy->isIncompleteType() &&
3258 (Context.getTypeSize(PointeeTy) == Context.getCharWidth()))
3281 << PointeeTy
3298 if (PointeeTy->isRecordType() &&
3303 << PointeeTy << Dest->getSourceRange()
3310 if (isDynamicClassType(PointeeTy)) {
3328 << FnName << PointeeTy
3331 } else if (PointeeTy
[all...]
H A DSemaOverload.cpp6201 QualType PointeeTy;
6206 PointeeTy = PTy->getPointeeType();
6209 PointeeTy = PointerTy->getPointeeType();
6216 if (PointeeTy->isArrayType())
6219 unsigned BaseCVR = PointeeTy.getCVRQualifiers();
6233 (!(PointeeTy->isAnyPointerType() || PointeeTy->isReferenceType()))))
6237 QualType QPointeeTy = Context.getCVRQualifiedType(PointeeTy, CVR);
6272 QualType PointeeTy = PointerTy->getPointeeType(); local
6277 if (PointeeTy
6983 QualType PointeeTy = (*Ptr)->getPointeeType(); local
[all...]
H A DSemaExpr.cpp6355 QualType PointeeTy = Operand->getType()->getPointeeType(); local
6356 return S.RequireCompleteType(Loc, PointeeTy,
6358 PointeeTy, Operand->getSourceRange());
6373 QualType PointeeTy = Operand->getType()->getPointeeType();
6374 if (PointeeTy->isVoidType()) {
6378 if (PointeeTy->isFunctionType()) {
/external/llvm/lib/IR/
H A DDIBuilder.cpp206 DIBuilder::createPointerType(DIType PointeeTy, uint64_t SizeInBits, argument
219 PointeeTy
224 DIDerivedType DIBuilder::createMemberPointerType(DIType PointeeTy, DIType Base) { argument
236 PointeeTy,
/external/clang/lib/Rewrite/Frontend/
H A DRewriteModernObjC.cpp1238 QualType PointeeTy; local
1240 PointeeTy = PT->getPointeeType();
1242 PointeeTy = BPT->getPointeeType();
1243 if ((FPRetType = PointeeTy->getAs<FunctionType>())) {
3025 QualType PointeeTy = PT->getPointeeType(); local
3026 convertToUnqualifiedObjCType(PointeeTy);
3027 T = Context->getPointerType(PointeeTy);
4700 QualType PointeeTy; local
4702 PointeeTy = PT->getPointeeType();
4703 if (const FunctionType *FT = PointeeTy
[all...]
H A DRewriteObjC.cpp1058 QualType PointeeTy; local
1060 PointeeTy = PT->getPointeeType();
1062 PointeeTy = BPT->getPointeeType();
1063 if ((FPRetType = PointeeTy->getAs<FunctionType>())) {

Completed in 301 milliseconds