| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBType.cpp | 31 SBType::SBType(const CompilerType &type) in SBType() function in SBType 35 SBType::SBType(const lldb::TypeSP &type_sp) in SBType() function in SBType 41 SBType::SBType(const SBType &rhs) { 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 =() 92 SBType::~SBType() = default; 164 SBType SBType::GetPointerType() { in GetPointerType() 173 SBType SBType::GetPointeeType() { in GetPointeeType() 181 SBType SBType::GetReferenceType() { in GetReferenceType() [all …]
|
| H A D | SBTypeNameSpecifier.cpp | 30 SBTypeNameSpecifier::SBTypeNameSpecifier(SBType type) { in SBTypeNameSpecifier() 64 SBType SBTypeNameSpecifier::GetType() { in GetType() 68 return SBType(); in GetType() 71 return SBType(c_type); in GetType() 72 return SBType(); in GetType()
|
| H A D | SBModule.cpp | 436 lldb::SBType SBModule::FindFirstType(const char *name_cstr) { in FindFirstType() 439 SBType sb_type; in FindFirstType() 453 return SBType(); in FindFirstType() 461 lldb::SBType SBModule::GetBasicType(lldb::BasicType type) { in GetBasicType() 471 return SBType(type_system_or_err->GetBasicTypeFromAST(type)); in GetBasicType() 474 return SBType(); in GetBasicType() 500 retval.Append(SBType(compiler_type)); in FindTypes() 506 retval.Append(SBType(type_sp)); in FindTypes() 513 lldb::SBType SBModule::GetTypeByID(lldb::user_id_t uid) { in GetTypeByID() 521 return SBType(type_ptr->shared_from_this()); in GetTypeByID() [all …]
|
| H A D | SBTypeEnumMember.cpp | 80 SBType SBTypeEnumMember::GetType() { in GetType() 83 SBType sb_type; in GetType()
|
| H A D | SBFunction.cpp | 192 SBType SBFunction::GetType() { in GetType() 195 SBType sb_type; in GetType()
|
| H A D | SBTarget.cpp | 1386 SBType type) { in CreateValueFromAddress() 1765 return SBType(type_sp); in FindFirstType() 1775 return SBType(types.front()); in FindFirstType() 1783 return SBType(type); in FindFirstType() 1786 return SBType(); in FindFirstType() 1789 SBType SBTarget::GetBasicType(lldb::BasicType type) { in GetBasicType() 1796 return SBType(compiler_type); in GetBasicType() 1798 return SBType(); in GetBasicType() 1818 sb_type_list.Append(SBType(type_sp)); in FindTypes() 1828 sb_type_list.Append(SBType(type)); in FindTypes() [all …]
|
| /llvm-project-15.0.7/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(); 138 lldb::SBType GetPointerType(); [all …]
|
| H A D | SBModule.h | 203 lldb::SBType FindFirstType(const char *name); 221 lldb::SBType GetTypeByID(lldb::user_id_t uid); 223 lldb::SBType GetBasicType(lldb::BasicType type); 305 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); 294 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 | 785 lldb::SBType FindFirstType(const char *type); 789 lldb::SBType GetBasicType(lldb::BasicType type); 792 lldb::SBType type); 795 lldb::SBType type);
|
| H A D | SBFunction.h | 51 lldb::SBType GetType();
|
| H A D | SBStream.h | 91 friend class SBType; variable
|
| /llvm-project-15.0.7/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 (); 381 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 | 454 lldb::SBType 460 lldb::SBType 890 CreateValueFromAddress (const char *name, lldb::SBAddress addr, lldb::SBType type); 893 CreateValueFromData (const char *name, lldb::SBData data, lldb::SBType type);
|
| H A D | SBModule.i | 269 lldb::SBType 275 lldb::SBType 278 lldb::SBType
|
| H A D | SBFunction.i | 86 lldb::SBType
|
| /llvm-project-15.0.7/lldb/examples/functions/ |
| H A D | main.cpp | 248 SBType function_type = function.GetType(); in main() 249 SBType return_type = function_type.GetFunctionReturnType(); in main() 285 SBType function_arg_type = in main() 313 SBType function_arg_type = in main()
|
| /llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/ |
| H A D | sb_type.py | 20 lldb.SBType.IsPointerType(None)
|
| H A D | sb_value.py | 50 invalid_type = lldb.SBType()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/type_get_module/ |
| H A D | TestTypeGetModule.py | 49 result = lldb.SBType()
|