Home | History | Annotate | Download | only in Sema

Lines Matching refs:FormatIdx

7675     unsigned FormatIdx;
7677 if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) {
7681 if (FormatIdx < NumParams && // NumParams may be 0 (e.g. vfprintf)
7682 FD->getParamDecl(FormatIdx)->getType()->isObjCObjectPointerType())
7685 fmt, FormatIdx+1,
7686 HasVAListArg ? 0 : FormatIdx+2));
7689 if (Context.BuiltinInfo.isScanfLike(BuiltinID, FormatIdx,
7693 "scanf", FormatIdx+1,
7694 HasVAListArg ? 0 : FormatIdx+2));