Home | History | Annotate | Download | only in Sema

Lines Matching refs:FirstArg

3122                                   int FormatIdx, int FirstArg,
3132 f->getFirstArg() == FirstArg) {
3141 return ::new (Context) FormatAttr(Range, Context, Format, FormatIdx, FirstArg,
3145 /// Handle __attribute__((format(type,idx,firstarg))) attributes based on
3247 llvm::APSInt FirstArg(32);
3249 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
3256 if (FirstArg != 0) {
3265 // strftime requires FirstArg to be 0 because it doesn't read from any
3268 if (FirstArg != 0) {
3274 } else if (FirstArg != 0 && FirstArg != NumArgs) {
3282 FirstArg.getZExtValue(),