Home | History | Annotate | Download | only in Sema

Lines Matching refs:FSI

685                                FormatStringInfo *FSI) {
686 FSI->HasVAListArg = Format->getFirstArg() == 0;
687 FSI->FormatIdx = Format->getFormatIdx() - 1;
688 FSI->FirstDataArg = FSI->HasVAListArg ? 0 : Format->getFirstArg() - 1;
694 if(FSI->FormatIdx == 0)
696 --FSI->FormatIdx;
697 if (FSI->FirstDataArg != 0)
698 --FSI->FirstDataArg;
2162 FormatStringInfo FSI;
2163 if (getFormatStringInfo(Format, IsCXXMember, &FSI))
2164 return CheckFormatArguments(Args, FSI.HasVAListArg, FSI.FormatIdx,
2165 FSI.FirstDataArg, GetFormatStringType(Format),