Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBType.cpp27 SBType::SBType() : m_opaque_sp() {} in SBType() function in SBType
29 SBType::SBType(const CompilerType &type) in SBType() function in SBType
39 SBType::SBType(const SBType &rhs) : m_opaque_sp() { in SBType() function in SBType
49 bool SBType::operator==(SBType &rhs) { in operator ==()
59 bool SBType::operator!=(SBType &rhs) { in operator !=()
75 SBType &SBType::operator=(const SBType &rhs) { in operator =()
82 SBType::~SBType() {} in ~SBType()
138 SBType SBType::GetPointerType() { in GetPointerType()
145 SBType SBType::GetPointeeType() { in GetPointeeType()
151 SBType SBType::GetReferenceType() { in GetReferenceType()
[all …]
H A DSBTypeNameSpecifier.cpp29 SBTypeNameSpecifier::SBTypeNameSpecifier(SBType type) : m_opaque_sp() { in SBTypeNameSpecifier()
49 SBType SBTypeNameSpecifier::GetType() { in GetType()
51 return SBType(); in GetType()
54 return SBType(c_type); in GetType()
55 return SBType(); in GetType()
H A DSBModule.cpp407 lldb::SBType SBModule::FindFirstType(const char *name_cstr) { in FindFirstType()
408 SBType sb_type; in FindFirstType()
421 sb_type = SBType(type_system->GetBuiltinTypeByName(name)); in FindFirstType()
427 lldb::SBType SBModule::GetBasicType(lldb::BasicType type) { in GetBasicType()
433 return SBType(type_system->GetBasicTypeFromAST(type)); in GetBasicType()
435 return SBType(); in GetBasicType()
454 retval.Append(SBType(type_sp)); in FindTypes()
462 retval.Append(SBType(compiler_type)); in FindTypes()
470 lldb::SBType SBModule::GetTypeByID(lldb::user_id_t uid) { in GetTypeByID()
477 return SBType(type_ptr->shared_from_this()); in GetTypeByID()
[all …]
H A DSBTypeEnumMember.cpp64 SBType SBTypeEnumMember::GetType() { in GetType()
65 SBType sb_type; in GetType()
H A DSBFunction.cpp191 SBType SBFunction::GetType() { in GetType()
192 SBType sb_type; in GetType()
H A DSBTarget.cpp1432 SBType type) { in CreateValueFromAddress()
1458 lldb::SBType type) { in CreateValueFromData()
1783 lldb::SBType SBTarget::FindFirstType(const char *typename_cstr) { in FindFirstType()
1798 return SBType(type_sp); in FindFirstType()
1819 return SBType(type); in FindFirstType()
1832 return SBType(); in FindFirstType()
1835 SBType SBTarget::GetBasicType(lldb::BasicType type) { in GetBasicType()
1840 return SBType( in GetBasicType()
1843 return SBType(); in GetBasicType()
1863 sb_type_list.Append(SBType(type_sp)); in FindTypes()
[all …]
H A DSBValue.cpp482 SBType SBValue::GetType() { in GetType()
484 SBType sb_type; in GetType()
671 SBType type) { in CreateChildAtOffset()
697 lldb::SBValue SBValue::Cast(SBType type) { in Cast()
747 SBType sb_type) { in CreateValueFromAddress()
774 SBType sb_type) { in CreateValueFromData()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBType.h33 lldb::SBType GetType();
47 friend class SBType;
76 lldb::SBType GetType();
78 lldb::SBType GetReturnType();
90 friend class SBType;
101 class SBType {
103 SBType();
105 SBType(const lldb::SBType &rhs);
107 ~SBType();
129 lldb::SBType GetPointerType();
[all …]
H A DSBValue.h121 lldb::SBType type);
124 lldb::SBValue Cast(lldb::SBType type);
134 lldb::SBType type);
139 lldb::SBType type);
299 lldb::SBType GetType();
H A DSBModule.h216 lldb::SBType FindFirstType(const char *name);
236 lldb::SBType GetTypeByID(lldb::user_id_t uid);
238 lldb::SBType GetBasicType(lldb::BasicType type);
H A DSBTypeNameSpecifier.h24 SBTypeNameSpecifier(SBType type);
34 SBType GetType();
H A DSBTypeEnumMember.h36 lldb::SBType GetType();
42 friend class SBType;
H A DSBTarget.h828 lldb::SBType FindFirstType(const char *type);
832 lldb::SBType GetBasicType(lldb::BasicType type);
835 lldb::SBType type);
838 lldb::SBType type);
H A DSBFunction.h50 lldb::SBType GetType();
H A DSBStream.h83 friend class SBType; variable
H A DSBDefines.h84 class LLDB_API SBType; variable
/freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-mi/
H A DMICmnLLDBDebugger.cpp41 lldb::SBType value_type = value.GetType(); in MI_char_summary_provider()
H A DMICmdCmdVar.cpp297 lldb::SBType valueType = vrwValue.GetType(); in CompleteSBValue()
/freebsd-12.1/lib/clang/liblldb/
H A DMakefile68 SRCS+= API/SBType.cpp