Lines Matching defs:FuncDecl
638 void Environment::pushCallInternal(const FunctionDecl *FuncDecl,
643 assert(FuncDecl->getDefinition() != nullptr);
644 FuncDecl = FuncDecl->getDefinition();
646 CallStack.push_back(FuncDecl);
648 initFieldsGlobalsAndFuncs(getReferencedDecls(*FuncDecl));
650 const auto *ParamIt = FuncDecl->param_begin();
655 assert(ParamIt != FuncDecl->param_end());
661 buildResultObjectMap(DACtx, FuncDecl, getThisPointeeStorageLocation(),
1204 DataflowAnalysisContext *DACtx, const FunctionDecl *FuncDecl,
1207 assert(FuncDecl->doesThisDeclarationHaveABody());
1210 DACtx, FuncDecl->getBody(), ThisPointeeLoc, LocForRecordReturnVal);
1213 if (const auto *Ctor = dyn_cast<CXXConstructorDecl>(FuncDecl))