Lines Matching defs:Arg1

1238     const T1 &Arg1;
1241 BoundTypeDiagnoser1(unsigned DiagID, const T1 &Arg1)
1242 : TypeDiagnoser(DiagID == 0), DiagID(DiagID), Arg1(Arg1) { }
1245 S.Diag(Loc, DiagID) << getPrintable(Arg1) << T;
1254 const T1 &Arg1;
1258 BoundTypeDiagnoser2(unsigned DiagID, const T1 &Arg1,
1260 : TypeDiagnoser(DiagID == 0), DiagID(DiagID), Arg1(Arg1),
1265 S.Diag(Loc, DiagID) << getPrintable(Arg1) << getPrintable(Arg2) << T;
1274 const T1 &Arg1;
1279 BoundTypeDiagnoser3(unsigned DiagID, const T1 &Arg1,
1281 : TypeDiagnoser(DiagID == 0), DiagID(DiagID), Arg1(Arg1),
1287 << getPrintable(Arg1) << getPrintable(Arg2) << getPrintable(Arg3) << T;
1304 unsigned DiagID, const T1 &Arg1) {
1305 BoundTypeDiagnoser1<T1> Diagnoser(DiagID, Arg1);
1311 unsigned DiagID, const T1 &Arg1, const T2 &Arg2) {
1312 BoundTypeDiagnoser2<T1, T2> Diagnoser(DiagID, Arg1, Arg2);
1318 unsigned DiagID, const T1 &Arg1, const T2 &Arg2,
1320 BoundTypeDiagnoser3<T1, T2, T3> Diagnoser(DiagID, Arg1, Arg2,
1329 bool RequireCompleteExprType(Expr *E, unsigned DiagID, const T1 &Arg1) {
1330 BoundTypeDiagnoser1<T1> Diagnoser(DiagID, Arg1);
1335 bool RequireCompleteExprType(Expr *E, unsigned DiagID, const T1 &Arg1,
1337 BoundTypeDiagnoser2<T1, T2> Diagnoser(DiagID, Arg1, Arg2);
1342 bool RequireCompleteExprType(Expr *E, unsigned DiagID, const T1 &Arg1,
1344 BoundTypeDiagnoser3<T1, T2, T3> Diagnoser(DiagID, Arg1, Arg2,
1355 unsigned DiagID, const T1 &Arg1) {
1356 BoundTypeDiagnoser1<T1> Diagnoser(DiagID, Arg1);
1362 unsigned DiagID, const T1 &Arg1, const T2 &Arg2) {
1363 BoundTypeDiagnoser2<T1, T2> Diagnoser(DiagID, Arg1, Arg2);
1369 unsigned DiagID, const T1 &Arg1, const T2 &Arg2,
1371 BoundTypeDiagnoser3<T1, T2, T3> Diagnoser(DiagID, Arg1, Arg2,
5130 const T1 &Arg1) {
5131 BoundTypeDiagnoser1<T1> Diagnoser(DiagID, Arg1);
5138 const T1 &Arg1, const T2 &Arg2) {
5139 BoundTypeDiagnoser2<T1, T2> Diagnoser(DiagID, Arg1, Arg2);
5146 const T1 &Arg1, const T2 &Arg2, const T3 &Arg3) {
5147 BoundTypeDiagnoser3<T1, T2, T3> Diagnoser(DiagID, Arg1, Arg2, Arg3);