Lines Matching refs:ExprTy

12039   QualType ExprTy = E->getType();  in checkFormatExpr()  local
12040 while (const TypeOfExprType *TET = dyn_cast<TypeOfExprType>(ExprTy)) { in checkFormatExpr()
12041 ExprTy = TET->getUnderlyingExpr()->getType(); in checkFormatExpr()
12047 if (ExprTy->canDecayToPointerType()) in checkFormatExpr()
12048 ExprTy = S.Context.getDecayedType(ExprTy); in checkFormatExpr()
12067 ArgType::MatchKind Match = AT.matchesType(S.Context, ExprTy); in checkFormatExpr()
12082 ExprTy = E->getType(); in checkFormatExpr()
12090 ImplicitMatch = AT.matchesType(S.Context, ExprTy); in checkFormatExpr()
12101 if (ExprTy == S.Context.IntTy && in checkFormatExpr()
12104 ExprTy = S.Context.CharTy; in checkFormatExpr()
12130 QualType IntendedTy = ExprTy; in checkFormatExpr()
12131 if (auto EnumTy = ExprTy->getAs<EnumType>()) { in checkFormatExpr()
12134 ExprTy = IntendedTy; in checkFormatExpr()
12148 if (ExprTy->isIntegralOrUnscopedEnumerationType() && in checkFormatExpr()
12149 !ExprTy->isCharType()) { in checkFormatExpr()
12206 if (IntendedTy == ExprTy && !ShouldNotPrintDirectly && !IsScopedEnum) { in checkFormatExpr()
12280 if (const auto *TypedefTy = ExprTy->getAs<TypedefType>()) in checkFormatExpr()
12297 << AT.getRepresentativeTypeName(S.Context) << ExprTy << IsEnum in checkFormatExpr()
12309 switch (S.isValidVarArgType(ExprTy)) { in checkFormatExpr()
12330 S.PDiag(Diag) << AT.getRepresentativeTypeName(S.Context) << ExprTy in checkFormatExpr()
12342 << S.getLangOpts().CPlusPlus11 << ExprTy << CallType in checkFormatExpr()
12353 else if (ExprTy->isObjCObjectType()) in checkFormatExpr()
12356 << S.getLangOpts().CPlusPlus11 << ExprTy << CallType in checkFormatExpr()
12364 << isa<InitListExpr>(E) << ExprTy << CallType in checkFormatExpr()
12377 << AT.getRepresentativeTypeName(S.Context) << ExprTy << false in checkFormatExpr()