Home
last modified time | relevance | path

Searched refs:HasVAListArg (Results 1 – 5 of 5) sorted by relevance

/external/clang/lib/Basic/
DBuiltins.cpp105 bool &HasVAListArg, const char *Fmt) const { in isLike() argument
116 HasVAListArg = (*Like == Fmt[1]); in isLike()
128 bool &HasVAListArg) { in isPrintfLike() argument
129 return isLike(ID, FormatIdx, HasVAListArg, "pP"); in isPrintfLike()
133 bool &HasVAListArg) { in isScanfLike() argument
134 return isLike(ID, FormatIdx, HasVAListArg, "sS"); in isScanfLike()
/external/clang/include/clang/Basic/
DBuiltins.h173 bool isPrintfLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg);
178 bool isScanfLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg);
213 bool isLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg,
/external/clang/lib/Sema/
DSemaChecking.cpp1877 FSI->HasVAListArg = Format->getFirstArg() == 0; in getFormatStringInfo()
1879 FSI->FirstDataArg = FSI->HasVAListArg ? 0 : Format->getFirstArg() - 1; in getFormatStringInfo()
3792 bool HasVAListArg, unsigned format_idx,
3806 bool HasVAListArg, unsigned format_idx, in checkFormatStringExpr() argument
3850 HasVAListArg, format_idx, firstDataArg, in checkFormatStringExpr()
3859 HasVAListArg, format_idx, firstDataArg, in checkFormatStringExpr()
3912 HasVAListArg, format_idx, in checkFormatStringExpr()
3933 if (HasVAListArg) { in checkFormatStringExpr()
3968 HasVAListArg, format_idx, firstDataArg, in checkFormatStringExpr()
3977 HasVAListArg, format_idx, in checkFormatStringExpr()
[all …]
DSemaDecl.cpp11833 bool HasVAListArg; in AddKnownFunctionAttributes() local
11834 if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) { in AddKnownFunctionAttributes()
11844 HasVAListArg ? 0 : FormatIdx+2, in AddKnownFunctionAttributes()
11849 HasVAListArg)) { in AddKnownFunctionAttributes()
11854 HasVAListArg ? 0 : FormatIdx+2, in AddKnownFunctionAttributes()
/external/clang/include/clang/Sema/
DSema.h9339 bool HasVAListArg; member
9434 bool HasVAListArg, unsigned format_idx,