/external/llvm-project/lldb/source/API/ |
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 35 SBType::SBType(const lldb::TypeSP &type_sp) in SBType() function in SBType 38 SBType::SBType(const lldb::TypeImplSP &type_impl_sp) in SBType() function in SBType 41 SBType::SBType(const SBType &rhs) : m_opaque_sp() { in SBType() function in SBType 42 LLDB_RECORD_CONSTRUCTOR(SBType, (const lldb::SBType &), rhs); in SBType() 53 bool SBType::operator==(SBType &rhs) { in operator ==() 54 LLDB_RECORD_METHOD(bool, SBType, operator==,(lldb::SBType &), rhs); in operator ==() 65 bool SBType::operator!=(SBType &rhs) { in operator !=() 66 LLDB_RECORD_METHOD(bool, SBType, operator!=,(lldb::SBType &), rhs); in operator !=() [all …]
|
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()
|
D | SBModule.cpp | 444 lldb::SBType SBModule::FindFirstType(const char *name_cstr) { in FindFirstType() 445 LLDB_RECORD_METHOD(lldb::SBType, SBModule, FindFirstType, (const char *), 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() 464 sb_type = SBType(type_system_or_err->GetBuiltinTypeByName(name)); in FindFirstType() 470 lldb::SBType SBModule::GetBasicType(lldb::BasicType type) { in GetBasicType() 471 LLDB_RECORD_METHOD(lldb::SBType, SBModule, GetBasicType, (lldb::BasicType), in GetBasicType() 482 SBType(type_system_or_err->GetBasicTypeFromAST(type))); in GetBasicType() 485 return LLDB_RECORD_RESULT(SBType()); in GetBasicType() [all …]
|
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()
|
D | SBFunction.cpp | 200 SBType SBFunction::GetType() { in GetType() 201 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBType, SBFunction, GetType); in GetType() 203 SBType sb_type; in GetType() 268 LLDB_REGISTER_METHOD(lldb::SBType, SBFunction, GetType, ()); in RegisterMethods()
|
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() 565 (const char *, uint32_t, lldb::SBType), name, offset, in CreateChildAtOffset() 583 lldb::SBValue SBValue::Cast(SBType type) { in Cast() 584 LLDB_RECORD_METHOD(lldb::SBValue, SBValue, Cast, (lldb::SBType), type); in Cast() 631 SBType sb_type) { in CreateValueFromAddress() 633 (const char *, lldb::addr_t, lldb::SBType), name, address, in CreateValueFromAddress() 652 SBType sb_type) { in CreateValueFromData() [all …]
|
D | SBTarget.cpp | 1487 SBType type) { in CreateValueFromAddress() 1489 (const char *, lldb::SBAddress, lldb::SBType), name, addr, in CreateValueFromAddress() 1507 lldb::SBType type) { in CreateValueFromData() 1509 (const char *, lldb::SBData, lldb::SBType), name, data, in CreateValueFromData() 1843 lldb::SBType SBTarget::FindFirstType(const char *typename_cstr) { in FindFirstType() 1844 LLDB_RECORD_METHOD(lldb::SBType, SBTarget, FindFirstType, (const char *), in FindFirstType() 1861 return LLDB_RECORD_RESULT(SBType(type_sp)); in FindFirstType() 1871 return LLDB_RECORD_RESULT(SBType(types.front())); in FindFirstType() 1879 return LLDB_RECORD_RESULT(SBType(type)); in FindFirstType() 1882 return LLDB_RECORD_RESULT(SBType()); in FindFirstType() [all …]
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBType.h | 34 lldb::SBType GetType(); 48 friend class SBType; 79 lldb::SBType GetType(); 81 lldb::SBType GetReturnType(); 85 lldb::SBType GetArgumentTypeAtIndex(uint32_t); 93 friend class SBType; 104 class SBType { 106 SBType(); 108 SBType(const lldb::SBType &rhs); 110 ~SBType(); [all …]
|
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
|
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();
|
D | SBTypeNameSpecifier.h | 23 SBTypeNameSpecifier(SBType type); 35 SBType GetType();
|
D | SBTypeEnumMember.h | 37 lldb::SBType GetType(); 43 friend class SBType;
|
D | SBTarget.h | 772 lldb::SBType FindFirstType(const char *type); 776 lldb::SBType GetBasicType(lldb::BasicType type); 779 lldb::SBType type); 782 lldb::SBType type);
|
D | SBFunction.h | 51 lldb::SBType GetType();
|
/external/llvm-project/lldb/bindings/interface/ |
D | SBType.i | 31 lldb::SBType 86 lldb::SBType 89 lldb::SBType 95 lldb::SBType 181 ...") SBType; 182 class SBType 185 SBType (); 187 SBType (const lldb::SBType &rhs); 189 ~SBType (); 223 lldb::SBType [all …]
|
D | SBTypeNameSpecifier.i | 23 SBTypeNameSpecifier (SBType type); 40 lldb::SBType
|
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
|
D | SBTypeEnumMember.i | 39 lldb::SBType 57 friend class SBType;
|
D | SBModule.i | 262 lldb::SBType 268 lldb::SBType 271 lldb::SBType
|
D | SBTarget.i | 466 lldb::SBType 472 lldb::SBType 895 CreateValueFromAddress (const char *name, lldb::SBAddress addr, lldb::SBType type); 898 CreateValueFromData (const char *name, lldb::SBData data, lldb::SBType type);
|
D | SBFunction.i | 86 lldb::SBType
|
/external/llvm-project/lldb/examples/functions/ |
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()
|
/external/llvm-project/lldb/test/API/python_api/default-constructor/ |
D | sb_type.py | 20 lldb.SBType.IsPointerType(None)
|
D | sb_value.py | 50 invalid_type = lldb.SBType()
|
/external/llvm-project/lldb/test/API/functionalities/type_get_module/ |
D | TestTypeGetModule.py | 51 result = lldb.SBType()
|