Lines Matching refs:SBDeclaration
22 SBDeclaration::SBDeclaration() : m_opaque_up() { in SBDeclaration() function in SBDeclaration
23 LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBDeclaration); in SBDeclaration()
26 SBDeclaration::SBDeclaration(const SBDeclaration &rhs) : m_opaque_up() { in SBDeclaration() function in SBDeclaration
27 LLDB_RECORD_CONSTRUCTOR(SBDeclaration, (const lldb::SBDeclaration &), rhs); in SBDeclaration()
32 SBDeclaration::SBDeclaration(const lldb_private::Declaration *lldb_object_ptr) in SBDeclaration() function in SBDeclaration
38 const SBDeclaration &SBDeclaration::operator=(const SBDeclaration &rhs) { in operator =()
39 LLDB_RECORD_METHOD(const lldb::SBDeclaration &, in operator =()
40 SBDeclaration, operator=,(const lldb::SBDeclaration &), in operator =()
48 void SBDeclaration::SetDeclaration( in SetDeclaration()
53 SBDeclaration::~SBDeclaration() = default;
55 bool SBDeclaration::IsValid() const { in IsValid()
56 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBDeclaration, IsValid); in IsValid()
59 SBDeclaration::operator bool() const { in operator bool()
60 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBDeclaration, operator bool); in operator bool()
65 SBFileSpec SBDeclaration::GetFileSpec() const { in GetFileSpec()
66 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBFileSpec, SBDeclaration, in GetFileSpec()
78 uint32_t SBDeclaration::GetLine() const { in GetLine()
79 LLDB_RECORD_METHOD_CONST_NO_ARGS(uint32_t, SBDeclaration, GetLine); in GetLine()
90 uint32_t SBDeclaration::GetColumn() const { in GetColumn()
91 LLDB_RECORD_METHOD_CONST_NO_ARGS(uint32_t, SBDeclaration, GetColumn); in GetColumn()
98 void SBDeclaration::SetFileSpec(lldb::SBFileSpec filespec) { in SetFileSpec()
99 LLDB_RECORD_METHOD(void, SBDeclaration, SetFileSpec, (lldb::SBFileSpec), in SetFileSpec()
107 void SBDeclaration::SetLine(uint32_t line) { in SetLine()
108 LLDB_RECORD_METHOD(void, SBDeclaration, SetLine, (uint32_t), line); in SetLine()
113 void SBDeclaration::SetColumn(uint32_t column) { in SetColumn()
114 LLDB_RECORD_METHOD(void, SBDeclaration, SetColumn, (uint32_t), column); in SetColumn()
119 bool SBDeclaration::operator==(const SBDeclaration &rhs) const { in operator ==()
121 bool, SBDeclaration, operator==,(const lldb::SBDeclaration &), rhs); in operator ==()
132 bool SBDeclaration::operator!=(const SBDeclaration &rhs) const { in operator !=()
134 bool, SBDeclaration, operator!=,(const lldb::SBDeclaration &), rhs); in operator !=()
145 const lldb_private::Declaration *SBDeclaration::operator->() const { in operator ->()
149 lldb_private::Declaration &SBDeclaration::ref() { in ref()
155 const lldb_private::Declaration &SBDeclaration::ref() const { in ref()
159 bool SBDeclaration::GetDescription(SBStream &description) { in GetDescription()
160 LLDB_RECORD_METHOD(bool, SBDeclaration, GetDescription, (lldb::SBStream &), in GetDescription()
177 lldb_private::Declaration *SBDeclaration::get() { return m_opaque_up.get(); } in get()
183 void RegisterMethods<SBDeclaration>(Registry &R) { in RegisterMethods()
184 LLDB_REGISTER_CONSTRUCTOR(SBDeclaration, ()); in RegisterMethods()
185 LLDB_REGISTER_CONSTRUCTOR(SBDeclaration, (const lldb::SBDeclaration &)); in RegisterMethods()
187 const lldb::SBDeclaration &, in RegisterMethods()
188 SBDeclaration, operator=,(const lldb::SBDeclaration &)); in RegisterMethods()
189 LLDB_REGISTER_METHOD_CONST(bool, SBDeclaration, IsValid, ()); in RegisterMethods()
190 LLDB_REGISTER_METHOD_CONST(bool, SBDeclaration, operator bool, ()); in RegisterMethods()
191 LLDB_REGISTER_METHOD_CONST(lldb::SBFileSpec, SBDeclaration, GetFileSpec, in RegisterMethods()
193 LLDB_REGISTER_METHOD_CONST(uint32_t, SBDeclaration, GetLine, ()); in RegisterMethods()
194 LLDB_REGISTER_METHOD_CONST(uint32_t, SBDeclaration, GetColumn, ()); in RegisterMethods()
195 LLDB_REGISTER_METHOD(void, SBDeclaration, SetFileSpec, (lldb::SBFileSpec)); in RegisterMethods()
196 LLDB_REGISTER_METHOD(void, SBDeclaration, SetLine, (uint32_t)); in RegisterMethods()
197 LLDB_REGISTER_METHOD(void, SBDeclaration, SetColumn, (uint32_t)); in RegisterMethods()
199 bool, SBDeclaration, operator==,(const lldb::SBDeclaration &)); in RegisterMethods()
201 bool, SBDeclaration, operator!=,(const lldb::SBDeclaration &)); in RegisterMethods()
202 LLDB_REGISTER_METHOD(bool, SBDeclaration, GetDescription, in RegisterMethods()