HomeSort by: relevance | last modified time | path
    Searched defs:PType (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTXLowerArgs.cpp 231 PointerType *PType = dyn_cast<PointerType>(Arg->getType());
233 assert(PType && "Expecting pointer type in handleByValParam");
235 Type *StructType = PType->getElementType();
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
GenericTaintChecker.cpp 736 QualType PType = ArgTy->getPointeeType();
737 if ((!PType.isNull() && !PType.isConstQualified()) ||
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BPFAbstractMemberAccess.cpp 428 const DIType *PType = stripQualifiers(cast<DIType>(ParentType));
437 if (const auto *PtrTy = dyn_cast<DIDerivedType>(PType)) {
444 const auto *PTy = dyn_cast<DICompositeType>(PType);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplateDeduction.cpp 5687 QualType PType = Context.getTemplateSpecializationType(X, PArgs);
5693 return isAtLeastAsSpecializedAs(*this, PType, AType, AArg, Info);
SemaChecking.cpp 14088 static void diagnoseArrayStarInParamType(Sema &S, QualType PType,
14090 if (!PType->isVariablyModifiedType())
14092 if (const auto *PointerTy = dyn_cast<PointerType>(PType)) {
14096 if (const auto *ReferenceTy = dyn_cast<ReferenceType>(PType)) {
14100 if (const auto *ParenTy = dyn_cast<ParenType>(PType)) {
14105 const ArrayType *AT = S.Context.getAsArrayType(PType);
14152 QualType PType = Param->getOriginalType();
14155 diagnoseArrayStarInParamType(*this, PType, Param->getLocation());
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
ItaniumCXXABI.cpp 867 llvm::Type *PType = CGF.ConvertTypeForMem(MPT->getPointeeType())
869 return Builder.CreateBitCast(Addr, PType);
MicrosoftCXXABI.cpp 3113 llvm::Type *PType =
3151 return Builder.CreateBitCast(Addr, PType);
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTContext.cpp 6908 QualType PType = PI->getType();
6909 CharUnits sz = getObjCEncodingTypeSize(PType);
6923 QualType PType = PVDecl->getOriginalType();
6925 dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) {
6929 PType = PVDecl->getType();
6930 } else if (PType->isFunctionType())
6931 PType = PVDecl->getType();
6933 getObjCEncodingForMethodParameter(Decl::OBJC_TQ_None, PType,
6936 getObjCEncodingForType(PType, S);
6938 ParmOffset += getObjCEncodingTypeSize(PType);
    [all...]

Completed in 57 milliseconds