Home
last modified time | relevance | path

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

12

/openbsd/src/gnu/llvm/lldb/source/API/
DSBType.cpp30 SBType::SBType() { LLDB_INSTRUMENT_VA(this); } in SBType() function in SBType
32 SBType::SBType(const CompilerType &type) : m_opaque_sp(new TypeImpl(type)) {} in SBType() function in SBType
34 SBType::SBType(const lldb::TypeSP &type_sp) in SBType() function in SBType
37 SBType::SBType(const lldb::TypeImplSP &type_impl_sp) in SBType() function in SBType
40 SBType::SBType(const SBType &rhs) { in SBType() function in SBType
52 bool SBType::operator==(SBType &rhs) { in operator ==()
64 bool SBType::operator!=(SBType &rhs) { in operator !=()
76 lldb::TypeImplSP SBType::GetSP() { return m_opaque_sp; } in GetSP()
78 void SBType::SetSP(const lldb::TypeImplSP &type_impl_sp) { in SetSP()
82 SBType &SBType::operator=(const SBType &rhs) { in operator =()
[all …]
DSBTypeNameSpecifier.cpp37 SBTypeNameSpecifier::SBTypeNameSpecifier(SBType type) { in SBTypeNameSpecifier()
71 SBType SBTypeNameSpecifier::GetType() { in GetType()
75 return SBType(); in GetType()
78 return SBType(c_type); in GetType()
79 return SBType(); in GetType()
DSBModule.cpp436 lldb::SBType SBModule::FindFirstType(const char *name_cstr) { in FindFirstType()
446 SBType sb_type = SBType(module_sp->FindFirstType(sc, name, exact_match)); in FindFirstType()
458 return SBType(ts->GetBuiltinTypeByName(name)); in FindFirstType()
463 lldb::SBType SBModule::GetBasicType(lldb::BasicType type) { in GetBasicType()
474 return SBType(ts->GetBasicTypeFromAST(type)); in GetBasicType()
477 return SBType(); in GetBasicType()
502 retval.Append(SBType(compiler_type)); in FindTypes()
508 retval.Append(SBType(type_sp)); in FindTypes()
515 lldb::SBType SBModule::GetTypeByID(lldb::user_id_t uid) { in GetTypeByID()
523 return SBType(type_ptr->shared_from_this()); in GetTypeByID()
[all …]
DSBTypeEnumMember.cpp80 SBType SBTypeEnumMember::GetType() { in GetType()
83 SBType sb_type; in GetType()
DSBFunction.cpp192 SBType SBFunction::GetType() { in GetType()
195 SBType sb_type; in GetType()
DSBTarget.cpp1386 SBType type) { in CreateValueFromAddress()
1404 lldb::SBType type) { in CreateValueFromData()
1748 lldb::SBType SBTarget::FindFirstType(const char *typename_cstr) { in FindFirstType()
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()
[all …]
DSBValue.cpp391 SBType SBValue::GetType() { in GetType()
394 SBType sb_type; in GetType()
556 SBType type) { in CreateChildAtOffset()
574 lldb::SBValue SBValue::Cast(SBType type) { in Cast()
618 SBType sb_type) { in CreateValueFromAddress()
637 SBType sb_type) { in CreateValueFromData()
/openbsd/src/gnu/llvm/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);
109 SBType(const lldb::TypeImplSP &);
[all …]
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
DSBValue.h118 lldb::SBType type);
121 lldb::SBValue Cast(lldb::SBType type);
131 lldb::SBType type);
136 lldb::SBType type);
294 lldb::SBType GetType();
DSBTypeNameSpecifier.h26 SBTypeNameSpecifier(SBType type);
38 SBType GetType();
DSBTypeEnumMember.h37 lldb::SBType GetType();
43 friend class SBType;
DSBTarget.h785 lldb::SBType FindFirstType(const char *type);
789 lldb::SBType GetBasicType(lldb::BasicType type);
792 lldb::SBType type);
795 lldb::SBType type);
DSBFunction.h51 lldb::SBType GetType();
DSBStream.h91 friend class SBType; variable
DSBDefines.h92 class LLDB_API SBType; variable
/openbsd/src/gnu/llvm/lldb/bindings/interface/
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 …]
DSBTypeNameSpecifier.i26 SBTypeNameSpecifier (SBType type);
43 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;
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);
DSBModule.i272 lldb::SBType
278 lldb::SBType
281 lldb::SBType
DSBFunction.i86 lldb::SBType
/openbsd/src/gnu/llvm/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()
/openbsd/src/gnu/usr.bin/clang/liblldbAPI/
DMakefile66 SBType.cpp \

12