| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBType.cpp | 29 SBType::SBType() : m_opaque_sp() { LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBType); } in SBType() function in SBType 31 SBType::SBType(const CompilerType &type) in SBType() function in SBType 41 SBType::SBType(const SBType &rhs) : m_opaque_sp() { in SBType() function in SBType 53 bool SBType::operator==(SBType &rhs) { in operator ==() 65 bool SBType::operator!=(SBType &rhs) { in operator !=() 83 SBType &SBType::operator=(const SBType &rhs) { in operator =() 93 SBType::~SBType() = default; 165 SBType SBType::GetPointerType() { in GetPointerType() 175 SBType SBType::GetPointeeType() { in GetPointeeType() 184 SBType SBType::GetReferenceType() { in GetReferenceType() [all …]
|
| H A D | SBTypeNameSpecifier.cpp | 33 SBTypeNameSpecifier::SBTypeNameSpecifier(SBType type) : m_opaque_sp() { in SBTypeNameSpecifier() 34 LLDB_RECORD_CONSTRUCTOR(SBTypeNameSpecifier, (lldb::SBType), type); in SBTypeNameSpecifier() 68 SBType SBTypeNameSpecifier::GetType() { in GetType() 69 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBType, SBTypeNameSpecifier, GetType); in GetType() 72 return LLDB_RECORD_RESULT(SBType()); in GetType() 75 return LLDB_RECORD_RESULT(SBType(c_type)); in GetType() 76 return LLDB_RECORD_RESULT(SBType()); in GetType() 166 LLDB_REGISTER_CONSTRUCTOR(SBTypeNameSpecifier, (lldb::SBType)); in RegisterMethods() 172 LLDB_REGISTER_METHOD(lldb::SBType, SBTypeNameSpecifier, GetType, ()); in RegisterMethods()
|
| H A D | SBModule.cpp | 444 lldb::SBType SBModule::FindFirstType(const char *name_cstr) { in FindFirstType() 448 SBType sb_type; in FindFirstType() 455 sb_type = SBType(module_sp->FindFirstType(sc, name, exact_match)); in FindFirstType() 462 return LLDB_RECORD_RESULT(SBType()); in FindFirstType() 470 lldb::SBType SBModule::GetBasicType(lldb::BasicType type) { in GetBasicType() 482 SBType(type_system_or_err->GetBasicTypeFromAST(type))); in GetBasicType() 485 return LLDB_RECORD_RESULT(SBType()); in GetBasicType() 512 retval.Append(SBType(compiler_type)); in FindTypes() 518 retval.Append(SBType(type_sp)); in FindTypes() 525 lldb::SBType SBModule::GetTypeByID(lldb::user_id_t uid) { in GetTypeByID() [all …]
|
| H A D | SBTypeEnumMember.cpp | 86 SBType SBTypeEnumMember::GetType() { in GetType() 87 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBType, SBTypeEnumMember, GetType); in GetType() 89 SBType sb_type; in GetType() 216 LLDB_REGISTER_METHOD(lldb::SBType, SBTypeEnumMember, GetType, ()); in RegisterMethods()
|
| H A D | SBFunction.cpp | 198 SBType SBFunction::GetType() { in GetType() 199 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBType, SBFunction, GetType); in GetType() 201 SBType sb_type; in GetType() 266 LLDB_REGISTER_METHOD(lldb::SBType, SBFunction, GetType, ()); in RegisterMethods()
|
| H A D | SBValue.cpp | 394 SBType SBValue::GetType() { in GetType() 395 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBType, SBValue, GetType); in GetType() 397 SBType sb_type; in GetType() 563 SBType type) { in CreateChildAtOffset() 583 lldb::SBValue SBValue::Cast(SBType type) { in Cast() 631 SBType sb_type) { in CreateValueFromAddress() 652 SBType sb_type) { in CreateValueFromData() 1569 LLDB_REGISTER_METHOD(lldb::SBType, SBValue, GetType, ()); in RegisterMethods() 1583 (const char *, uint32_t, lldb::SBType)); in RegisterMethods() 1591 (const char *, lldb::addr_t, lldb::SBType)); in RegisterMethods() [all …]
|
| H A D | SBTarget.cpp | 1519 SBType type) { in CreateValueFromAddress() 1893 return LLDB_RECORD_RESULT(SBType(type_sp)); in FindFirstType() 1911 return LLDB_RECORD_RESULT(SBType(type)); in FindFirstType() 1914 return LLDB_RECORD_RESULT(SBType()); in FindFirstType() 1917 SBType SBTarget::GetBasicType(lldb::BasicType type) { in GetBasicType() 1925 return LLDB_RECORD_RESULT(SBType(compiler_type)); in GetBasicType() 1927 return LLDB_RECORD_RESULT(SBType()); in GetBasicType() 1948 sb_type_list.Append(SBType(type_sp)); in FindTypes() 1958 sb_type_list.Append(SBType(type)); in FindTypes() 1968 sb_type_list.Append(SBType(compiler_type)); in FindTypes() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBType.h | 34 lldb::SBType GetType(); 48 friend class SBType; 79 lldb::SBType GetType(); 81 lldb::SBType GetReturnType(); 93 friend class SBType; 104 class SBType { 106 SBType(); 108 SBType(const lldb::SBType &rhs); 110 ~SBType(); 136 lldb::SBType GetPointerType(); [all …]
|
| H A D | SBModule.h | 201 lldb::SBType FindFirstType(const char *name); 219 lldb::SBType GetTypeByID(lldb::user_id_t uid); 221 lldb::SBType GetBasicType(lldb::BasicType type); 303 friend class SBType; variable
|
| H A D | SBValue.h | 118 lldb::SBType type); 121 lldb::SBValue Cast(lldb::SBType type); 131 lldb::SBType type); 136 lldb::SBType type); 288 lldb::SBType GetType();
|
| H A D | SBTypeNameSpecifier.h | 23 SBTypeNameSpecifier(SBType type); 35 SBType GetType();
|
| H A D | SBTypeEnumMember.h | 37 lldb::SBType GetType(); 43 friend class SBType;
|
| H A D | SBTarget.h | 778 lldb::SBType FindFirstType(const char *type); 782 lldb::SBType GetBasicType(lldb::BasicType type); 785 lldb::SBType type); 788 lldb::SBType type);
|
| H A D | SBFunction.h | 51 lldb::SBType GetType();
|
| H A D | SBStream.h | 91 friend class SBType; variable
|
| H A D | SBDefines.h | 79 class LLDB_API SBType; variable
|
| /freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/ |
| H A D | SBType.i | 31 lldb::SBType 89 lldb::SBType 92 lldb::SBType 98 lldb::SBType 200 ") SBType; 201 class SBType 204 SBType (); 206 SBType (const lldb::SBType &rhs); 208 ~SBType (); 369 lldb::SBType [all …]
|
| H A D | SBTypeNameSpecifier.i | 23 SBTypeNameSpecifier (SBType type); 40 lldb::SBType
|
| H A D | SBValue.i | 249 CreateChildAtOffset (const char *name, uint32_t offset, lldb::SBType type); 252 SBValue::Cast (lldb::SBType type); 261 CreateValueFromAddress(const char* name, lldb::addr_t address, lldb::SBType type); 266 lldb::SBType type); 268 lldb::SBType
|
| H A D | SBTypeEnumMember.i | 39 lldb::SBType 57 friend class SBType;
|
| H A D | SBTarget.i | 448 lldb::SBType 454 lldb::SBType 884 CreateValueFromAddress (const char *name, lldb::SBAddress addr, lldb::SBType type); 887 CreateValueFromData (const char *name, lldb::SBData data, lldb::SBType type);
|
| H A D | SBModule.i | 262 lldb::SBType 268 lldb::SBType 271 lldb::SBType
|
| H A D | SBFunction.i | 86 lldb::SBType
|
| /freebsd-13.1/lib/clang/liblldb/ |
| H A D | LLDBWrapLua.cpp | 28759 lldb::SBType * resultptr = new lldb::SBType((const lldb::SBType &) result); in _wrap_SBFunction_GetType() 35102 lldb::SBType * resultptr = new lldb::SBType((const lldb::SBType &) result); in _wrap_SBModule_FindFirstType() 35162 lldb::SBType * resultptr = new lldb::SBType((const lldb::SBType &) result); in _wrap_SBModule_GetTypeByID() 35192 lldb::SBType * resultptr = new lldb::SBType((const lldb::SBType &) result); in _wrap_SBModule_GetBasicType() 48606 lldb::SBType * resultptr = new lldb::SBType((const lldb::SBType &) result); in _wrap_SBTarget_FindFirstType() 48666 lldb::SBType * resultptr = new lldb::SBType((const lldb::SBType &) result); in _wrap_SBTarget_GetBasicType() 57833 lldb::SBType * resultptr = new lldb::SBType((const lldb::SBType &) result); in _wrap_SBTypeMember_GetType() 58206 lldb::SBType * resultptr = new lldb::SBType((const lldb::SBType &) result); in _wrap_SBTypeMemberFunction_GetType() 58233 lldb::SBType * resultptr = new lldb::SBType((const lldb::SBType &) result); in _wrap_SBTypeMemberFunction_GetReturnType() 58470 result = (lldb::SBType *)new lldb::SBType((lldb::SBType const &)*arg1); in _wrap_new_SBType__SWIG_1() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/bindings/ |
| H A D | interfaces.swig | 72 %include "./interface/SBType.i"
|