Home
last modified time | relevance | path

Searched refs:SBTypeFormat (Results 1 – 18 of 18) sorted by relevance

/external/llvm-project/lldb/source/API/
DSBTypeFormat.cpp19 SBTypeFormat::SBTypeFormat() : m_opaque_sp() { in SBTypeFormat() function in SBTypeFormat
20 LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBTypeFormat); in SBTypeFormat()
23 SBTypeFormat::SBTypeFormat(lldb::Format format, uint32_t options) in SBTypeFormat() function in SBTypeFormat
26 LLDB_RECORD_CONSTRUCTOR(SBTypeFormat, (lldb::Format, uint32_t), format, in SBTypeFormat()
30 SBTypeFormat::SBTypeFormat(const char *type, uint32_t options) in SBTypeFormat() function in SBTypeFormat
33 LLDB_RECORD_CONSTRUCTOR(SBTypeFormat, (const char *, uint32_t), type, in SBTypeFormat()
37 SBTypeFormat::SBTypeFormat(const lldb::SBTypeFormat &rhs) in SBTypeFormat() function in SBTypeFormat
39 LLDB_RECORD_CONSTRUCTOR(SBTypeFormat, (const lldb::SBTypeFormat &), rhs); in SBTypeFormat()
42 SBTypeFormat::~SBTypeFormat() = default;
44 bool SBTypeFormat::IsValid() const { in IsValid()
[all …]
DSBTypeCategory.cpp215 SBTypeFormat SBTypeCategory::GetFormatForType(SBTypeNameSpecifier spec) { in GetFormatForType()
216 LLDB_RECORD_METHOD(lldb::SBTypeFormat, SBTypeCategory, GetFormatForType, in GetFormatForType()
220 return LLDB_RECORD_RESULT(SBTypeFormat()); in GetFormatForType()
223 return LLDB_RECORD_RESULT(SBTypeFormat()); in GetFormatForType()
235 return LLDB_RECORD_RESULT(lldb::SBTypeFormat()); in GetFormatForType()
237 return LLDB_RECORD_RESULT(lldb::SBTypeFormat(format_sp)); in GetFormatForType()
311 SBTypeFormat SBTypeCategory::GetFormatAtIndex(uint32_t index) { in GetFormatAtIndex()
312 LLDB_RECORD_METHOD(lldb::SBTypeFormat, SBTypeCategory, GetFormatAtIndex, in GetFormatAtIndex()
316 return LLDB_RECORD_RESULT(SBTypeFormat()); in GetFormatAtIndex()
318 SBTypeFormat(m_opaque_sp->GetFormatAtIndex((index)))); in GetFormatAtIndex()
[all …]
DSBValue.cpp490 lldb::SBTypeFormat SBValue::GetTypeFormat() { in GetTypeFormat()
491 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBTypeFormat, SBValue, GetTypeFormat); in GetTypeFormat()
493 lldb::SBTypeFormat format; in GetTypeFormat()
1578 LLDB_REGISTER_METHOD(lldb::SBTypeFormat, SBValue, GetTypeFormat, ()); in RegisterMethods()
DSBReproducer.cpp125 RegisterMethods<SBTypeFormat>(R); in SBRegistry()
DCMakeLists.txt84 SBTypeFormat.cpp
DSBDebugger.cpp1572 SBTypeFormat SBDebugger::GetFormatForType(SBTypeNameSpecifier type_name) { in GetFormatForType()
1573 LLDB_RECORD_METHOD(lldb::SBTypeFormat, SBDebugger, GetFormatForType, in GetFormatForType()
1579 return LLDB_RECORD_RESULT(SBTypeFormat()); in GetFormatForType()
1833 LLDB_REGISTER_METHOD(lldb::SBTypeFormat, SBDebugger, GetFormatForType, in RegisterMethods()
/external/llvm-project/lldb/include/lldb/API/
DSBTypeFormat.h17 class LLDB_API SBTypeFormat {
19 SBTypeFormat();
21 SBTypeFormat(lldb::Format format,
24 SBTypeFormat(const char *type,
27 SBTypeFormat(const lldb::SBTypeFormat &rhs);
29 ~SBTypeFormat();
50 lldb::SBTypeFormat &operator=(const lldb::SBTypeFormat &rhs);
52 bool IsEqualTo(lldb::SBTypeFormat &rhs);
54 bool operator==(lldb::SBTypeFormat &rhs);
56 bool operator!=(lldb::SBTypeFormat &rhs);
[all …]
DSBTypeCategory.h62 SBTypeFormat GetFormatForType(SBTypeNameSpecifier);
70 SBTypeFormat GetFormatAtIndex(uint32_t);
76 bool AddTypeFormat(SBTypeNameSpecifier, SBTypeFormat);
DSBDefines.h85 class LLDB_API SBTypeFormat; variable
DSBValue.h107 lldb::SBTypeFormat GetTypeFormat();
DSBDebugger.h285 SBTypeFormat GetFormatForType(SBTypeNameSpecifier);
/external/llvm-project/lldb/bindings/interface/
DSBTypeFormat.i12 "Represents a format that can be associated to one or more types.") SBTypeFormat;
14 class SBTypeFormat
18 SBTypeFormat();
20 SBTypeFormat (lldb::Format format, uint32_t options = 0);
22 SBTypeFormat (const char* type, uint32_t options = 0);
24 SBTypeFormat (const lldb::SBTypeFormat &rhs);
26 ~SBTypeFormat ();
34 IsEqualTo (lldb::SBTypeFormat &rhs);
59 operator == (lldb::SBTypeFormat &rhs);
62 operator != (lldb::SBTypeFormat &rhs);
[all …]
DSBTypeCategory.i78 lldb::SBTypeFormat
90 lldb::SBTypeFormat
101 lldb::SBTypeFormat);
DSBDebugger.i470 lldb::SBTypeFormat
DSBValue.i174 lldb::SBTypeFormat
/external/llvm-project/lldb/test/API/python_api/formatters/
DTestFormattersSBAPI.py57 format = lldb.SBTypeFormat(lldb.eFormatHex)
355 lldb.SBTypeFormat()),
376 lldb.SBTypeFormat(
/external/llvm-project/lldb/bindings/
Dheaders.swig70 #include "lldb/API/SBTypeFormat.h"
Dinterfaces.swig77 %include "./interface/SBTypeFormat.i"