HomeSort by relevance Sort by last modified time
    Searched refs:PointeeTy (Results 1 - 14 of 14) sorted by null

  /external/clang/lib/StaticAnalyzer/Core/
Store.cpp 83 QualType PointeeTy = CastToTy->getPointeeType();
84 QualType CanonPointeeTy = Ctx.getCanonicalType(PointeeTy);
127 return MakeElementRegion(R, PointeeTy);
166 QualType CanonPointeeTy = Ctx.getCanonicalType(PointeeTy);
172 return MakeElementRegion(baseR, PointeeTy);
176 // if the offset can be evenly divided by sizeof(PointeeTy). If so,
185 // We can only compute sizeof(PointeeTy) if it is a complete type.
186 if (IsCompleteType(Ctx, PointeeTy)) {
188 CharUnits pointeeTySize = Ctx.getTypeSizeInChars(PointeeTy);
191 // ElementRegion (with elementType == PointeeTy) directly on top o
    [all...]
ExprEngineCallAndReturn.cpp 222 QualType PointeeTy = ParamDecl->getOriginalType()->getPointeeType();
223 if (PointeeTy != QualType() && PointeeTy.isConstQualified() &&
224 !PointeeTy->isAnyPointerType() && !PointeeTy->isReferenceType()) {
  /external/clang/lib/AST/
MicrosoftMangle.cpp     [all...]
ASTContext.cpp     [all...]
  /external/clang/lib/CodeGen/
CGRTTI.cpp 54 void BuildPointerTypeInfo(QualType PointeeTy);
214 QualType PointeeTy = PointerTy->getPointeeType();
215 const BuiltinType *BuiltinTy = dyn_cast<BuiltinType>(PointeeTy);
220 Qualifiers Quals = PointeeTy.getQualifiers();
909 void RTTIBuilder::BuildPointerTypeInfo(QualType PointeeTy) {
912 CGM.getContext().getUnqualifiedArrayType(PointeeTy, Quals);
940 QualType PointeeTy = Ty->getPointeeType();
944 CGM.getContext().getUnqualifiedArrayType(PointeeTy, Quals);
    [all...]
CGDebugInfo.h 112 llvm::DIType CreatePointeeType(QualType PointeeTy, llvm::DIFile F);
114 const Type *Ty, QualType PointeeTy,
CGDebugInfo.cpp 548 llvm::DIType CGDebugInfo::CreatePointeeType(QualType PointeeTy,
551 return getOrCreateType(PointeeTy, Unit);
557 llvm::DIType Ty = getTypeOrNull(PointeeTy);
561 if (PointeeTy.hasLocalQualifiers())
562 return CreateQualifiedType(PointeeTy, Unit);
564 if (const RecordType *RTy = dyn_cast<RecordType>(PointeeTy)) {
572 return getOrCreateType(PointeeTy, Unit);
578 QualType PointeeTy,
581 return DBuilder.createReferenceType(CreatePointeeType(PointeeTy, Unit));
586 unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
    [all...]
  /external/llvm/include/llvm/Analysis/
DIBuilder.h 121 /// @param PointeeTy Type pointed by this pointer.
125 DIType createPointerType(DIType PointeeTy, uint64_t SizeInBits,
  /external/clang/lib/Sema/
SemaOverload.cpp     [all...]
SemaChecking.cpp     [all...]
SemaExpr.cpp     [all...]
  /external/clang/lib/Rewrite/
RewriteModernObjC.cpp     [all...]
RewriteObjC.cpp     [all...]
  /external/llvm/lib/Analysis/
DIBuilder.cpp 214 DIType DIBuilder::createPointerType(DIType PointeeTy, uint64_t SizeInBits,
227 PointeeTy
    [all...]

Completed in 269 milliseconds