Home | History | Annotate | Download | only in Sema

Lines Matching refs:FirstArg

2343 /// Handle __attribute__((format(type,idx,firstarg))) attributes based on
2445 llvm::APSInt FirstArg(32);
2447 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
2454 if (FirstArg != 0) {
2463 // strftime requires FirstArg to be 0 because it doesn't read from any
2466 if (FirstArg != 0) {
2472 } else if (FirstArg != 0 && FirstArg != NumArgs) {
2486 f->getFirstArg() == (int)FirstArg.getZExtValue()) {
2497 FirstArg.getZExtValue()));