Lines Matching defs:ParamTy
1784 QualType ParamTy = [&]() {
1794 TheCall->setType(ParamTy);
1797 if (!ParamTy->isPointerType())
1799 if (ParamTy->isFunctionPointerType())
1801 if (ParamTy->isVoidPointerType())
1817 if (S.RequireCompleteType(TheCall->getBeginLoc(), ParamTy->getPointeeType(),
1821 assert(ParamTy->getPointeeType()->isObjectType() &&
1825 InitializedEntity::InitializeParameter(S.Context, ParamTy, false);
3118 QualType ParamTy) {
3121 if (!ParamTy->isPointerType() && !ParamTy->isReferenceType())
3127 if (ParamTy->isPointerType())
3131 ParamTy = ParamTy->getPointeeType();
3135 if (ArgTy.isNull() || ParamTy->isDependentType() ||
3136 ParamTy->isIncompleteType() || ArgTy->isIncompleteType() ||
3137 ParamTy->isUndeducedType() || ArgTy->isUndeducedType())
3140 CharUnits ParamAlign = Context.getTypeAlignInChars(ParamTy);
3227 QualType ParamTy = Proto->getParamType(ArgIdx);
3228 if (ParamTy->isSizelessVectorType())
3232 ArgTy, ParamTy);