Searched refs:HasVAListArg (Results 1 – 5 of 5) sorted by relevance
/external/clang/lib/Basic/ |
D | Builtins.cpp | 93 bool &HasVAListArg, const char *Fmt) const { in isLike() argument 104 HasVAListArg = (*Like == Fmt[1]); in isLike() 116 bool &HasVAListArg) { in isPrintfLike() argument 117 return isLike(ID, FormatIdx, HasVAListArg, "pP"); in isPrintfLike() 121 bool &HasVAListArg) { in isScanfLike() argument 122 return isLike(ID, FormatIdx, HasVAListArg, "sS"); in isScanfLike()
|
/external/clang/include/clang/Basic/ |
D | Builtins.h | 167 bool isPrintfLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg); 172 bool isScanfLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg); 203 bool isLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg,
|
/external/clang/lib/Sema/ |
D | SemaChecking.cpp | 1163 FSI->HasVAListArg = Format->getFirstArg() == 0; in getFormatStringInfo() 1165 FSI->FirstDataArg = FSI->HasVAListArg ? 0 : Format->getFirstArg() - 1; in getFormatStringInfo() 3020 bool HasVAListArg, unsigned format_idx, in checkFormatStringExpr() argument 3046 HasVAListArg, format_idx, firstDataArg, in checkFormatStringExpr() 3052 HasVAListArg, format_idx, firstDataArg, in checkFormatStringExpr() 3103 HasVAListArg, format_idx, in checkFormatStringExpr() 3123 if (HasVAListArg) { in checkFormatStringExpr() 3158 HasVAListArg, format_idx, firstDataArg, in checkFormatStringExpr() 3167 HasVAListArg, format_idx, in checkFormatStringExpr() 3186 S.CheckFormatString(StrE, E, Args, HasVAListArg, format_idx, firstDataArg, in checkFormatStringExpr() [all …]
|
D | SemaDecl.cpp | 11425 bool HasVAListArg; in AddKnownFunctionAttributes() local 11426 if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) { in AddKnownFunctionAttributes() 11436 HasVAListArg ? 0 : FormatIdx+2, in AddKnownFunctionAttributes() 11441 HasVAListArg)) { in AddKnownFunctionAttributes() 11446 HasVAListArg ? 0 : FormatIdx+2, in AddKnownFunctionAttributes()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 8957 bool HasVAListArg; member 9041 ArrayRef<const Expr *> Args, bool HasVAListArg, 9059 bool HasVAListArg, unsigned format_idx,
|