Searched refs:HasVAListArg (Results 1 – 5 of 5) sorted by relevance
/external/clang/lib/Basic/ |
D | Builtins.cpp | 105 bool &HasVAListArg, const char *Fmt) const { in isLike() argument 116 HasVAListArg = (*Like == Fmt[1]); in isLike() 128 bool &HasVAListArg) { in isPrintfLike() argument 129 return isLike(ID, FormatIdx, HasVAListArg, "pP"); in isPrintfLike() 133 bool &HasVAListArg) { in isScanfLike() argument 134 return isLike(ID, FormatIdx, HasVAListArg, "sS"); in isScanfLike()
|
/external/clang/include/clang/Basic/ |
D | Builtins.h | 173 bool isPrintfLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg); 178 bool isScanfLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg); 213 bool isLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg,
|
/external/clang/lib/Sema/ |
D | SemaChecking.cpp | 1877 FSI->HasVAListArg = Format->getFirstArg() == 0; in getFormatStringInfo() 1879 FSI->FirstDataArg = FSI->HasVAListArg ? 0 : Format->getFirstArg() - 1; in getFormatStringInfo() 3792 bool HasVAListArg, unsigned format_idx, 3806 bool HasVAListArg, unsigned format_idx, in checkFormatStringExpr() argument 3850 HasVAListArg, format_idx, firstDataArg, in checkFormatStringExpr() 3859 HasVAListArg, format_idx, firstDataArg, in checkFormatStringExpr() 3912 HasVAListArg, format_idx, in checkFormatStringExpr() 3933 if (HasVAListArg) { in checkFormatStringExpr() 3968 HasVAListArg, format_idx, firstDataArg, in checkFormatStringExpr() 3977 HasVAListArg, format_idx, in checkFormatStringExpr() [all …]
|
D | SemaDecl.cpp | 11833 bool HasVAListArg; in AddKnownFunctionAttributes() local 11834 if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) { in AddKnownFunctionAttributes() 11844 HasVAListArg ? 0 : FormatIdx+2, in AddKnownFunctionAttributes() 11849 HasVAListArg)) { in AddKnownFunctionAttributes() 11854 HasVAListArg ? 0 : FormatIdx+2, in AddKnownFunctionAttributes()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 9339 bool HasVAListArg; member 9434 bool HasVAListArg, unsigned format_idx,
|