Home
last modified time | relevance | path

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

12

/external/llvm-project/lldb/source/API/
DSBType.cpp29 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 …]
DSBTypeNameSpecifier.cpp33 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()
DSBModule.cpp444 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 …]
DSBTypeEnumMember.cpp86 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()
DSBFunction.cpp200 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()
DSBValue.cpp394 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 …]
DSBTarget.cpp1487 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/
DSBType.h34 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 …]
DSBModule.h201 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
DSBValue.h118 lldb::SBType type);
121 lldb::SBValue Cast(lldb::SBType type);
131 lldb::SBType type);
136 lldb::SBType type);
288 lldb::SBType GetType();
DSBTypeNameSpecifier.h23 SBTypeNameSpecifier(SBType type);
35 SBType GetType();
DSBTypeEnumMember.h37 lldb::SBType GetType();
43 friend class SBType;
DSBTarget.h772 lldb::SBType FindFirstType(const char *type);
776 lldb::SBType GetBasicType(lldb::BasicType type);
779 lldb::SBType type);
782 lldb::SBType type);
DSBFunction.h51 lldb::SBType GetType();
/external/llvm-project/lldb/bindings/interface/
DSBType.i31 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 …]
DSBTypeNameSpecifier.i23 SBTypeNameSpecifier (SBType type);
40 lldb::SBType
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
DSBTypeEnumMember.i39 lldb::SBType
57 friend class SBType;
DSBModule.i262 lldb::SBType
268 lldb::SBType
271 lldb::SBType
DSBTarget.i466 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);
DSBFunction.i86 lldb::SBType
/external/llvm-project/lldb/examples/functions/
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()
/external/llvm-project/lldb/test/API/python_api/default-constructor/
Dsb_type.py20 lldb.SBType.IsPointerType(None)
Dsb_value.py50 invalid_type = lldb.SBType()
/external/llvm-project/lldb/test/API/functionalities/type_get_module/
DTestTypeGetModule.py51 result = lldb.SBType()

12