Lines Matching refs:ExprTy
8778 QualType ExprTy = E->getType(); in checkFormatExpr() local
8779 while (const TypeOfExprType *TET = dyn_cast<TypeOfExprType>(ExprTy)) { in checkFormatExpr()
8780 ExprTy = TET->getUnderlyingExpr()->getType(); in checkFormatExpr()
8799 analyze_printf::ArgType::MatchKind Match = AT.matchesType(S.Context, ExprTy); in checkFormatExpr()
8811 ExprTy = E->getType(); in checkFormatExpr()
8820 AT.matchesType(S.Context, ExprTy); in checkFormatExpr()
8834 if (ExprTy == S.Context.IntTy && in checkFormatExpr()
8837 ExprTy = S.Context.CharTy; in checkFormatExpr()
8842 if (auto EnumTy = ExprTy->getAs<EnumType>()) { in checkFormatExpr()
8843 ExprTy = EnumTy->getDecl()->getIntegerType(); in checkFormatExpr()
8850 QualType IntendedTy = ExprTy; in checkFormatExpr()
8853 if (ExprTy->isIntegralOrUnscopedEnumerationType() && in checkFormatExpr()
8854 !ExprTy->isCharType()) { in checkFormatExpr()
8909 if (IntendedTy == ExprTy && !ShouldNotPrintDirectly) { in checkFormatExpr()
8975 if (const TypedefType *TypedefTy = dyn_cast<TypedefType>(ExprTy)) in checkFormatExpr()
8992 << AT.getRepresentativeTypeName(S.Context) << ExprTy << IsEnum in checkFormatExpr()
9003 switch (S.isValidVarArgType(ExprTy)) { in checkFormatExpr()
9021 S.PDiag(Diag) << AT.getRepresentativeTypeName(S.Context) << ExprTy in checkFormatExpr()
9029 << S.getLangOpts().CPlusPlus11 << ExprTy in checkFormatExpr()
9038 if (ExprTy->isObjCObjectType()) in checkFormatExpr()
9041 << S.getLangOpts().CPlusPlus11 << ExprTy << CallType in checkFormatExpr()
9049 << isa<InitListExpr>(E) << ExprTy << CallType in checkFormatExpr()