Lines Matching refs:FSI
4339 FormatStringInfo *FSI) { in getFormatStringInfo() argument
4340 FSI->HasVAListArg = Format->getFirstArg() == 0; in getFormatStringInfo()
4341 FSI->FormatIdx = Format->getFormatIdx() - 1; in getFormatStringInfo()
4342 FSI->FirstDataArg = FSI->HasVAListArg ? 0 : Format->getFirstArg() - 1; in getFormatStringInfo()
4348 if(FSI->FormatIdx == 0) in getFormatStringInfo()
4350 --FSI->FormatIdx; in getFormatStringInfo()
4351 if (FSI->FirstDataArg != 0) in getFormatStringInfo()
4352 --FSI->FirstDataArg; in getFormatStringInfo()
4395 FormatStringInfo FSI; in GetFormatNSStringIdx() local
4397 getFormatStringInfo(Format, false, &FSI)) { in GetFormatNSStringIdx()
4398 Idx = FSI.FormatIdx; in GetFormatNSStringIdx()
7598 FormatStringInfo FSI; in CheckFormatArguments() local
7599 if (getFormatStringInfo(Format, IsCXXMember, &FSI)) in CheckFormatArguments()
7600 return CheckFormatArguments(Args, FSI.HasVAListArg, FSI.FormatIdx, in CheckFormatArguments()
7601 FSI.FirstDataArg, GetFormatStringType(Format), in CheckFormatArguments()