| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBCompileUnit.cpp | 24 SBCompileUnit::SBCompileUnit() { in SBCompileUnit() function in SBCompileUnit 28 SBCompileUnit::SBCompileUnit(lldb_private::CompileUnit *lldb_object_ptr) in SBCompileUnit() function in SBCompileUnit 31 SBCompileUnit::SBCompileUnit(const SBCompileUnit &rhs) in SBCompileUnit() function in SBCompileUnit 33 LLDB_RECORD_CONSTRUCTOR(SBCompileUnit, (const lldb::SBCompileUnit &), rhs); in SBCompileUnit() 36 const SBCompileUnit &SBCompileUnit::operator=(const SBCompileUnit &rhs) { in operator =() 38 SBCompileUnit, operator=,(const lldb::SBCompileUnit &), in operator =() 45 SBCompileUnit::~SBCompileUnit() { m_opaque_ptr = nullptr; } in ~SBCompileUnit() 199 bool SBCompileUnit::operator==(const SBCompileUnit &rhs) const { in operator ==() 206 bool SBCompileUnit::operator!=(const SBCompileUnit &rhs) const { in operator !=() 250 SBCompileUnit, operator=,(const lldb::SBCompileUnit &)); in RegisterMethods() [all …]
|
| H A D | SBSymbolContext.cpp | 82 SBCompileUnit SBSymbolContext::GetCompileUnit() { in GetCompileUnit() 83 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBCompileUnit, SBSymbolContext, in GetCompileUnit() 87 SBCompileUnit(m_opaque_up ? m_opaque_up->comp_unit : nullptr)); in GetCompileUnit() 140 void SBSymbolContext::SetCompileUnit(lldb::SBCompileUnit compile_unit) { in SetCompileUnit() 142 (lldb::SBCompileUnit), compile_unit); in SetCompileUnit() 248 LLDB_REGISTER_METHOD(lldb::SBCompileUnit, SBSymbolContext, GetCompileUnit, in RegisterMethods() 256 (lldb::SBCompileUnit)); in RegisterMethods()
|
| H A D | SBAddress.cpp | 231 SBCompileUnit SBAddress::GetCompileUnit() { in GetCompileUnit() 232 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBCompileUnit, SBAddress, GetCompileUnit); in GetCompileUnit() 234 SBCompileUnit sb_comp_unit; in GetCompileUnit() 309 LLDB_REGISTER_METHOD(lldb::SBCompileUnit, SBAddress, GetCompileUnit, ()); in RegisterMethods()
|
| H A D | SBModule.cpp | 264 SBCompileUnit SBModule::GetCompileUnitAtIndex(uint32_t index) { in GetCompileUnitAtIndex() 265 LLDB_RECORD_METHOD(lldb::SBCompileUnit, SBModule, GetCompileUnitAtIndex, in GetCompileUnitAtIndex() 268 SBCompileUnit sb_cu; in GetCompileUnitAtIndex() 734 LLDB_REGISTER_METHOD(lldb::SBCompileUnit, SBModule, GetCompileUnitAtIndex, in RegisterMethods()
|
| H A D | SBFrame.cpp | 162 SBCompileUnit SBFrame::GetCompileUnit() const { in GetCompileUnit() 163 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBCompileUnit, SBFrame, in GetCompileUnit() 166 SBCompileUnit sb_comp_unit; in GetCompileUnit() 1306 LLDB_REGISTER_METHOD_CONST(lldb::SBCompileUnit, SBFrame, GetCompileUnit, in RegisterMethods()
|
| H A D | SBReproducer.cpp | 74 RegisterMethods<SBCompileUnit>(R); in SBRegistry()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBCompileUnit.h | 17 class LLDB_API SBCompileUnit { 19 SBCompileUnit(); 21 SBCompileUnit(const lldb::SBCompileUnit &rhs); 23 ~SBCompileUnit(); 25 const lldb::SBCompileUnit &operator=(const lldb::SBCompileUnit &rhs); 68 bool operator==(const lldb::SBCompileUnit &rhs) const; 70 bool operator!=(const lldb::SBCompileUnit &rhs) const; 80 SBCompileUnit(lldb_private::CompileUnit *lldb_object_ptr);
|
| H A D | SBSymbolContext.h | 39 lldb::SBCompileUnit GetCompileUnit(); 46 void SetCompileUnit(lldb::SBCompileUnit compile_unit);
|
| H A D | SBLineEntry.h | 59 friend class SBCompileUnit; variable
|
| H A D | SBFileSpec.h | 63 friend class SBCompileUnit; variable
|
| H A D | SBAddress.h | 78 lldb::SBCompileUnit GetCompileUnit();
|
| H A D | SBStream.h | 64 friend class SBCompileUnit; variable
|
| H A D | SBModule.h | 123 lldb::SBCompileUnit GetCompileUnitAtIndex(uint32_t);
|
| H A D | SBFrame.h | 51 lldb::SBCompileUnit GetCompileUnit() const;
|
| H A D | SBDefines.h | 35 class LLDB_API SBCompileUnit; variable
|
| H A D | SBType.h | 264 friend class SBCompileUnit; variable
|
| /freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/ |
| H A D | SBCompileUnit.i | 45 ) SBCompileUnit; 46 class SBCompileUnit 50 SBCompileUnit (); 52 SBCompileUnit (const lldb::SBCompileUnit &rhs); 54 ~SBCompileUnit (); 114 operator == (const lldb::SBCompileUnit &rhs) const; 117 operator != (const lldb::SBCompileUnit &rhs) const; 119 STRING_EXTENSION(SBCompileUnit)
|
| H A D | SBSymbolContext.i | 63 lldb::SBCompileUnit GetCompileUnit (); 70 void SetCompileUnit (lldb::SBCompileUnit compile_unit);
|
| H A D | SBAddress.i | 128 lldb::SBCompileUnit
|
| H A D | SBFrame.i | 98 lldb::SBCompileUnit
|
| H A D | SBModule.i | 203 lldb::SBCompileUnit
|
| /freebsd-13.1/contrib/llvm-project/lldb/bindings/python/ |
| H A D | python.swig | 27 * :py:class:`SBCompileUnit`: Represents a compilation unit, or compiled source file. 31 and a source file location. :py:class:`SBCompileUnit` contains SBLineEntry.
|
| /freebsd-13.1/contrib/llvm-project/lldb/bindings/ |
| H A D | interfaces.swig | 28 %include "./interface/SBCompileUnit.i"
|
| H A D | headers.swig | 21 #include "lldb/API/SBCompileUnit.h"
|
| /freebsd-13.1/lib/clang/liblldb/ |
| H A D | LLDBWrapLua.cpp | 4473 lldb::SBCompileUnit * resultptr = new lldb::SBCompileUnit((const lldb::SBCompileUnit &) result); in _wrap_SBAddress_GetCompileUnit() 15235 result = (lldb::SBCompileUnit *)new lldb::SBCompileUnit((lldb::SBCompileUnit const &)*arg1); in _wrap_new_SBCompileUnit__SWIG_1() 15282 lldb::SBCompileUnit *arg1 = (lldb::SBCompileUnit *) 0 ; in _wrap_SBCompileUnit_IsValid() 15306 lldb::SBCompileUnit *arg1 = (lldb::SBCompileUnit *) 0 ; in _wrap_SBCompileUnit_GetFileSpec() 15333 lldb::SBCompileUnit *arg1 = (lldb::SBCompileUnit *) 0 ; in _wrap_SBCompileUnit_GetNumLineEntries() 15357 lldb::SBCompileUnit *arg1 = (lldb::SBCompileUnit *) 0 ; in _wrap_SBCompileUnit_GetLineEntryAtIndex() 15387 lldb::SBCompileUnit *arg1 = (lldb::SBCompileUnit *) 0 ; in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_0() 15424 lldb::SBCompileUnit *arg1 = (lldb::SBCompileUnit *) 0 ; in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_1() 15553 lldb::SBCompileUnit *arg1 = (lldb::SBCompileUnit *) 0 ; in _wrap_SBCompileUnit_GetSupportFileAtIndex() 15583 lldb::SBCompileUnit *arg1 = (lldb::SBCompileUnit *) 0 ; in _wrap_SBCompileUnit_GetNumSupportFiles() [all …]
|