Lines Matching refs:SBValue
1 STRING_EXTENSION_OUTSIDE(SBValue)
2 %extend lldb::SBValue {
6 '''Helper function for the "SBValue.dynamic" property.'''
29 '''An accessor function that returns a children_access() object which allows lazy member variable access from a lldb.SBValue object.'''
33 '''An accessor function that returns a list() that contains all children in a lldb.SBValue object.'''
44 '''Iterate over all child values of a lldb.SBValue object.'''
48 '''Return the number of child values of a lldb.SBValue object.'''
51 children = property(get_value_child_list, None, doc='''A read only property that returns a list() of lldb.SBValue objects for the children of the value.''')
57 format = property(GetName, SetFormat, doc='''A read/write property that gets/sets the format used for lldb.SBValue().GetValue() for this value. See enumerations that start with "lldb.eFormat".''')
64 deref = property(Dereference, None, doc='''A read only property that returns an lldb.SBValue that is created by dereferencing this value.''')
65 address_of = property(AddressOf, None, doc='''A read only property that returns an lldb.SBValue that represents the address-of this value.''')
69 dynamic = property(__get_dynamic__, None, doc='''A read only property that returns an lldb.SBValue that is created by finding the dynamic type of this value.''')
76 unsigned = property(GetValueAsUnsigned, None, doc='''A read only property that returns the value of this SBValue as an usigned integer.''')
77 signed = property(GetValueAsSigned, None, doc='''A read only property that returns the value of this SBValue as a signed integer.''')
103 """Default function for end of list test takes an SBValue object.
114 # Iterator for lldb.SBValue treated as a linked list
117 """Generator adaptor to support iteration for SBValue as a linked list.
119 linked_list_iter() is a special purpose iterator to treat the SBValue as
122 end-of-list test function which takes an SBValue for an item and returns