SBTypeCategoryΒΆ
- class lldb.SBTypeCategory(*args)ΒΆ
Represents a category that can contain formatters for types.
Attributes Summary
GetEnabled(SBTypeCategory self) -> bool
A read only property that returns an object that you can use to look for filters by index or type name or regular expression.
A read only property that returns a list() of lldb.SBTypeFilter objects contained in this category
A read only property that returns an object that you can use to look for formats by index or type name.
A read only property that returns a list() of lldb.SBTypeFormat objects contained in this category
GetName(SBTypeCategory self) -> char const *
GetNumFilters(SBTypeCategory self) -> uint32_t
GetNumFormats(SBTypeCategory self) -> uint32_t
GetNumSummaries(SBTypeCategory self) -> uint32_t
GetNumSynthetics(SBTypeCategory self) -> uint32_t
A read only property that returns a list() of lldb.SBTypeSummary objects contained in this category
A read only property that returns an object that you can use to look for summaries by index or type name or regular expression.
A read only property that returns an object that you can use to look for synthetic children provider by index or type name or regular expression.
A read only property that returns a list() of lldb.SBTypeSynthetic objects contained in this category
Methods Summary
AddLanguage
(SBTypeCategory self, lldb)AddTypeFilter
(SBTypeCategory self, ...)AddTypeFormat
(SBTypeCategory self, ...)AddTypeSummary
(SBTypeCategory self, ...)AddTypeSynthetic
(SBTypeCategory self, ...)DeleteTypeFilter
(SBTypeCategory self, ...)DeleteTypeFormat
(SBTypeCategory self, ...)DeleteTypeSummary
(SBTypeCategory self, ...)DeleteTypeSynthetic
(SBTypeCategory self, ...)GetDescription
(SBTypeCategory self, ...)GetEnabled
(SBTypeCategory self)GetFilterAtIndex
(SBTypeCategory self, ...)GetFilterForType
(SBTypeCategory self, ...)GetFormatAtIndex
(SBTypeCategory self, ...)GetFormatForType
(SBTypeCategory self, ...)GetLanguageAtIndex
(SBTypeCategory self, ...)GetName
(SBTypeCategory self)GetNumFilters
(SBTypeCategory self)GetNumFormats
(SBTypeCategory self)GetNumLanguages
(SBTypeCategory self)GetNumSummaries
(SBTypeCategory self)GetNumSynthetics
(SBTypeCategory self)GetSummaryAtIndex
(SBTypeCategory self, ...)GetSummaryForType
(SBTypeCategory self, ...)GetSyntheticAtIndex
(SBTypeCategory self, ...)GetSyntheticForType
(SBTypeCategory self, ...)IsValid
(SBTypeCategory self)SetEnabled
(SBTypeCategory self, bool arg2)An accessor function that returns an accessor object which allows lazy filter access from a lldb.SBTypeCategory object.
An accessor function that returns a list() that contains all filters in a lldb.SBCategory object.
An accessor function that returns an accessor object which allows lazy format access from a lldb.SBTypeCategory object.
An accessor function that returns a list() that contains all formats in a lldb.SBCategory object.
An accessor function that returns an accessor object which allows lazy summary access from a lldb.SBTypeCategory object.
An accessor function that returns a list() that contains all summaries in a lldb.SBCategory object.
An accessor function that returns an accessor object which allows lazy synthetic children provider access from a lldb.SBTypeCategory object.
An accessor function that returns a list() that contains all synthetic children providers in a lldb.SBCategory object.
Attributes Documentation
- enabledΒΆ
GetEnabled(SBTypeCategory self) -> bool
- filterΒΆ
A read only property that returns an object that you can use to look for filters by index or type name or regular expression.
- filtersΒΆ
A read only property that returns a list() of lldb.SBTypeFilter objects contained in this category
- formatΒΆ
A read only property that returns an object that you can use to look for formats by index or type name.
- formatsΒΆ
A read only property that returns a list() of lldb.SBTypeFormat objects contained in this category
- nameΒΆ
GetName(SBTypeCategory self) -> char const *
- num_filtersΒΆ
GetNumFilters(SBTypeCategory self) -> uint32_t
- num_formatsΒΆ
GetNumFormats(SBTypeCategory self) -> uint32_t
- num_summariesΒΆ
GetNumSummaries(SBTypeCategory self) -> uint32_t
- num_syntheticsΒΆ
GetNumSynthetics(SBTypeCategory self) -> uint32_t
- summariesΒΆ
A read only property that returns a list() of lldb.SBTypeSummary objects contained in this category
- summaryΒΆ
A read only property that returns an object that you can use to look for summaries by index or type name or regular expression.
- syntheticΒΆ
A read only property that returns an object that you can use to look for synthetic children provider by index or type name or regular expression.
- syntheticsΒΆ
A read only property that returns a list() of lldb.SBTypeSynthetic objects contained in this category
Methods Documentation
- AddLanguage(SBTypeCategory self, lldb::LanguageType language)ΒΆ
- AddTypeFilter(SBTypeCategory self, SBTypeNameSpecifier arg2, SBTypeFilter arg3) bool ΒΆ
- AddTypeFormat(SBTypeCategory self, SBTypeNameSpecifier arg2, SBTypeFormat arg3) bool ΒΆ
- AddTypeSummary(SBTypeCategory self, SBTypeNameSpecifier arg2, SBTypeSummary arg3) bool ΒΆ
- AddTypeSynthetic(SBTypeCategory self, SBTypeNameSpecifier arg2, SBTypeSynthetic arg3) bool ΒΆ
- DeleteTypeFilter(SBTypeCategory self, SBTypeNameSpecifier arg2) bool ΒΆ
- DeleteTypeFormat(SBTypeCategory self, SBTypeNameSpecifier arg2) bool ΒΆ
- DeleteTypeSummary(SBTypeCategory self, SBTypeNameSpecifier arg2) bool ΒΆ
- DeleteTypeSynthetic(SBTypeCategory self, SBTypeNameSpecifier arg2) bool ΒΆ
- GetDescription(SBTypeCategory self, SBStream description, lldb::DescriptionLevel description_level) bool ΒΆ
- GetEnabled(SBTypeCategory self) bool ΒΆ
- GetFilterAtIndex(SBTypeCategory self, uint32_t arg2) SBTypeFilter ΒΆ
- GetFilterForType(SBTypeCategory self, SBTypeNameSpecifier arg2) SBTypeFilter ΒΆ
- GetFormatAtIndex(SBTypeCategory self, uint32_t arg2) SBTypeFormat ΒΆ
- GetFormatForType(SBTypeCategory self, SBTypeNameSpecifier arg2) SBTypeFormat ΒΆ
- GetLanguageAtIndex(SBTypeCategory self, uint32_t idx) lldb::LanguageType ΒΆ
- GetName(SBTypeCategory self) char const * ΒΆ
- GetNumFilters(SBTypeCategory self) uint32_t ΒΆ
- GetNumFormats(SBTypeCategory self) uint32_t ΒΆ
- GetNumLanguages(SBTypeCategory self) uint32_t ΒΆ
- GetNumSummaries(SBTypeCategory self) uint32_t ΒΆ
- GetNumSynthetics(SBTypeCategory self) uint32_t ΒΆ
- GetSummaryAtIndex(SBTypeCategory self, uint32_t arg2) SBTypeSummary ΒΆ
- GetSummaryForType(SBTypeCategory self, SBTypeNameSpecifier arg2) SBTypeSummary ΒΆ
- GetSyntheticAtIndex(SBTypeCategory self, uint32_t arg2) SBTypeSynthetic ΒΆ
- GetSyntheticForType(SBTypeCategory self, SBTypeNameSpecifier arg2) SBTypeSynthetic ΒΆ
- GetTypeNameSpecifierForFilterAtIndex(SBTypeCategory self, uint32_t arg2) SBTypeNameSpecifier ΒΆ
- GetTypeNameSpecifierForFormatAtIndex(SBTypeCategory self, uint32_t arg2) SBTypeNameSpecifier ΒΆ
- GetTypeNameSpecifierForSummaryAtIndex(SBTypeCategory self, uint32_t arg2) SBTypeNameSpecifier ΒΆ
- GetTypeNameSpecifierForSyntheticAtIndex(SBTypeCategory self, uint32_t arg2) SBTypeNameSpecifier ΒΆ
- IsValid(SBTypeCategory self) bool ΒΆ
- SetEnabled(SBTypeCategory self, bool arg2)ΒΆ
- get_filters_access_object()ΒΆ
An accessor function that returns an accessor object which allows lazy filter access from a lldb.SBTypeCategory object.
- get_filters_array()ΒΆ
An accessor function that returns a list() that contains all filters in a lldb.SBCategory object.
- get_formats_access_object()ΒΆ
An accessor function that returns an accessor object which allows lazy format access from a lldb.SBTypeCategory object.
- get_formats_array()ΒΆ
An accessor function that returns a list() that contains all formats in a lldb.SBCategory object.
- get_summaries_access_object()ΒΆ
An accessor function that returns an accessor object which allows lazy summary access from a lldb.SBTypeCategory object.
- get_summaries_array()ΒΆ
An accessor function that returns a list() that contains all summaries in a lldb.SBCategory object.
- get_synthetics_access_object()ΒΆ
An accessor function that returns an accessor object which allows lazy synthetic children provider access from a lldb.SBTypeCategory object.
- get_synthetics_array()ΒΆ
An accessor function that returns a list() that contains all synthetic children providers in a lldb.SBCategory object.