Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DUniqueDWARFASTType.h26 : m_type_sp(), m_die(), m_declaration(), in UniqueDWARFASTType()
33 : m_type_sp(type_sp), m_die(die), m_declaration(decl), in UniqueDWARFASTType()
38 m_declaration(rhs.m_declaration), m_byte_size(rhs.m_byte_size) {} in UniqueDWARFASTType()
46 m_declaration = rhs.m_declaration;
54 lldb_private::Declaration m_declaration; variable
H A DUniqueDWARFASTType.cpp25 if (udt.m_declaration == decl) { in Find()
H A DDWARFASTParserClang.cpp860 unique_ast_entry_ap->m_declaration = unique_decl; in ParseTypeFromDWARF()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DFunction.cpp33 : m_name(name), m_declaration(decl_ptr) {} in FunctionInfo()
36 : m_name(name), m_declaration(decl_ptr) {} in FunctionInfo()
43 m_declaration.Dump(s, show_fullpaths); in Dump()
51 return Declaration::Compare(a.m_declaration, b.m_declaration); in Compare()
54 Declaration &FunctionInfo::GetDeclaration() { return m_declaration; } in GetDeclaration()
57 return m_declaration; in GetDeclaration()
63 return m_name.MemorySize() + m_declaration.MemorySize(); in MemorySize()
H A DVariable.cpp52 m_declaration(decl_ptr), m_location(location), m_external(external), in Variable()
147 m_declaration.Dump(s, show_fullpaths); in Dump()
198 if (m_declaration.DumpStopContext(s, false)) in DumpDeclaration()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DVariable.h49 const Declaration &GetDeclaration() const { return m_declaration; } in GetDeclaration()
123 Declaration m_declaration; // Declaration location for this item. variable
H A DFunction.h139 Declaration m_declaration; ///< Information describing where this function variable