Package lldb :: Class SBTypeCategory
[hide private]
[frames] | no frames]

Class SBTypeCategory

source code


Represents a category that can contain formatters for types.

Nested Classes [hide private]
  formatters_access_class
A helper object that will lazily hand out formatters for a specific category.
Instance Methods [hide private]
 
__setattr__(self, name, value)
x.__setattr__('name', value) <==> x.name = value
source code
 
__getattr__(self, name) source code
 
__repr__(self)
repr(x)
source code
 
__init__(self, *args)
__init__(lldb::SBTypeCategory self) -> SBTypeCategory __init__(lldb::SBTypeCategory self, SBTypeCategory rhs) -> SBTypeCategory
source code
 
__swig_destroy__(...)
delete_SBTypeCategory(SBTypeCategory self)
 
__del__(self) source code
 
__nonzero__(self) source code
 
IsValid(self)
IsValid(SBTypeCategory self) -> bool
source code
 
GetEnabled(self)
GetEnabled(SBTypeCategory self) -> bool
source code
 
SetEnabled(self, *args)
SetEnabled(SBTypeCategory self, bool arg2)
source code
 
GetName(self)
GetName(SBTypeCategory self) -> str const *
source code
 
GetDescription(self, *args)
GetDescription(SBTypeCategory self, SBStream description, lldb::DescriptionLevel description_level) -> bool
source code
 
GetNumFormats(self)
GetNumFormats(SBTypeCategory self) -> uint32_t
source code
 
GetNumSummaries(self)
GetNumSummaries(SBTypeCategory self) -> uint32_t
source code
 
GetNumFilters(self)
GetNumFilters(SBTypeCategory self) -> uint32_t
source code
 
GetNumSynthetics(self)
GetNumSynthetics(SBTypeCategory self) -> uint32_t
source code
 
GetTypeNameSpecifierForFilterAtIndex(self, *args)
GetTypeNameSpecifierForFilterAtIndex(SBTypeCategory self, uint32_t arg2) -> SBTypeNameSpecifier
source code
 
GetTypeNameSpecifierForFormatAtIndex(self, *args)
GetTypeNameSpecifierForFormatAtIndex(SBTypeCategory self, uint32_t arg2) -> SBTypeNameSpecifier
source code
 
GetTypeNameSpecifierForSummaryAtIndex(self, *args)
GetTypeNameSpecifierForSummaryAtIndex(SBTypeCategory self, uint32_t arg2) -> SBTypeNameSpecifier
source code
 
GetTypeNameSpecifierForSyntheticAtIndex(self, *args)
GetTypeNameSpecifierForSyntheticAtIndex(SBTypeCategory self, uint32_t arg2) -> SBTypeNameSpecifier
source code
 
GetFilterForType(self, *args)
GetFilterForType(SBTypeCategory self, SBTypeNameSpecifier arg2) -> SBTypeFilter
source code
 
GetFormatForType(self, *args)
GetFormatForType(SBTypeCategory self, SBTypeNameSpecifier arg2) -> SBTypeFormat
source code
 
GetSummaryForType(self, *args)
GetSummaryForType(SBTypeCategory self, SBTypeNameSpecifier arg2) -> SBTypeSummary
source code
 
GetSyntheticForType(self, *args)
GetSyntheticForType(SBTypeCategory self, SBTypeNameSpecifier arg2) -> SBTypeSynthetic
source code
 
GetFilterAtIndex(self, *args)
GetFilterAtIndex(SBTypeCategory self, uint32_t arg2) -> SBTypeFilter
source code
 
GetFormatAtIndex(self, *args)
GetFormatAtIndex(SBTypeCategory self, uint32_t arg2) -> SBTypeFormat
source code
 
GetSummaryAtIndex(self, *args)
GetSummaryAtIndex(SBTypeCategory self, uint32_t arg2) -> SBTypeSummary
source code
 
GetSyntheticAtIndex(self, *args)
GetSyntheticAtIndex(SBTypeCategory self, uint32_t arg2) -> SBTypeSynthetic
source code
 
AddTypeFormat(self, *args)
AddTypeFormat(SBTypeCategory self, SBTypeNameSpecifier arg2, SBTypeFormat arg3) -> bool
source code
 
DeleteTypeFormat(self, *args)
DeleteTypeFormat(SBTypeCategory self, SBTypeNameSpecifier arg2) -> bool
source code
 
AddTypeSummary(self, *args)
AddTypeSummary(SBTypeCategory self, SBTypeNameSpecifier arg2, SBTypeSummary arg3) -> bool
source code
 
DeleteTypeSummary(self, *args)
DeleteTypeSummary(SBTypeCategory self, SBTypeNameSpecifier arg2) -> bool
source code
 
AddTypeFilter(self, *args)
AddTypeFilter(SBTypeCategory self, SBTypeNameSpecifier arg2, SBTypeFilter arg3) -> bool
source code
 
DeleteTypeFilter(self, *args)
DeleteTypeFilter(SBTypeCategory self, SBTypeNameSpecifier arg2) -> bool
source code
 
