Searched refs:HasVAListArg (Results 1 - 5 of 5) sorted by relevance
/external/clang/lib/Basic/ |
H A D | Builtins.cpp | 99 bool &HasVAListArg) { 104 HasVAListArg = (*Printf == 'P'); 118 bool &HasVAListArg) { 123 HasVAListArg = (*Scanf == 'S'); 98 isPrintfLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg) argument 117 isScanfLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg) argument
|
/external/clang/include/clang/Basic/ |
H A D | Builtins.h | 157 bool isPrintfLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg); 162 bool isScanfLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg);
|
/external/clang/lib/Sema/ |
H A D | SemaChecking.cpp | 686 FSI->HasVAListArg = Format->getFirstArg() == 0; 688 FSI->FirstDataArg = FSI->HasVAListArg ? 0 : Format->getFirstArg() - 1; 1934 bool HasVAListArg, unsigned format_idx, 1960 HasVAListArg, format_idx, firstDataArg, 1966 HasVAListArg, format_idx, firstDataArg, 2017 HasVAListArg, format_idx, 2023 // For vprintf* functions (i.e., HasVAListArg==true), we add a 2037 if (HasVAListArg) { 2075 HasVAListArg, format_idx, firstDataArg, 2084 HasVAListArg, format_id 1933 checkFormatStringExpr(Sema &S, const Expr *E, ArrayRef<const Expr *> Args, bool HasVAListArg, unsigned format_idx, unsigned firstDataArg, Sema::FormatStringType Type, Sema::VariadicCallType CallType, bool InFunctionCall, llvm::SmallBitVector &CheckedVarArgs) argument 2170 CheckFormatArguments(ArrayRef<const Expr *> Args, bool HasVAListArg, unsigned format_idx, unsigned firstDataArg, FormatStringType Type, VariadicCallType CallType, SourceLocation Loc, SourceRange Range, llvm::SmallBitVector &CheckedVarArgs) argument 2239 const bool HasVAListArg; member in class:__anon16258::CheckFormatHandler 3431 CheckFormatString(const StringLiteral *FExpr, const Expr *OrigFormatExpr, ArrayRef<const Expr *> Args, bool HasVAListArg, unsigned format_idx, unsigned firstDataArg, FormatStringType Type, bool inFunctionCall, VariadicCallType CallType, llvm::SmallBitVector &CheckedVarArgs) argument [all...] |
H A D | SemaDecl.cpp | 9719 bool HasVAListArg; local 9720 if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) { 9729 HasVAListArg ? 0 : FormatIdx+2)); 9733 HasVAListArg)) { 9737 HasVAListArg ? 0 : FormatIdx+2));
|
/external/clang/include/clang/Sema/ |
H A D | Sema.h | 7607 bool HasVAListArg; member in struct:clang::Sema::FormatStringInfo 7670 ArrayRef<const Expr *> Args, bool HasVAListArg, 7684 bool HasVAListArg, unsigned format_idx,
|
Completed in 490 milliseconds