Searched refs:ParamDecl (Results 1 – 11 of 11) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | CallAndMessageChecker.cpp | 114 const ParmVarDecl *ParamDecl) const; 130 const ParmVarDecl *ParamDecl, const char *BD, 197 if(!ParamDecl) in uninitRefOrPointer() 206 if (ParamDecl->getType()->isPointerType()) { in uninitRefOrPointer() 209 } else if (ParamDecl->getType()->isReferenceType()) { in uninitRefOrPointer() 215 if(!ParamDecl->getType()->getPointeeType().isConstQualified()) in uninitRefOrPointer() 286 const ParmVarDecl *ParamDecl in PreVisitProcessArg() 290 if (uninitRefOrPointer(C, V, ArgRange, ArgEx, BT, ParamDecl, BD, in PreVisitProcessArg() 529 const ParmVarDecl *ParamDecl = nullptr; in checkArgInitializedness() local 531 ParamDecl = FD->getParamDecl(i); in checkArgInitializedness() [all …]
|
| H A D | NullabilityChecker.cpp | 408 for (const auto *ParamDecl : Params) { in checkParamsForPreconditionViolation() local 409 if (ParamDecl->isParameterPack()) in checkParamsForPreconditionViolation() 412 SVal LV = State->getLValue(ParamDecl, LocCtxt); in checkParamsForPreconditionViolation() 414 ParamDecl->getType())) { in checkParamsForPreconditionViolation()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
| H A D | DataflowEnvironment.cpp | 393 for (const auto *ParamDecl : FuncDecl->parameters()) { in initialize() local 394 assert(ParamDecl != nullptr); in initialize() 395 setStorageLocation(*ParamDecl, createObject(*ParamDecl, nullptr)); in initialize()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseTemplate.cpp | 1026 Declarator ParamDecl(DS, ParsedAttributesView::none(), in ParseNonTypeTemplateParameter() local 1028 ParseDeclarator(ParamDecl); in ParseNonTypeTemplateParameter() 1037 DiagnoseMisplacedEllipsisInDeclarator(EllipsisLoc, ParamDecl); in ParseNonTypeTemplateParameter() 1072 return Actions.ActOnNonTypeTemplateParameter(getCurScope(), ParamDecl, in ParseNonTypeTemplateParameter()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | BugReporterVisitors.cpp | 3403 for (const auto ParamDecl : parms) { in VisitNode() local 3412 assert(ParamDecl && "Formal parameter has no decl?"); in VisitNode() 3413 QualType T = ParamDecl->getType(); in VisitNode()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaExprObjC.cpp | 352 ParmVarDecl *ParamDecl = Method->parameters()[0]; in BuildObjCNumericLiteral() local 354 ParamDecl); in BuildObjCNumericLiteral() 745 ParmVarDecl *ParamDecl = BoxingMethod->parameters()[0]; in BuildObjCBoxedExpr() local 747 ParamDecl); in BuildObjCBoxedExpr()
|
| H A D | SemaTemplateDeduction.cpp | 515 TemplateDecl *ParamDecl = Param.getAsTemplateDecl(); in DeduceTemplateArguments() local 516 if (!ParamDecl) { in DeduceTemplateArguments() 523 = dyn_cast<TemplateTemplateParmDecl>(ParamDecl)) { in DeduceTemplateArguments()
|
| H A D | SemaDeclCXX.cpp | 4185 auto *ParamDecl = cast<NamedDecl>(Param.Param); in ActOnStartTrailingRequiresClause() local 4186 if (ParamDecl->getDeclName()) in ActOnStartTrailingRequiresClause() 4187 PushOnScopeChains(ParamDecl, S, /*AddToContext=*/false); in ActOnStartTrailingRequiresClause()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGExpr.cpp | 883 auto *ParamDecl = dyn_cast<ParmVarDecl>(ArrayDeclRef->getDecl()); in LoadPassedObjectSize() local 884 if (!ParamDecl) in LoadPassedObjectSize() 887 auto *POSAttr = ParamDecl->getAttr<PassObjectSizeAttr>(); in LoadPassedObjectSize() 897 auto PassedSizeIt = SizeArguments.find(ParamDecl); in LoadPassedObjectSize()
|
| H A D | CGObjCMac.cpp | 7306 for (const auto *ParamDecl : method->parameters()) { in EmitVTableMessageSend() local 7307 if (ParamDecl->isDestroyedInCallee()) { in EmitVTableMessageSend()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | ASTContext.h | 1659 TemplateArgument getInjectedTemplateArg(NamedDecl *ParamDecl);
|