Home | History | Annotate | Download | only in Sema

Lines Matching refs:ignored

190 #pragma GCC diagnostic ignored "-Wformat-nonliteral"
353 // Ignored flags
354 printf("% +f", 1.23); // expected-warning{{flag ' ' is ignored when flag '+' is present}}
355 printf("%+ f", 1.23); // expected-warning{{flag ' ' is ignored when flag '+' is present}}
356 printf("%0-f", 1.23); // expected-warning{{flag '0' is ignored when flag '-' is present}}
357 printf("%-0f", 1.23); // expected-warning{{flag '0' is ignored when flag '-' is present}}
411 #pragma GCC diagnostic ignored "-Wformat-security"
443 #pragma clang diagnostic ignored "-Wformat-invalid-specifier"
513 printf(kFormat16, 5); // expected-warning{{flag '0' is ignored when flag '-' is present}}
514 printf("%-0d", 5); // expected-warning{{flag '0' is ignored when flag '-' is present}}