Home
last modified time | relevance | path

Searched refs:SBType (Results 1 – 25 of 36) sorted by relevance

12

/llvm-project-15.0.7/lldb/source/API/
H A DSBType.cpp31 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 DSBTypeNameSpecifier.cpp30 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 DSBModule.cpp436 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 DSBTypeEnumMember.cpp80 SBType SBTypeEnumMember::GetType() { in GetType()
83 SBType sb_type; in GetType()
H A DSBFunction.cpp192 SBType SBFunction::GetType() { in GetType()
195 SBType sb_type; in GetType()
H A DSBTarget.cpp1386 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 DSBType.h34 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 DSBModule.h203 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 DSBValue.h118 lldb::SBType type);
121 lldb::SBValue Cast(lldb::SBType type);
131 lldb::SBType type);
136 lldb::SBType type);
294 lldb::SBType GetType();
H A DSBTypeNameSpecifier.h23 SBTypeNameSpecifier(SBType type);
35 SBType GetType();
H A DSBTypeEnumMember.h37 lldb::SBType GetType();
43 friend class SBType;
H A DSBTarget.h785 lldb::SBType FindFirstType(const char *type);
789 lldb::SBType GetBasicType(lldb::BasicType type);
792 lldb::SBType type);
795 lldb::SBType type);
H A DSBFunction.h51 lldb::SBType GetType();
H A DSBStream.h91 friend class SBType; variable
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBType.i31 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 DSBTypeNameSpecifier.i23 SBTypeNameSpecifier (SBType type);
40 lldb::SBType
H A DSBValue.i249 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 DSBTypeEnumMember.i39 lldb::SBType
57 friend class SBType;
H A DSBTarget.i454 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 DSBModule.i269 lldb::SBType
275 lldb::SBType
278 lldb::SBType
H A DSBFunction.i86 lldb::SBType
/llvm-project-15.0.7/lldb/examples/functions/
H A Dmain.cpp248 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 Dsb_type.py20 lldb.SBType.IsPointerType(None)
H A Dsb_value.py50 invalid_type = lldb.SBType()
/llvm-project-15.0.7/lldb/test/API/functionalities/type_get_module/
H A DTestTypeGetModule.py49 result = lldb.SBType()

12