Searched defs:HasVAListArg (Results 1 - 4 of 4) sorted by relevance

/external/clang/lib/Basic/
H A DBuiltins.cpp99 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/Sema/
H A DSema.h7607 bool HasVAListArg; member in struct:clang::Sema::FormatStringInfo
7670 ArrayRef<const Expr *> Args, bool HasVAListArg,
7684 bool HasVAListArg, unsigned format_idx,
/external/clang/lib/Sema/
H A DSemaChecking.cpp686 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 DSemaDecl.cpp9719 bool HasVAListArg; local
9720 if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) {
9729 HasVAListArg ? 0 : FormatIdx+2));
9733 HasVAListArg)) {
9737 HasVAListArg ? 0 : FormatIdx+2));

Completed in 109 milliseconds