Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Basic/
H A DBuiltins.cpp129 bool &HasVAListArg, const char *Fmt) const { in isLike() argument
140 HasVAListArg = (*Like == Fmt[1]); in isLike()
152 bool &HasVAListArg) { in isPrintfLike() argument
153 return isLike(ID, FormatIdx, HasVAListArg, "pP"); in isPrintfLike()
157 bool &HasVAListArg) { in isScanfLike() argument
158 return isLike(ID, FormatIdx, HasVAListArg, "sS"); in isScanfLike()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltins.h192 bool isPrintfLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg);
197 bool isScanfLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg);
244 bool isLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg,
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp4585 FSI->HasVAListArg = Format->getFirstArg() == 0; in getFormatStringInfo()
7541 bool HasVAListArg, unsigned format_idx, in checkFormatStringExpr() argument
7658 HasVAListArg, format_idx, in checkFormatStringExpr()
7679 if (HasVAListArg) { in checkFormatStringExpr()
7728 HasVAListArg, format_idx, in checkFormatStringExpr()
7973 const bool HasVAListArg; member in __anonfebdc2651311::CheckFormatHandler
8231 if (!HasVAListArg) { in DoneProcessing()
8512 if (!HasVAListArg) { in HandleAmount()
8907 if (HasVAListArg) in HandlePrintfSpecifier()
9453 if (HasVAListArg) in HandleScanfSpecifier()
[all …]
H A DSemaDecl.cpp15055 bool HasVAListArg; in AddKnownFunctionAttributes() local
15056 if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) { in AddKnownFunctionAttributes()
15066 HasVAListArg ? 0 : FormatIdx+2, in AddKnownFunctionAttributes()
15071 HasVAListArg)) { in AddKnownFunctionAttributes()
15076 HasVAListArg ? 0 : FormatIdx+2, in AddKnownFunctionAttributes()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h12507 bool HasVAListArg; member
12667 bool HasVAListArg, unsigned format_idx,