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

/external/clang/lib/Basic/
H A DBuiltins.cpp105 bool &HasVAListArg, const char *Fmt) const {
116 HasVAListArg = (*Like == Fmt[1]);
128 bool &HasVAListArg) {
129 return isLike(ID, FormatIdx, HasVAListArg, "pP");
133 bool &HasVAListArg) {
134 return isLike(ID, FormatIdx, HasVAListArg, "sS");
104 isLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg, const char *Fmt) const argument
127 isPrintfLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg) argument
132 isScanfLike(unsigned ID, unsigned &FormatIdx, bool &HasVAListArg) argument
/external/clang/include/clang/Sema/
H A DSema.h9339 bool HasVAListArg; member in struct:clang::Sema::FormatStringInfo
9434 bool HasVAListArg, unsigned format_idx,
/external/clang/lib/Sema/
H A DSemaChecking.cpp1877 FSI->HasVAListArg = Format->getFirstArg() == 0;
1879 FSI->FirstDataArg = FSI->HasVAListArg ? 0 : Format->getFirstArg() - 1;
3792 bool HasVAListArg, unsigned format_idx,
3806 bool HasVAListArg, unsigned format_idx,
3850 HasVAListArg, format_idx, firstDataArg,
3859 HasVAListArg, format_idx, firstDataArg,
3912 HasVAListArg, format_idx,
3919 // For vprintf* functions (i.e., HasVAListArg==true), we add a
3933 if (HasVAListArg) {
3968 HasVAListArg, format_id
3805 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, UncoveredArgHandler &UncoveredArg) argument
4041 CheckFormatArguments(ArrayRef<const Expr *> Args, bool HasVAListArg, unsigned format_idx, unsigned firstDataArg, FormatStringType Type, VariadicCallType CallType, SourceLocation Loc, SourceRange Range, llvm::SmallBitVector &CheckedVarArgs) argument
4133 const bool HasVAListArg; member in class:__anon1476::CheckFormatHandler
5542 CheckFormatString(Sema &S, const StringLiteral *FExpr, const Expr *OrigFormatExpr, ArrayRef<const Expr *> Args, bool HasVAListArg, unsigned format_idx, unsigned firstDataArg, Sema::FormatStringType Type, bool inFunctionCall, Sema::VariadicCallType CallType, llvm::SmallBitVector &CheckedVarArgs, UncoveredArgHandler &UncoveredArg) argument
[all...]
H A DSemaDecl.cpp11833 bool HasVAListArg; local
11834 if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) {
11844 HasVAListArg ? 0 : FormatIdx+2,
11849 HasVAListArg)) {
11854 HasVAListArg ? 0 : FormatIdx+2,

Completed in 1061 milliseconds