Searched refs:VariadicCallType (Results 1 – 9 of 9) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaChecking.cpp | 3528 SourceRange Range, VariadicCallType CallType) { in checkCall() 3553 if (CallType != VariadicCallType::DoesNotApply && in checkCall() 3604 CallType == VariadicCallType::DoesNotApply) in checkCall() 3726 VariadicCallType CallType = Proto->isVariadic() in CheckConstructorCall() 3727 ? VariadicCallType::Constructor in CheckConstructorCall() 3728 : VariadicCallType::DoesNotApply; in CheckConstructorCall() 3745 VariadicCallType CallType = getVariadicCallType(FDecl, Proto, in CheckFunctionCall() 3837 VariadicCallType CallType; in CheckPointerCall() 3839 CallType = VariadicCallType::DoesNotApply; in CheckPointerCall() 3841 CallType = VariadicCallType::Block; in CheckPointerCall() [all …]
|
| H A D | SemaObjC.cpp | 1243 VariadicCallType CallType = Method->isVariadic() in CheckObjCMethodCall() 1244 ? VariadicCallType::Method in CheckObjCMethodCall() 1245 : VariadicCallType::DoesNotApply; in CheckObjCMethodCall()
|
| H A D | SemaExpr.cpp | 1006 void Sema::checkVariadicArgument(const Expr *E, VariadicCallType CT) { in checkVariadicArgument() 1051 ExprResult Sema::DefaultVariadicArgumentPromotion(Expr *E, VariadicCallType CT, in DefaultVariadicArgumentPromotion() 1056 (CT == VariadicCallType::Method || in DefaultVariadicArgumentPromotion() 5777 VariadicCallType Sema::getVariadicCallType(FunctionDecl *FDecl, in getVariadicCallType() 5782 return VariadicCallType::Constructor; in getVariadicCallType() 5784 return VariadicCallType::Block; in getVariadicCallType() 5788 return VariadicCallType::Method; in getVariadicCallType() 5790 return VariadicCallType::Method; in getVariadicCallType() 5791 return VariadicCallType::Function; in getVariadicCallType() 5793 return VariadicCallType::DoesNotApply; in getVariadicCallType() [all …]
|
| H A D | SemaExprCXX.cpp | 2448 VariadicCallType CallType = Proto->isVariadic() in BuildCXXNew() 2449 ? VariadicCallType::Function in BuildCXXNew() 2450 : VariadicCallType::DoesNotApply; in BuildCXXNew()
|
| H A D | SemaExprObjC.cpp | 1896 Args[i], VariadicCallType::Method, nullptr); in CheckMessageArgumentTypes()
|
| H A D | SemaOverload.cpp | 7369 Args[i], VariadicCallType::Method, nullptr); in SelectBestMethod() 15532 VariadicCallType::DoesNotApply); in CreateOverloadedBinOp() 16597 Args[i], VariadicCallType::Method, nullptr); in BuildCallToObjectOfClassType()
|
| H A D | SemaDeclCXX.cpp | 16375 VariadicCallType CallType = Proto->isVariadic() in CompleteConstructorCall() 16376 ? VariadicCallType::Constructor in CompleteConstructorCall() 16377 : VariadicCallType::DoesNotApply; in CompleteConstructorCall()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 509 enum class VariadicCallType { enum 2774 VariadicCallType CallType); 3004 VariadicCallType CallType, SourceLocation Loc, 3009 VariadicCallType CallType, SourceLocation Loc, 3016 FormatStringType Type, VariadicCallType CallType, 7947 VariadicCallType getVariadicCallType(FunctionDecl *FDecl, 7958 void checkVariadicArgument(const Expr *E, VariadicCallType CT); 7966 VariadicCallType CallType = VariadicCallType::DoesNotApply, 7971 ExprResult DefaultVariadicArgumentPromotion(Expr *E, VariadicCallType CT,
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Testing/Demangle/ |
| H A D | DemangleTestCases.inc | 5300 …:Sema::DefaultVariadicArgumentPromotion(clang::Expr*&, clang::Sema::VariadicCallType, clang::Funct… 5353 …lang::Expr**, unsigned int, llvm::SmallVector<clang::Expr*, 8u>&, clang::Sema::VariadicCallType)"},
|