Home | History | Annotate | Download | only in Sema

Lines Matching refs:FSI

681                                FormatStringInfo *FSI) {
682 FSI->HasVAListArg = Format->getFirstArg() == 0;
683 FSI->FormatIdx = Format->getFormatIdx() - 1;
684 FSI->FirstDataArg = FSI->HasVAListArg ? 0 : Format->getFirstArg() - 1;
690 if(FSI->FormatIdx == 0)
692 --FSI->FormatIdx;
693 if (FSI->FirstDataArg != 0)
694 --FSI->FirstDataArg;
2214 FormatStringInfo FSI;
2215 if (getFormatStringInfo(Format, IsCXXMember, &FSI))
2216 return CheckFormatArguments(Args, FSI.HasVAListArg, FSI.FormatIdx,
2217 FSI.FirstDataArg, GetFormatStringType(Format),