Searched refs:HasVAListArg (Results 1 – 3 of 3) sorted by relevance
/openbsd/gnu/llvm/clang/lib/Basic/ |
H A D | Builtins.cpp | 177 bool &HasVAListArg, const char *Fmt) const { in isLike() argument 188 HasVAListArg = (*Like == Fmt[1]); in isLike() 200 bool &HasVAListArg) { in isPrintfLike() argument 201 return isLike(ID, FormatIdx, HasVAListArg, "pP"); in isPrintfLike() 205 bool &HasVAListArg) { in isScanfLike() argument 206 return isLike(ID, FormatIdx, HasVAListArg, "sS"); in isScanfLike()
|
/openbsd/gnu/llvm/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); 287 bool isLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg,
|
/openbsd/gnu/llvm/clang/lib/Sema/ |
H A D | SemaDecl.cpp | 16072 bool HasVAListArg; in AddKnownFunctionAttributes() local 16073 if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) { in AddKnownFunctionAttributes() 16083 HasVAListArg ? 0 : FormatIdx+2, in AddKnownFunctionAttributes() 16088 HasVAListArg)) { in AddKnownFunctionAttributes() 16093 HasVAListArg ? 0 : FormatIdx+2, in AddKnownFunctionAttributes()
|