Searched refs:HasVAListArg (Results 1 - 5 of 5) sorted by relevance
/external/clang/lib/Basic/ |
H A D | Builtins.cpp | 86 bool &HasVAListArg) { 91 HasVAListArg = (*Printf == 'P'); 105 bool &HasVAListArg) { 110 HasVAListArg = (*Scanf == 'S'); 85 isPrintfLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg) argument 104 isScanfLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg) argument
|
/external/clang/include/clang/Basic/ |
H A D | Builtins.h | 143 bool isPrintfLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg); 148 bool isScanfLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg);
|
/external/clang/lib/Sema/ |
H A D | SemaChecking.cpp | 472 FSI->HasVAListArg = Format->getFirstArg() == 0; 474 FSI->FirstDataArg = FSI->HasVAListArg ? 0 : Format->getFirstArg() - 1; 1622 unsigned NumArgs, bool HasVAListArg, 1648 HasVAListArg, format_idx, firstDataArg, 1654 HasVAListArg, format_idx, firstDataArg, 1705 HasVAListArg, format_idx, 1711 // For vprintf* functions (i.e., HasVAListArg==true), we add a 1725 if (HasVAListArg) { 1763 HasVAListArg, format_idx, firstDataArg, 1771 HasVAListArg, format_id 1621 checkFormatStringExpr(const Expr *E, Expr **Args, unsigned NumArgs, bool HasVAListArg, unsigned format_idx, unsigned firstDataArg, FormatStringType Type, VariadicCallType CallType, bool inFunctionCall) argument 1843 CheckFormatArguments(Expr **Args, unsigned NumArgs, bool HasVAListArg, unsigned format_idx, unsigned firstDataArg, FormatStringType Type, VariadicCallType CallType, SourceLocation Loc, SourceRange Range) argument 1910 const bool HasVAListArg; member in class:__anon173::CheckFormatHandler 2985 CheckFormatString(const StringLiteral *FExpr, const Expr *OrigFormatExpr, Expr **Args, unsigned NumArgs, bool HasVAListArg, unsigned format_idx, unsigned firstDataArg, FormatStringType Type, bool inFunctionCall, VariadicCallType CallType) argument [all...] |
H A D | SemaDecl.cpp | 8030 bool HasVAListArg; local 8031 if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) { 8040 HasVAListArg ? 0 : FormatIdx+2)); 8044 HasVAListArg)) { 8048 HasVAListArg ? 0 : FormatIdx+2));
|
/external/clang/include/clang/Sema/ |
H A D | Sema.h | 7072 bool HasVAListArg; member in struct:clang::Sema::FormatStringInfo 7138 bool HasVAListArg, 7146 Expr **Args, unsigned NumArgs, bool HasVAListArg, 7156 bool HasVAListArg, unsigned format_idx,
|
Completed in 172 milliseconds