Lines Matching full:that
10 '''A helper object that will lazily hand out child values when supplied an index.'''
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 an interface which provides subscript based lookup of child members.'''
46 '''An accessor function that returns a list() that contains all children in a lldb.SBValue object.'''
64 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.''')
65 child = property(get_child_access_object, None, doc='''A read only property that returns an object that can access children of a variable by index (child_value = value.children[12]).''')
66 member = property(get_member_access_object, None, doc='''A read only property that returns an object that can access child members by name.''')
67 name = property(GetName, None, doc='''A read only property that returns the name of this value as a string.''')
68 type = property(GetType, None, doc='''A read only property that returns a lldb.SBType object that represents the type for this value.''')
69 size = property(GetByteSize, None, doc='''A read only property that returns the size in bytes of this value.''')
70 is_in_scope = property(IsInScope, None, doc='''A read only property that returns a boolean value that indicates whether this value is currently lexically in scope.''')
71 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".''')
72 value = property(GetValue, SetValueFromCString, doc='''A read/write property that gets/sets value from a string.''')
73 value_type = property(GetValueType, None, doc='''A read only property that returns an lldb enumeration value (see enumerations that start with "lldb.eValueType") that represents the type of this value (local, argument, global, register, etc.).''')
74 changed = property(GetValueDidChange, None, doc='''A read only property that returns a boolean value that indicates if this value has changed since it was last updated.''')
75 data = property(GetData, None, doc='''A read only property that returns an lldb object (lldb.SBData) that represents the bytes that make up the value for this object.''')
76 load_addr = property(GetLoadAddress, None, doc='''A read only property that returns the load address of this value as an integer.''')
77 addr = property(GetAddress, None, doc='''A read only property that returns an lldb.SBAddress that represents the address of this value if it is in memory.''')
78 deref = property(Dereference, None, doc='''A read only property that returns an lldb.SBValue that is created by dereferencing this value.''')
79 address_of = property(AddressOf, None, doc='''A read only property that returns an lldb.SBValue that represents the address-of this value.''')
80 error = property(GetError, None, doc='''A read only property that returns the lldb.SBError that represents the error from the last time the variable value was calculated.''')
81 summary = property(GetSummary, None, doc='''A read only property that returns the summary for this value as a string''')
82 description = property(GetObjectDescription, None, doc='''A read only property that returns the language-specific description of this value as a string''')
83 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.''')
84 location = property(GetLocation, None, doc='''A read only property that returns the location of this value as a string.''')
85 target = property(GetTarget, None, doc='''A read only property that returns the lldb.SBTarget that this value is associated with.''')
86 process = property(GetProcess, None, doc='''A read only property that returns the lldb.SBProcess that this value is associated with, the returned value might be invalid and should be tested.''')
87 thread = property(GetThread, None, doc='''A read only property that returns the lldb.SBThread that this value is associated with, the returned value might be invalid and should be tested.''')
88 frame = property(GetFrame, None, doc='''A read only property that returns the lldb.SBFrame that this value is associated with, the returned value might be invalid and should be tested.''')
89 num_children = property(GetNumChildren, None, doc='''A read only property that returns the number of child lldb.SBValues that this value has.''')
90 unsigned = property(GetValueAsUnsigned, None, doc='''A read only property that returns the value of this SBValue as an usigned integer.''')
91 signed = property(GetValueAsSigned, None, doc='''A read only property that returns the value of this SBValue as a signed integer.''')
98 path = property(get_expr_path, None, doc='''A read only property that returns the expression path that one can use to reach this value in an expression.''')