Home | History | Annotate | Download | only in Sema

Lines Matching refs:ignored

194 #pragma GCC diagnostic ignored "-Wformat-nonliteral"
357 // Ignored flags
358 printf("% +f", 1.23); // expected-warning{{flag ' ' is ignored when flag '+' is present}}
359 printf("%+ f", 1.23); // expected-warning{{flag ' ' is ignored when flag '+' is present}}
360 printf("%0-f", 1.23); // expected-warning{{flag '0' is ignored when flag '-' is present}}
361 printf("%-0f", 1.23); // expected-warning{{flag '0' is ignored when flag '-' is present}}
415 #pragma GCC diagnostic ignored "-Wformat-security"
447 #pragma clang diagnostic ignored "-Wformat-invalid-specifier"
517 printf(kFormat16, 5); // expected-warning{{flag '0' is ignored when flag '-' is present}}
518 printf("%-0d", 5); // expected-warning{{flag '0' is ignored when flag '-' is present}}
611 #pragma GCC diagnostic ignored "-Wformat-nonliteral"