Home
last modified time | relevance | path

Searched refs:func_decl (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DNameSearchContext.cpp78 clang::FunctionDecl *func_decl = FunctionDecl::Create( in AddFunDecl() local
106 func_decl->setParams(ArrayRef<ParmVarDecl *>(parm_var_decls)); in AddFunDecl()
125 m_decls.push_back(func_decl); in AddFunDecl()
127 return func_decl; in AddFunDecl()
/freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/
H A DBlock.cpp348 const Declaration &func_decl = func_type->GetDeclaration(); in AddRange() local
349 if (func_decl.GetLine()) { in AddRange()
355 func_decl.GetFile().GetPath().c_str(), func_decl.GetLine(), in AddRange()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp1459 clang::FunctionDecl *func_decl, in CreateFunctionTemplateDecl() argument
1473 func_tmpl_decl->init(func_decl); in CreateFunctionTemplateDecl()
2184 FunctionDecl *func_decl = nullptr; in CreateFunctionDeclaration() local
2195 func_decl->setDeclContext(decl_ctx); in CreateFunctionDeclaration()
2198 func_decl->setStorageClass(storage); in CreateFunctionDeclaration()
2205 decl_ctx->addDecl(func_decl); in CreateFunctionDeclaration()
2207 VerifyDecl(func_decl); in CreateFunctionDeclaration()
2209 return func_decl; in CreateFunctionDeclaration()
8976 if (clang::FunctionDecl *func_decl = in DeclGetFunctionReturnType() local
8987 if (clang::FunctionDecl *func_decl = in DeclGetFunctionNumArguments() local
[all …]
H A DTypeSystemClang.h417 clang::FunctionDecl *func_decl, const TemplateParameterInfos &infos);
420 clang::FunctionDecl *func_decl, clang::FunctionTemplateDecl *Template,
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbAstBuilder.cpp1332 clang::FunctionDecl *func_decl = llvm::dyn_cast<clang::FunctionDecl>(&decl); in skipFunctionParameters() local
1333 if (!func_decl) in skipFunctionParameters()
1335 unsigned int params = func_decl->getNumParams(); in skipFunctionParameters()