Home
last modified time | relevance | path

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

/freebsd-10-stable/contrib/llvm/tools/clang/lib/Basic/
DBuiltins.cpp102 bool &HasVAListArg) { in isPrintfLike() argument
107 HasVAListArg = (*Printf == 'P'); in isPrintfLike()
121 bool &HasVAListArg) { in isScanfLike() argument
126 HasVAListArg = (*Scanf == 'S'); in isScanfLike()
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/
DBuiltins.h159 bool isPrintfLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg);
164 bool isScanfLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg);
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/
DSemaChecking.cpp695 FSI->HasVAListArg = Format->getFirstArg() == 0; in getFormatStringInfo()
697 FSI->FirstDataArg = FSI->HasVAListArg ? 0 : Format->getFirstArg() - 1; in getFormatStringInfo()
1977 bool HasVAListArg, unsigned format_idx, in checkFormatStringExpr() argument
2003 HasVAListArg, format_idx, firstDataArg, in checkFormatStringExpr()
2009 HasVAListArg, format_idx, firstDataArg, in checkFormatStringExpr()
2060 HasVAListArg, format_idx, in checkFormatStringExpr()
2080 if (HasVAListArg) { in checkFormatStringExpr()
2118 HasVAListArg, format_idx, firstDataArg, in checkFormatStringExpr()
2127 HasVAListArg, format_idx, in checkFormatStringExpr()
2146 HasVAListArg, format_idx, in checkFormatStringExpr()
[all …]
DSemaDecl.cpp10013 bool HasVAListArg; in AddKnownFunctionAttributes() local
10014 if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) { in AddKnownFunctionAttributes()
10024 HasVAListArg ? 0 : FormatIdx+2)); in AddKnownFunctionAttributes()
10028 HasVAListArg)) { in AddKnownFunctionAttributes()
10033 HasVAListArg ? 0 : FormatIdx+2)); in AddKnownFunctionAttributes()
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/
DSema.h7818 bool HasVAListArg; member
7884 ArrayRef<const Expr *> Args, bool HasVAListArg,
7898 bool HasVAListArg, unsigned format_idx,