Home | History | Annotate | Download | only in Sema

Lines Matching refs:ArgTy

2310           QualType ArgTy = Param->getType();
2311 assert(!ArgTy.isNull() && "Couldn't parse type?");
2314 assert((ArgTy == Context.getAdjustedParameterType(ArgTy)) &&
2320 if (ArgTy->isVoidType()) {
2326 ArgTy = Context.IntTy;
2327 Param->setType(ArgTy);
2332 ArgTy = Context.IntTy;
2333 Param->setType(ArgTy);
2336 if (ArgTy.hasQualifiers())
2342 } else if (ArgTy->isHalfType()) {
2350 if (ArgTy->isPromotableIntegerType()) {
2351 ArgTy = Context.getPromotedIntegerType(ArgTy);
2353 } else if (const BuiltinType* BTy = ArgTy->getAs<BuiltinType>()) {
2355 ArgTy = Context.DoubleTy;
2367 ArgTys.push_back(ArgTy);