Home
last modified time | relevance | path

Searched refs:PType (Results 1 – 6 of 6) sorted by relevance

/external/llvm/lib/Target/NVPTX/
DNVPTXLowerStructArgs.cpp62 PointerType *PType = dyn_cast<PointerType>(Arg->getType()); in handleParam() local
64 assert(PType && "Expecting pointer type in handleParam"); in handleParam()
66 Type *StructType = PType->getElementType(); in handleParam()
/external/clang/lib/StaticAnalyzer/Checkers/
DGenericTaintChecker.cpp490 QualType PType = ArgTy->getPointeeType(); in process() local
491 if ((!PType.isNull() && !PType.isConstQualified()) in process()
/external/clang/lib/AST/
DASTContext.cpp4927 QualType PType = PI->getType(); in getObjCEncodingForBlock() local
4928 CharUnits sz = getObjCEncodingTypeSize(PType); in getObjCEncodingForBlock()
4942 QualType PType = PVDecl->getOriginalType(); in getObjCEncodingForBlock() local
4944 dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) { in getObjCEncodingForBlock()
4948 PType = PVDecl->getType(); in getObjCEncodingForBlock()
4949 } else if (PType->isFunctionType()) in getObjCEncodingForBlock()
4950 PType = PVDecl->getType(); in getObjCEncodingForBlock()
4952 getObjCEncodingForMethodParameter(Decl::OBJC_TQ_None, PType, in getObjCEncodingForBlock()
4955 getObjCEncodingForType(PType, S); in getObjCEncodingForBlock()
4957 ParmOffset += getObjCEncodingTypeSize(PType); in getObjCEncodingForBlock()
[all …]
/external/clang/lib/Sema/
DSemaChecking.cpp7730 static void diagnoseArrayStarInParamType(Sema &S, QualType PType, in diagnoseArrayStarInParamType() argument
7732 if (!PType->isVariablyModifiedType()) in diagnoseArrayStarInParamType()
7734 if (const auto *PointerTy = dyn_cast<PointerType>(PType)) { in diagnoseArrayStarInParamType()
7738 if (const auto *ReferenceTy = dyn_cast<ReferenceType>(PType)) { in diagnoseArrayStarInParamType()
7742 if (const auto *ParenTy = dyn_cast<ParenType>(PType)) { in diagnoseArrayStarInParamType()
7747 const ArrayType *AT = S.Context.getAsArrayType(PType); in diagnoseArrayStarInParamType()
7796 QualType PType = Param->getOriginalType(); in CheckParmsForFunctionDef() local
7799 diagnoseArrayStarInParamType(*this, PType, Param->getLocation()); in CheckParmsForFunctionDef()
/external/clang/lib/CodeGen/
DItaniumCXXABI.cpp505 llvm::Type *PType in EmitMemberDataPointerAddress() local
507 return Builder.CreateBitCast(Addr, PType); in EmitMemberDataPointerAddress()
DMicrosoftCXXABI.cpp2526 llvm::Type *PType = in EmitMemberDataPointerAddress() local
2561 return Builder.CreateBitCast(Addr, PType); in EmitMemberDataPointerAddress()