Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/
H A DNameSearchContext.cpp80 clang::FunctionDecl *func_decl = FunctionDecl::Create( in AddFunDecl() local
108 func_decl->setParams(ArrayRef<ParmVarDecl *>(parm_var_decls)); in AddFunDecl()
127 m_decls.push_back(func_decl); in AddFunDecl()
129 return func_decl; in AddFunDecl()
/llvm-project-15.0.7/clang/test/CodeGenCXX/
H A Ddebug-info-namespace.cpp16 void func_decl(void);
42 using B::func_decl; in func()
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/llvm/test/DebugInfo/Generic/
H A Dnamespace.ll44 ; CHECK: DW_AT_name ("func_decl")
149 ; void func_decl(void);
175 ; using B::func_decl;
327 !52 = !DISubprogram(name: "func_decl", linkageName: "_ZN1A1B9func_declEv", line: 9, isLocal: false,…
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp1434 clang::FunctionDecl *func_decl, in CreateFunctionTemplateDecl() argument
2143 FunctionDecl *func_decl = nullptr; in CreateFunctionDeclaration() local
2154 func_decl->setDeclContext(decl_ctx); in CreateFunctionDeclaration()
2157 func_decl->setStorageClass(storage); in CreateFunctionDeclaration()
2164 decl_ctx->addDecl(func_decl); in CreateFunctionDeclaration()
2166 VerifyDecl(func_decl); in CreateFunctionDeclaration()
2168 return func_decl; in CreateFunctionDeclaration()
9434 if (clang::FunctionDecl *func_decl = in DeclGetFunctionReturnType() local
9445 if (clang::FunctionDecl *func_decl = in DeclGetFunctionNumArguments() local
9447 return func_decl->param_size(); in DeclGetFunctionNumArguments()
[all …]
H A DTypeSystemClang.h344 clang::FunctionDecl *func_decl, const TemplateParameterInfos &infos);
347 clang::FunctionDecl *func_decl, clang::FunctionTemplateDecl *Template,
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbAstBuilder.cpp1556 clang::FunctionDecl *func_decl = llvm::dyn_cast<clang::FunctionDecl>(&decl); in skipFunctionParameters() local
1557 if (!func_decl) in skipFunctionParameters()
1559 unsigned int params = func_decl->getNumParams(); in skipFunctionParameters()