Home
last modified time | relevance | path

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

/external/clang/lib/Basic/
DBuiltins.cpp101 bool &HasVAListArg, const char *Fmt) const { in isLike() argument
112 HasVAListArg = (*Like == Fmt[1]); in isLike()
124 bool &HasVAListArg) { in isPrintfLike() argument
125 return isLike(ID, FormatIdx, HasVAListArg, "pP"); in isPrintfLike()
129 bool &HasVAListArg) { in isScanfLike() argument
130 return isLike(ID, FormatIdx, HasVAListArg, "sS"); in isScanfLike()
/external/clang/include/clang/Basic/
DBuiltins.h159 bool isPrintfLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg);
164 bool isScanfLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg);
182 bool isLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg,
/external/clang/lib/Sema/
DSemaChecking.cpp682 FSI->HasVAListArg = Format->getFirstArg() == 0; in getFormatStringInfo()
684 FSI->FirstDataArg = FSI->HasVAListArg ? 0 : Format->getFirstArg() - 1; in getFormatStringInfo()
2015 bool HasVAListArg, unsigned format_idx, in checkFormatStringExpr() argument
2041 HasVAListArg, format_idx, firstDataArg, in checkFormatStringExpr()
2047 HasVAListArg, format_idx, firstDataArg, in checkFormatStringExpr()
2098 HasVAListArg, format_idx, in checkFormatStringExpr()
2118 if (HasVAListArg) { in checkFormatStringExpr()
2153 HasVAListArg, format_idx, firstDataArg, in checkFormatStringExpr()
2162 HasVAListArg, format_idx, in checkFormatStringExpr()
2181 S.CheckFormatString(StrE, E, Args, HasVAListArg, format_idx, firstDataArg, in checkFormatStringExpr()
[all …]
DSemaDecl.cpp10384 bool HasVAListArg; in AddKnownFunctionAttributes() local
10385 if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) { in AddKnownFunctionAttributes()
10395 HasVAListArg ? 0 : FormatIdx+2, in AddKnownFunctionAttributes()
10400 HasVAListArg)) { in AddKnownFunctionAttributes()
10405 HasVAListArg ? 0 : FormatIdx+2, in AddKnownFunctionAttributes()
/external/clang/include/clang/Sema/
DSema.h8195 bool HasVAListArg; member
8264 ArrayRef<const Expr *> Args, bool HasVAListArg,
8278 bool HasVAListArg, unsigned format_idx,