Searched refs:HasVAListArg (Results 1 – 3 of 3) sorted by relevance
| /src/contrib/llvm-project/clang/lib/Basic/ |
| H A D | Builtins.cpp | 180 bool &HasVAListArg, const char *Fmt) const { in isLike() argument 191 HasVAListArg = (*Like == Fmt[1]); in isLike() 203 bool &HasVAListArg) { in isPrintfLike() argument 204 return isLike(ID, FormatIdx, HasVAListArg, "pP"); in isPrintfLike() 208 bool &HasVAListArg) { in isScanfLike() argument 209 return isLike(ID, FormatIdx, HasVAListArg, "sS"); in isScanfLike()
|
| /src/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | Builtins.h | 229 bool isPrintfLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg); 234 bool isScanfLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg); 292 bool isLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg,
|
| /src/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaDecl.cpp | 16453 bool HasVAListArg; in AddKnownFunctionAttributes() local 16454 if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) { in AddKnownFunctionAttributes() 16464 HasVAListArg ? 0 : FormatIdx+2, in AddKnownFunctionAttributes() 16469 HasVAListArg)) { in AddKnownFunctionAttributes() 16474 HasVAListArg ? 0 : FormatIdx+2, in AddKnownFunctionAttributes()
|