• Home
  • Raw
  • Download

Lines Matching refs:SBSymbolContextList

18 SBSymbolContextList::SBSymbolContextList()  in SBSymbolContextList()  function in SBSymbolContextList
20 LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBSymbolContextList); in SBSymbolContextList()
23 SBSymbolContextList::SBSymbolContextList(const SBSymbolContextList &rhs) in SBSymbolContextList() function in SBSymbolContextList
25 LLDB_RECORD_CONSTRUCTOR(SBSymbolContextList, in SBSymbolContextList()
26 (const lldb::SBSymbolContextList &), rhs); in SBSymbolContextList()
31 SBSymbolContextList::~SBSymbolContextList() = default;
33 const SBSymbolContextList &SBSymbolContextList::
34 operator=(const SBSymbolContextList &rhs) { in operator =()
36 const lldb::SBSymbolContextList &, in operator =()
37 SBSymbolContextList, operator=,(const lldb::SBSymbolContextList &), rhs); in operator =()
44 uint32_t SBSymbolContextList::GetSize() const { in GetSize()
45 LLDB_RECORD_METHOD_CONST_NO_ARGS(uint32_t, SBSymbolContextList, GetSize); in GetSize()
52 SBSymbolContext SBSymbolContextList::GetContextAtIndex(uint32_t idx) { in GetContextAtIndex()
53 LLDB_RECORD_METHOD(lldb::SBSymbolContext, SBSymbolContextList, in GetContextAtIndex()
66 void SBSymbolContextList::Clear() { in Clear()
67 LLDB_RECORD_METHOD_NO_ARGS(void, SBSymbolContextList, Clear); in Clear()
73 void SBSymbolContextList::Append(SBSymbolContext &sc) { in Append()
74 LLDB_RECORD_METHOD(void, SBSymbolContextList, Append, in Append()
81 void SBSymbolContextList::Append(SBSymbolContextList &sc_list) { in Append()
82 LLDB_RECORD_METHOD(void, SBSymbolContextList, Append, in Append()
83 (lldb::SBSymbolContextList &), sc_list); in Append()
89 bool SBSymbolContextList::IsValid() const { in IsValid()
90 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBSymbolContextList, IsValid); in IsValid()
93 SBSymbolContextList::operator bool() const { in operator bool()
94 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBSymbolContextList, operator bool); in operator bool()
99 lldb_private::SymbolContextList *SBSymbolContextList::operator->() const { in operator ->()
103 lldb_private::SymbolContextList &SBSymbolContextList::operator*() const { in operator *()
108 bool SBSymbolContextList::GetDescription(lldb::SBStream &description) { in GetDescription()
109 LLDB_RECORD_METHOD(bool, SBSymbolContextList, GetDescription, in GetDescription()
122 void RegisterMethods<SBSymbolContextList>(Registry &R) { in RegisterMethods()
123 LLDB_REGISTER_CONSTRUCTOR(SBSymbolContextList, ()); in RegisterMethods()
124 LLDB_REGISTER_CONSTRUCTOR(SBSymbolContextList, in RegisterMethods()
125 (const lldb::SBSymbolContextList &)); in RegisterMethods()
127 const lldb::SBSymbolContextList &, in RegisterMethods()
128 SBSymbolContextList, operator=,(const lldb::SBSymbolContextList &)); in RegisterMethods()
129 LLDB_REGISTER_METHOD_CONST(uint32_t, SBSymbolContextList, GetSize, ()); in RegisterMethods()
130 LLDB_REGISTER_METHOD(lldb::SBSymbolContext, SBSymbolContextList, in RegisterMethods()
132 LLDB_REGISTER_METHOD(void, SBSymbolContextList, Clear, ()); in RegisterMethods()
133 LLDB_REGISTER_METHOD(void, SBSymbolContextList, Append, in RegisterMethods()
135 LLDB_REGISTER_METHOD(void, SBSymbolContextList, Append, in RegisterMethods()
136 (lldb::SBSymbolContextList &)); in RegisterMethods()
137 LLDB_REGISTER_METHOD_CONST(bool, SBSymbolContextList, IsValid, ()); in RegisterMethods()
138 LLDB_REGISTER_METHOD_CONST(bool, SBSymbolContextList, operator bool, ()); in RegisterMethods()
139 LLDB_REGISTER_METHOD(bool, SBSymbolContextList, GetDescription, in RegisterMethods()