Home
last modified time | relevance | path

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

/freebsd-13.1/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-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DBlock.cpp337 const Declaration &func_decl = func_type->GetDeclaration(); in AddRange() local
338 if (func_decl.GetLine()) { in AddRange()
344 func_decl.GetFile().GetPath().c_str(), func_decl.GetLine(), in AddRange()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp1428 clang::FunctionDecl *func_decl, in CreateFunctionTemplateDecl() argument
2137 FunctionDecl *func_decl = nullptr; in CreateFunctionDeclaration() local
2148 func_decl->setDeclContext(decl_ctx); in CreateFunctionDeclaration()
2151 func_decl->setStorageClass(storage); in CreateFunctionDeclaration()
2158 if (func_decl) in CreateFunctionDeclaration()
2159 decl_ctx->addDecl(func_decl); in CreateFunctionDeclaration()
2161 VerifyDecl(func_decl); in CreateFunctionDeclaration()
2163 return func_decl; in CreateFunctionDeclaration()
9337 if (clang::FunctionDecl *func_decl = in DeclGetFunctionReturnType() local
9348 if (clang::FunctionDecl *func_decl = in DeclGetFunctionNumArguments() local
[all …]
H A DTypeSystemClang.h342 clang::FunctionDecl *func_decl, const TemplateParameterInfos &infos);
345 clang::FunctionDecl *func_decl, clang::FunctionTemplateDecl *Template,
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbAstBuilder.cpp1244 clang::FunctionDecl *func_decl = llvm::dyn_cast<clang::FunctionDecl>(&decl); in skipFunctionParameters() local
1245 if (!func_decl) in skipFunctionParameters()
1247 unsigned int params = func_decl->getNumParams(); in skipFunctionParameters()