SBTypeCategory#

class lldb.SBTypeCategory(*args)#

Represents a category that can contain formatters for types.

Attributes Summary

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 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, ...)

GetTypeNameSpecifierForFilterAtIndex(...)

GetTypeNameSpecifierForFormatAtIndex(...)

GetTypeNameSpecifierForSummaryAtIndex(...)

GetTypeNameSpecifierForSyntheticAtIndex(...)

IsValid(SBTypeCategory self)

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.

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.