AddTypeSynthetic(self, *args)
AddTypeSynthetic(SBTypeCategory self, SBTypeNameSpecifier arg2, SBTypeSynthetic arg3) -> bool
source code
 
DeleteTypeSynthetic(self, *args)
DeleteTypeSynthetic(SBTypeCategory self, SBTypeNameSpecifier arg2) -> bool
source code
 
get_formats_access_object(self)
An accessor function that returns an accessor object which allows lazy format access from a lldb.SBTypeCategory object.
source code
 
get_formats_array(self)
An accessor function that returns a list() that contains all formats in a lldb.SBCategory object.
source code
 
get_summaries_access_object(self)
An accessor function that returns an accessor object which allows lazy summary access from a lldb.SBTypeCategory object.
source code
 
get_summaries_array(self)
An accessor function that returns a list() that contains all summaries in a lldb.SBCategory object.
source code
 
get_synthetics_access_object(self)
An accessor function that returns an accessor object which allows lazy synthetic children provider access from a lldb.SBTypeCategory object.
source code
 
get_synthetics_array(self)
An accessor function that returns a list() that contains all synthetic children providers in a lldb.SBCategory object.
source code
 
get_filters_access_object(self)
An accessor function that returns an accessor object which allows lazy filter access from a lldb.SBTypeCategory object.
source code
 
get_filters_array(self)
An accessor function that returns a list() that contains all filters in a lldb.SBCategory object.
source code
 
__str__(self)
__str__(SBTypeCategory self) -> PyObject *
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __sizeof__, __subclasshook__

Class Variables [hide private]
  __swig_setmethods__ = {}
  __swig_getmethods__ = {}
Properties [hide private]
  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) -> str 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

Inherited from object: __class__

Method Details [hide private]

__setattr__(self, name, value)

source code 

x.__setattr__('name', value) <==> x.name = value

Overrides: object.__setattr__
(inherited documentation)

__repr__(self)
(Representation operator)

source code 

repr(x)

Overrides: object.__repr__
(inherited documentation)

__init__(self, *args)
(Constructor)

source code 

__init__(lldb::SBTypeCategory self) -> SBTypeCategory __init__(lldb::SBTypeCategory self, SBTypeCategory rhs) -> SBTypeCategory

Overrides: object.__init__

__str__(self)
(Informal representation operator)

source code 

__str__(SBTypeCategory self) -> PyObject *

Overrides: object.__str__

Property Details [hide private]

enabled

GetEnabled(SBTypeCategory self) -> bool

Get Method:
GetEnabled(self) - GetEnabled(SBTypeCategory self) -> bool
Set Method:
SetEnabled(self, *args) - SetEnabled(SBTypeCategory self, bool arg2)

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.

Get Method:
get_filters_access_object(self) - An accessor function that returns an accessor object which allows lazy filter access from a lldb.SBTypeCategory object.

filters

A read only property that returns a list() of lldb.SBTypeFilter objects contained in this category

Get Method:
get_filters_array(self) - An accessor function that returns a list() that contains all filters in a lldb.SBCategory object.

format

A read only property that returns an object that you can use to look for formats by index or type name.

Get Method:
get_formats_access_object(self) - An accessor function that returns an accessor object which allows lazy format access from a lldb.SBTypeCategory object.

formats

A read only property that returns a list() of lldb.SBTypeFormat objects contained in this category

Get Method:
get_formats_array(self) - An accessor function that returns a list() that contains all formats in a lldb.SBCategory object.

name

GetName(SBTypeCategory self) -> str const *

Get Method:
GetName(self) - GetName(SBTypeCategory self) -> str const *

num_filters

GetNumFilters(SBTypeCategory self) -> uint32_t

Get Method:
GetNumFilters(self) - GetNumFilters(SBTypeCategory self) -> uint32_t

num_formats

GetNumFormats(SBTypeCategory self) -> uint32_t

Get Method:
GetNumFormats(self) - GetNumFormats(SBTypeCategory self) -> uint32_t

num_summaries

GetNumSummaries(SBTypeCategory self) -> uint32_t

Get Method:
GetNumSummaries(self) - GetNumSummaries(SBTypeCategory self) -> uint32_t

num_synthetics

GetNumSynthetics(SBTypeCategory self) -> uint32_t

Get Method:
GetNumSynthetics(self) - GetNumSynthetics(SBTypeCategory self) -> uint32_t

summaries

A read only property that returns a list() of lldb.SBTypeSummary objects contained in this category

Get Method:
get_summaries_array(self) - An accessor function that returns a list() that contains all summaries in a lldb.SBCategory object.

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.

Get Method:
get_summaries_access_object(self) - An accessor function that returns an accessor object which allows lazy summary access from a lldb.SBTypeCategory object.

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.

Get Method:
get_synthetics_access_object(self) - An accessor function that returns an accessor object which allows lazy synthetic children provider access from a lldb.SBTypeCategory object.

synthetics

A read only property that returns a list() of lldb.SBTypeSynthetic objects contained in this category

Get Method:
get_synthetics_array(self) - An accessor function that returns a list() that contains all synthetic children providers in a lldb.SBCategory object.