Home
last modified time | relevance | path

Searched refs:decl_ptr (Results 1 – 6 of 6) sorted by relevance

/src/contrib/llvm-project/lldb/include/lldb/Core/
H A DDeclaration.h47 Declaration(const Declaration *decl_ptr) in Declaration() argument
49 if (decl_ptr) in Declaration()
50 *this = *decl_ptr; in Declaration()
/src/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DFunction.h44 FunctionInfo(const char *name, const Declaration *decl_ptr);
56 FunctionInfo(ConstString name, const Declaration *decl_ptr);
147 const Declaration *decl_ptr,
169 const Declaration *decl_ptr,
H A DBlock.h317 const Declaration *decl_ptr,
/src/contrib/llvm-project/lldb/source/Symbol/
H A DFunction.cpp31 FunctionInfo::FunctionInfo(const char *name, const Declaration *decl_ptr) in FunctionInfo() argument
32 : m_name(name), m_declaration(decl_ptr) {} in FunctionInfo()
34 FunctionInfo::FunctionInfo(ConstString name, const Declaration *decl_ptr) in FunctionInfo() argument
35 : m_name(name), m_declaration(decl_ptr) {} in FunctionInfo()
67 const Declaration *decl_ptr, in InlineFunctionInfo() argument
69 : FunctionInfo(name, decl_ptr), m_mangled(mangled), in InlineFunctionInfo()
74 const Declaration *decl_ptr, in InlineFunctionInfo() argument
76 : FunctionInfo(name, decl_ptr), m_mangled(mangled), in InlineFunctionInfo()
H A DBlock.cpp409 const Declaration *decl_ptr, in SetInlinedFunctionInfo() argument
411 m_inlineInfoSP = std::make_shared<InlineFunctionInfo>(name, mangled, decl_ptr, in SetInlinedFunctionInfo()
H A DVariable.cpp43 const RangeList &scope_range, Declaration *decl_ptr, in Variable() argument
50 m_declaration(decl_ptr), m_location_list(location_list), m_external(external), in Variable()