Lines Matching defs:FuncDecl
640 void Environment::pushCallInternal(const FunctionDecl *FuncDecl,
645 assert(FuncDecl->getDefinition() != nullptr);
646 FuncDecl = FuncDecl->getDefinition();
648 CallStack.push_back(FuncDecl);
650 initFieldsGlobalsAndFuncs(getReferencedDecls(*FuncDecl));
652 const auto *ParamIt = FuncDecl->param_begin();
657 assert(ParamIt != FuncDecl->param_end());
663 buildResultObjectMap(DACtx, FuncDecl, getThisPointeeStorageLocation(),
1206 DataflowAnalysisContext *DACtx, const FunctionDecl *FuncDecl,
1209 assert(FuncDecl->doesThisDeclarationHaveABody());
1212 DACtx, FuncDecl->getBody(), ThisPointeeLoc, LocForRecordReturnVal);
1215 if (const auto *Ctor = dyn_cast<CXXConstructorDecl>(FuncDecl))