forked from qt-creator/qt-creator
Debugger: Mark a few more sub items as expandable
... and remove some of the now implicit putNumChild() calls. Also, adapt docs. Change-Id: I1ab1dafada95a1703cd6a9ba5b9e7e4166b48cd9 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -1096,7 +1096,6 @@
|
|||||||
with SubItem(self, name):
|
with SubItem(self, name):
|
||||||
self.putValue(value)
|
self.putValue(value)
|
||||||
self.putType("int")
|
self.putType("int")
|
||||||
self.putNumChild(0)
|
|
||||||
\endcode
|
\endcode
|
||||||
|
|
||||||
\li \c{putBoolItem(self, name, value)} - Equivalent to:
|
\li \c{putBoolItem(self, name, value)} - Equivalent to:
|
||||||
@@ -1104,7 +1103,6 @@
|
|||||||
with SubItem(self, name):
|
with SubItem(self, name):
|
||||||
self.putValue(value)
|
self.putValue(value)
|
||||||
self.putType("bool")
|
self.putType("bool")
|
||||||
self.putNumChild(0)
|
|
||||||
\endcode
|
\endcode
|
||||||
|
|
||||||
\li \c{putCallItem(self, name, value, func, *args)} - Uses the native
|
\li \c{putCallItem(self, name, value, func, *args)} - Uses the native
|
||||||
@@ -1168,10 +1166,12 @@
|
|||||||
|
|
||||||
\li \c{putBetterType(self, type)} - Overrides the last recorded \c type.
|
\li \c{putBetterType(self, type)} - Overrides the last recorded \c type.
|
||||||
|
|
||||||
|
\li \c{putExpandable(self)} - Announces the existence of child items
|
||||||
|
for the current value. The default are no children.
|
||||||
|
|
||||||
\li \c{putNumChild(self, numchild)} - Announces the existence
|
\li \c{putNumChild(self, numchild)} - Announces the existence
|
||||||
(\c numchild > 0) or non-existence of child items for the current
|
(\c numchild > 0) or non-existence of child items for the current
|
||||||
value. If \c putNumChild is not explicitly called, the
|
value.
|
||||||
existence of child items is implied.
|
|
||||||
|
|
||||||
\li \c{putValue(self, value, encoding = None)} - Appends the file
|
\li \c{putValue(self, value, encoding = None)} - Appends the file
|
||||||
\c {value=''}, optionally followed by the field \c {valueencoding=''}.
|
\c {value=''}, optionally followed by the field \c {valueencoding=''}.
|
||||||
|
@@ -43,7 +43,6 @@ def qdump__boost__optional(d, value):
|
|||||||
d.putBetterType(value.type)
|
d.putBetterType(value.type)
|
||||||
else:
|
else:
|
||||||
d.putSpecialValue("uninitialized")
|
d.putSpecialValue("uninitialized")
|
||||||
d.putNumChild(0)
|
|
||||||
|
|
||||||
|
|
||||||
def qdump__boost__shared_ptr(d, value):
|
def qdump__boost__shared_ptr(d, value):
|
||||||
@@ -54,12 +53,10 @@ def qdump__boost__shared_ptr(d, value):
|
|||||||
(px, pi) = value.split("pp")
|
(px, pi) = value.split("pp")
|
||||||
if pi == 0:
|
if pi == 0:
|
||||||
d.putValue("(null)")
|
d.putValue("(null)")
|
||||||
d.putNumChild(0)
|
|
||||||
return
|
return
|
||||||
|
|
||||||
if px == 0:
|
if px == 0:
|
||||||
d.putValue("(null)")
|
d.putValue("(null)")
|
||||||
d.putNumChild(0)
|
|
||||||
return
|
return
|
||||||
|
|
||||||
(vptr, usecount, weakcount) = d.split('pii', pi)
|
(vptr, usecount, weakcount) = d.split('pii', pi)
|
||||||
@@ -90,18 +87,15 @@ def qdump__boost__container__list(d, value):
|
|||||||
|
|
||||||
def qdump__boost__gregorian__date(d, value):
|
def qdump__boost__gregorian__date(d, value):
|
||||||
d.putValue(value.integer(), "juliandate")
|
d.putValue(value.integer(), "juliandate")
|
||||||
d.putNumChild(0)
|
|
||||||
|
|
||||||
|
|
||||||
def qdump__boost__posix_time__ptime(d, value):
|
def qdump__boost__posix_time__ptime(d, value):
|
||||||
ms = int(value.integer() / 1000)
|
ms = int(value.integer() / 1000)
|
||||||
d.putValue("%s/%s" % divmod(ms, 86400000), "juliandateandmillisecondssincemidnight")
|
d.putValue("%s/%s" % divmod(ms, 86400000), "juliandateandmillisecondssincemidnight")
|
||||||
d.putNumChild(0)
|
|
||||||
|
|
||||||
|
|
||||||
def qdump__boost__posix_time__time_duration(d, value):
|
def qdump__boost__posix_time__time_duration(d, value):
|
||||||
d.putValue(int(value.integer() / 1000), "millisecondssincemidnight")
|
d.putValue(int(value.integer() / 1000), "millisecondssincemidnight")
|
||||||
d.putNumChild(0)
|
|
||||||
|
|
||||||
|
|
||||||
def qdump__boost__unordered__unordered_set(d, value):
|
def qdump__boost__unordered__unordered_set(d, value):
|
||||||
|
@@ -738,7 +738,6 @@ class DumperBase():
|
|||||||
with SubItem(self, name):
|
with SubItem(self, name):
|
||||||
self.putValue('0x%x' % value)
|
self.putValue('0x%x' % value)
|
||||||
self.putType('void*')
|
self.putType('void*')
|
||||||
self.putNumChild(0)
|
|
||||||
|
|
||||||
def putIntItem(self, name, value):
|
def putIntItem(self, name, value):
|
||||||
with SubItem(self, name):
|
with SubItem(self, name):
|
||||||
@@ -747,7 +746,6 @@ class DumperBase():
|
|||||||
else:
|
else:
|
||||||
self.putValue(value)
|
self.putValue(value)
|
||||||
self.putType('int')
|
self.putType('int')
|
||||||
self.putNumChild(0)
|
|
||||||
|
|
||||||
def putEnumItem(self, name, ival, typish):
|
def putEnumItem(self, name, ival, typish):
|
||||||
buf = bytearray(struct.pack('i', ival))
|
buf = bytearray(struct.pack('i', ival))
|
||||||
@@ -761,7 +759,6 @@ class DumperBase():
|
|||||||
with SubItem(self, name):
|
with SubItem(self, name):
|
||||||
self.putValue(value)
|
self.putValue(value)
|
||||||
self.putType('bool')
|
self.putType('bool')
|
||||||
self.putNumChild(0)
|
|
||||||
|
|
||||||
def putPairItem(self, index, pair, keyName='first', valueName='second'):
|
def putPairItem(self, index, pair, keyName='first', valueName='second'):
|
||||||
with SubItem(self, index):
|
with SubItem(self, index):
|
||||||
@@ -786,7 +783,6 @@ class DumperBase():
|
|||||||
nice = vals.get(ival, None)
|
nice = vals.get(ival, None)
|
||||||
display = ('%d' % ival) if nice is None else ('%s (%d)' % (nice, ival))
|
display = ('%d' % ival) if nice is None else ('%s (%d)' % (nice, ival))
|
||||||
self.putValue(display)
|
self.putValue(display)
|
||||||
self.putNumChild(0)
|
|
||||||
|
|
||||||
def putCallItem(self, name, rettype, value, func, *args):
|
def putCallItem(self, name, rettype, value, func, *args):
|
||||||
with SubItem(self, name):
|
with SubItem(self, name):
|
||||||
@@ -816,7 +812,7 @@ class DumperBase():
|
|||||||
|
|
||||||
def putNamedChildren(self, values, names):
|
def putNamedChildren(self, values, names):
|
||||||
self.putEmptyValue(-99)
|
self.putEmptyValue(-99)
|
||||||
self.putNumChild(1)
|
self.putExpandable()
|
||||||
if self.isExpanded():
|
if self.isExpanded():
|
||||||
with Children(self):
|
with Children(self):
|
||||||
for n, v in zip(names, values):
|
for n, v in zip(names, values):
|
||||||
@@ -873,9 +869,6 @@ class DumperBase():
|
|||||||
with SubItem(self, item.name):
|
with SubItem(self, item.name):
|
||||||
self.putItem(item)
|
self.putItem(item)
|
||||||
|
|
||||||
def putUnexpandable(self):
|
|
||||||
self.putNumChild(0)
|
|
||||||
|
|
||||||
def putExpandable(self):
|
def putExpandable(self):
|
||||||
self.putNumChild(1)
|
self.putNumChild(1)
|
||||||
self.expandableINames.add(self.currentIName)
|
self.expandableINames.add(self.currentIName)
|
||||||
@@ -1056,7 +1049,7 @@ class DumperBase():
|
|||||||
def putSpecialValue(self, encoding, value='', children=None):
|
def putSpecialValue(self, encoding, value='', children=None):
|
||||||
self.putValue(value, encoding)
|
self.putValue(value, encoding)
|
||||||
if children is not None:
|
if children is not None:
|
||||||
self.putNumChild(1)
|
self.putExpandable()
|
||||||
if self.isExpanded():
|
if self.isExpanded():
|
||||||
with Children(self):
|
with Children(self):
|
||||||
for name, value in children:
|
for name, value in children:
|
||||||
@@ -2029,7 +2022,7 @@ class DumperBase():
|
|||||||
# before we know whether there are actual children. Counting
|
# before we know whether there are actual children. Counting
|
||||||
# them is too expensive.
|
# them is too expensive.
|
||||||
self.putSpecialValue('minimumitemcount', propertyCount)
|
self.putSpecialValue('minimumitemcount', propertyCount)
|
||||||
self.putNumChild(1)
|
self.putExpandable()
|
||||||
|
|
||||||
superDataPtr = extractSuperDataPtr(metaObjectPtr)
|
superDataPtr = extractSuperDataPtr(metaObjectPtr)
|
||||||
|
|
||||||
@@ -2085,14 +2078,13 @@ class DumperBase():
|
|||||||
if superDataPtr:
|
if superDataPtr:
|
||||||
self.putType('@QMetaObject')
|
self.putType('@QMetaObject')
|
||||||
self.putAddress(superDataPtr)
|
self.putAddress(superDataPtr)
|
||||||
self.putNumChild(1)
|
self.putExpandable()
|
||||||
if self.isExpanded():
|
if self.isExpanded():
|
||||||
with Children(self):
|
with Children(self):
|
||||||
self.putQObjectGutsHelper(0, 0, -1, superDataPtr, 'QMetaObject')
|
self.putQObjectGutsHelper(0, 0, -1, superDataPtr, 'QMetaObject')
|
||||||
else:
|
else:
|
||||||
self.putType('@QMetaObject *')
|
self.putType('@QMetaObject *')
|
||||||
self.putValue('0x0')
|
self.putValue('0x0')
|
||||||
self.putNumChild(0)
|
|
||||||
|
|
||||||
if handle >= 0:
|
if handle >= 0:
|
||||||
localIndex = int((handle - methods) / 5)
|
localIndex = int((handle - methods) / 5)
|
||||||
@@ -2116,7 +2108,7 @@ class DumperBase():
|
|||||||
connections = connections.dereference()
|
connections = connections.dereference()
|
||||||
#connections = connections.cast(connections.type.firstBase())
|
#connections = connections.cast(connections.type.firstBase())
|
||||||
self.putSpecialValue('minimumitemcount', 0)
|
self.putSpecialValue('minimumitemcount', 0)
|
||||||
self.putNumChild(1)
|
self.putExpandable()
|
||||||
if self.isExpanded():
|
if self.isExpanded():
|
||||||
pp = 0
|
pp = 0
|
||||||
with Children(self):
|
with Children(self):
|
||||||
|
@@ -1233,7 +1233,7 @@ class Dumper(DumperBase):
|
|||||||
with SubItem(self, '[statics]'):
|
with SubItem(self, '[statics]'):
|
||||||
self.put('iname="%s",' % self.currentIName)
|
self.put('iname="%s",' % self.currentIName)
|
||||||
self.putEmptyValue()
|
self.putEmptyValue()
|
||||||
self.putNumChild(1)
|
self.putExpandable()
|
||||||
if self.isExpanded():
|
if self.isExpanded():
|
||||||
with Children(self):
|
with Children(self):
|
||||||
statics = frame.GetVariables(False, False, True, False)
|
statics = frame.GetVariables(False, False, True, False)
|
||||||
@@ -1250,7 +1250,6 @@ class Dumper(DumperBase):
|
|||||||
else:
|
else:
|
||||||
with SubItem(self, "None"):
|
with SubItem(self, "None"):
|
||||||
self.putEmptyValue()
|
self.putEmptyValue()
|
||||||
self.putNumChild(0)
|
|
||||||
|
|
||||||
# FIXME: Implement shortcut for partial updates.
|
# FIXME: Implement shortcut for partial updates.
|
||||||
#if isPartial:
|
#if isPartial:
|
||||||
|
@@ -122,7 +122,6 @@ def qdump__gsl__span(d, value):
|
|||||||
|
|
||||||
|
|
||||||
def qdump__gsl__byte(d, value):
|
def qdump__gsl__byte(d, value):
|
||||||
d.putNumChild(0)
|
|
||||||
d.putValue(value.integer())
|
d.putValue(value.integer())
|
||||||
|
|
||||||
#######################################################################
|
#######################################################################
|
||||||
@@ -245,7 +244,6 @@ def qdump_Array(d, value):
|
|||||||
d.putType('%s[%d]' % (t, n))
|
d.putType('%s[%d]' % (t, n))
|
||||||
if t == 'char':
|
if t == 'char':
|
||||||
d.putValue(encodeCharArray(p, 100), 'local8bit')
|
d.putValue(encodeCharArray(p, 100), 'local8bit')
|
||||||
d.putNumChild(0)
|
|
||||||
else:
|
else:
|
||||||
d.putEmptyValue()
|
d.putEmptyValue()
|
||||||
d.putNumChild(n)
|
d.putNumChild(n)
|
||||||
@@ -281,7 +279,6 @@ if False:
|
|||||||
def qdump__tree_entry(d, value):
|
def qdump__tree_entry(d, value):
|
||||||
d.putValue('len: %s, offset: %s, type: %s' %
|
d.putValue('len: %s, offset: %s, type: %s' %
|
||||||
(value['blocklength'], value['offset'], value['type']))
|
(value['blocklength'], value['offset'], value['type']))
|
||||||
d.putNumChild(0)
|
|
||||||
|
|
||||||
def qdump__tree(d, value):
|
def qdump__tree(d, value):
|
||||||
count = value['count']
|
count = value['count']
|
||||||
@@ -510,7 +507,7 @@ def get_py_object_repr(d, value):
|
|||||||
sub_value = functor(d, address)
|
sub_value = functor(d, address)
|
||||||
d.putValue(d.hexencode(sub_value), encoding='utf8')
|
d.putValue(d.hexencode(sub_value), encoding='utf8')
|
||||||
|
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
with Children(d):
|
with Children(d):
|
||||||
if repr_available:
|
if repr_available:
|
||||||
@@ -575,7 +572,7 @@ def qdump__QtcDumperTest_List__NodeX(d, value):
|
|||||||
pos1 = typename.find('>')
|
pos1 = typename.find('>')
|
||||||
tName = typename[pos0 + 1:pos1]
|
tName = typename[pos0 + 1:pos1]
|
||||||
d.putBetterType('QtcDumperTest_List<' + tName + '>::Node')
|
d.putBetterType('QtcDumperTest_List<' + tName + '>::Node')
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
obj_type = d.lookupType(tName)
|
obj_type = d.lookupType(tName)
|
||||||
with Children(d):
|
with Children(d):
|
||||||
@@ -586,7 +583,7 @@ def qdump__QtcDumperTest_List__NodeX(d, value):
|
|||||||
|
|
||||||
def qdump__QtcDumperTest_List(d, value):
|
def qdump__QtcDumperTest_List(d, value):
|
||||||
innerType = value.type[0]
|
innerType = value.type[0]
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
p = value['root']
|
p = value['root']
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
with Children(d):
|
with Children(d):
|
||||||
|
@@ -43,7 +43,7 @@
|
|||||||
#
|
#
|
||||||
# def qdump__MapNode(d, value):
|
# def qdump__MapNode(d, value):
|
||||||
# d.putValue("This is the value column contents")
|
# d.putValue("This is the value column contents")
|
||||||
# d.putNumChild(2)
|
# d.putExpandable()
|
||||||
# if d.isExpanded():
|
# if d.isExpanded():
|
||||||
# with Children(d):
|
# with Children(d):
|
||||||
# # Compact simple case.
|
# # Compact simple case.
|
||||||
|
@@ -31,12 +31,10 @@ from utils import DisplayFormat
|
|||||||
|
|
||||||
def qdump__QAtomicInt(d, value):
|
def qdump__QAtomicInt(d, value):
|
||||||
d.putValue(value.integer())
|
d.putValue(value.integer())
|
||||||
d.putNumChild(0)
|
|
||||||
|
|
||||||
|
|
||||||
def qdump__QBasicAtomicInt(d, value):
|
def qdump__QBasicAtomicInt(d, value):
|
||||||
d.putValue(value.integer())
|
d.putValue(value.integer())
|
||||||
d.putNumChild(0)
|
|
||||||
|
|
||||||
|
|
||||||
def qdump__QAtomicPointer(d, value):
|
def qdump__QAtomicPointer(d, value):
|
||||||
@@ -58,7 +56,8 @@ def qedit__QByteArray(d, value, data):
|
|||||||
def qdump__QByteArray(d, value):
|
def qdump__QByteArray(d, value):
|
||||||
data, size, alloc = d.byteArrayData(value)
|
data, size, alloc = d.byteArrayData(value)
|
||||||
d.check(alloc == 0 or (0 <= size and size <= alloc and alloc <= 100000000))
|
d.check(alloc == 0 or (0 <= size and size <= alloc and alloc <= 100000000))
|
||||||
d.putNumChild(size)
|
if size > 0:
|
||||||
|
d.putExpandable()
|
||||||
elided, p = d.encodeByteArrayHelper(d.extractPointer(value), d.displayStringLimit)
|
elided, p = d.encodeByteArrayHelper(d.extractPointer(value), d.displayStringLimit)
|
||||||
displayFormat = d.currentItemFormat()
|
displayFormat = d.currentItemFormat()
|
||||||
if displayFormat == DisplayFormat.Automatic or displayFormat == DisplayFormat.Latin1String:
|
if displayFormat == DisplayFormat.Automatic or displayFormat == DisplayFormat.Latin1String:
|
||||||
@@ -79,7 +78,6 @@ def qdump__QArrayData(d, value):
|
|||||||
data, size, alloc = d.byteArrayDataHelper(value.address())
|
data, size, alloc = d.byteArrayDataHelper(value.address())
|
||||||
d.check(alloc == 0 or (0 <= size and size <= alloc and alloc <= 100000000))
|
d.check(alloc == 0 or (0 <= size and size <= alloc and alloc <= 100000000))
|
||||||
d.putValue(d.readMemory(data, size), 'latin1')
|
d.putValue(d.readMemory(data, size), 'latin1')
|
||||||
d.putNumChild(1)
|
|
||||||
d.putPlainChildren(value)
|
d.putPlainChildren(value)
|
||||||
|
|
||||||
|
|
||||||
@@ -99,12 +97,10 @@ def qdump__QBitArray(d, value):
|
|||||||
with SubItem(d, i):
|
with SubItem(d, i):
|
||||||
d.putValue((int(d.extractPointer(q)) >> (i % 8)) & 1)
|
d.putValue((int(d.extractPointer(q)) >> (i % 8)) & 1)
|
||||||
d.putType('bool')
|
d.putType('bool')
|
||||||
d.putNumChild(0)
|
|
||||||
|
|
||||||
|
|
||||||
def qdump__QChar(d, value):
|
def qdump__QChar(d, value):
|
||||||
d.putValue(d.extractUShort(value))
|
d.putValue(d.extractUShort(value))
|
||||||
d.putNumChild(0)
|
|
||||||
|
|
||||||
|
|
||||||
def qform_X_QAbstractItemModel():
|
def qform_X_QAbstractItemModel():
|
||||||
@@ -185,7 +181,7 @@ def qdump_X_QModelIndex(d, value):
|
|||||||
except:
|
except:
|
||||||
d.putValue('')
|
d.putValue('')
|
||||||
|
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
with Children(d):
|
with Children(d):
|
||||||
d.putFields(value, False)
|
d.putFields(value, False)
|
||||||
@@ -244,8 +240,8 @@ def qdump__QStandardItem(d, value):
|
|||||||
model, parent, values, children, rows, cols, item = d.split('ppPPIIp', dptr)
|
model, parent, values, children, rows, cols, item = d.split('ppPPIIp', dptr)
|
||||||
else:
|
else:
|
||||||
vtable1, model, parent, values, children, rows, cols, item = d.split('pppPPIIp', dptr)
|
vtable1, model, parent, values, children, rows, cols, item = d.split('pppPPIIp', dptr)
|
||||||
d.putValue(' ')
|
d.putEmptyValue()
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
with Children(d):
|
with Children(d):
|
||||||
d.putSubItem('[model]', d.createValue(model, '@QStandardItemModel'))
|
d.putSubItem('[model]', d.createValue(model, '@QStandardItemModel'))
|
||||||
@@ -258,7 +254,7 @@ def qdump__QDate(d, value):
|
|||||||
jd = value.pointer()
|
jd = value.pointer()
|
||||||
if jd:
|
if jd:
|
||||||
d.putValue(jd, 'juliandate')
|
d.putValue(jd, 'juliandate')
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
with Children(d):
|
with Children(d):
|
||||||
if d.canCallLocale():
|
if d.canCallLocale():
|
||||||
@@ -273,14 +269,12 @@ def qdump__QDate(d, value):
|
|||||||
d.putFields(value)
|
d.putFields(value)
|
||||||
else:
|
else:
|
||||||
d.putValue('(invalid)')
|
d.putValue('(invalid)')
|
||||||
d.putNumChild(0)
|
|
||||||
|
|
||||||
|
|
||||||
def qdump__QTime(d, value):
|
def qdump__QTime(d, value):
|
||||||
mds = value.split('i')[0]
|
mds = value.split('i')[0]
|
||||||
if mds == -1:
|
if mds == -1:
|
||||||
d.putValue('(invalid)')
|
d.putValue('(invalid)')
|
||||||
d.putNumChild(0)
|
|
||||||
return
|
return
|
||||||
d.putValue(mds, 'millisecondssincemidnight')
|
d.putValue(mds, 'millisecondssincemidnight')
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
@@ -301,7 +295,6 @@ def qdump__QTimeZone(d, value):
|
|||||||
base = d.extractPointer(value)
|
base = d.extractPointer(value)
|
||||||
if base == 0:
|
if base == 0:
|
||||||
d.putValue('(null)')
|
d.putValue('(null)')
|
||||||
d.putNumChild(0)
|
|
||||||
return
|
return
|
||||||
idAddr = base + 2 * d.ptrSize() # [QSharedData] + [vptr]
|
idAddr = base + 2 * d.ptrSize() # [QSharedData] + [vptr]
|
||||||
d.putByteArrayValue(idAddr)
|
d.putByteArrayValue(idAddr)
|
||||||
@@ -395,10 +388,9 @@ def qdump__QDateTime(d, value):
|
|||||||
|
|
||||||
if not isValid:
|
if not isValid:
|
||||||
d.putValue('(invalid)')
|
d.putValue('(invalid)')
|
||||||
d.putNumChild(0)
|
|
||||||
return
|
return
|
||||||
|
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
with Children(d):
|
with Children(d):
|
||||||
d.putCallItem('toTime_t', 'unsigned int', value, 'toTime_t')
|
d.putCallItem('toTime_t', 'unsigned int', value, 'toTime_t')
|
||||||
@@ -419,7 +411,7 @@ def qdump__QDateTime(d, value):
|
|||||||
|
|
||||||
|
|
||||||
def qdump__QDir(d, value):
|
def qdump__QDir(d, value):
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
privAddress = d.extractPointer(value)
|
privAddress = d.extractPointer(value)
|
||||||
bit32 = d.ptrSize() == 4
|
bit32 = d.ptrSize() == 4
|
||||||
qt5 = d.qtVersion() >= 0x050000
|
qt5 = d.qtVersion() >= 0x050000
|
||||||
@@ -513,7 +505,7 @@ def qdump__QDir(d, value):
|
|||||||
|
|
||||||
|
|
||||||
def qdump__QEvent(d, value):
|
def qdump__QEvent(d, value):
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
with Children(d):
|
with Children(d):
|
||||||
# Add a sub-item with the event type.
|
# Add a sub-item with the event type.
|
||||||
@@ -523,7 +515,6 @@ def qdump__QEvent(d, value):
|
|||||||
type_value = t.cast(event_type_name)
|
type_value = t.cast(event_type_name)
|
||||||
d.putValue(type_value.displayEnum('0x%04x', bitsize=16))
|
d.putValue(type_value.displayEnum('0x%04x', bitsize=16))
|
||||||
d.putType(event_type_name)
|
d.putType(event_type_name)
|
||||||
d.putNumChild(0)
|
|
||||||
|
|
||||||
# Show the rest of the class fields as usual.
|
# Show the rest of the class fields as usual.
|
||||||
d.putFields(value)
|
d.putFields(value)
|
||||||
@@ -609,7 +600,7 @@ def qdump__QKeyEvent(d, value):
|
|||||||
|
|
||||||
d.putValue(d.hexencode(data), 'utf8')
|
d.putValue(d.hexencode(data), 'utf8')
|
||||||
|
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
with Children(d):
|
with Children(d):
|
||||||
# Add a sub-item with the enum name and value.
|
# Add a sub-item with the enum name and value.
|
||||||
@@ -617,7 +608,6 @@ def qdump__QKeyEvent(d, value):
|
|||||||
k_cast_to_enum_value = k.cast(k_type_name)
|
k_cast_to_enum_value = k.cast(k_type_name)
|
||||||
d.putValue(k_cast_to_enum_value.displayEnum('0x%04x', bitsize=32))
|
d.putValue(k_cast_to_enum_value.displayEnum('0x%04x', bitsize=32))
|
||||||
d.putType(k_type_name)
|
d.putType(k_type_name)
|
||||||
d.putNumChild(0)
|
|
||||||
|
|
||||||
# Show the rest of the class fields as usual.
|
# Show the rest of the class fields as usual.
|
||||||
d.putFields(value, dumpBase=True)
|
d.putFields(value, dumpBase=True)
|
||||||
@@ -677,7 +667,7 @@ def qdump__QFile(d, value):
|
|||||||
vtable, privAddress = value.split('pp')
|
vtable, privAddress = value.split('pp')
|
||||||
fileNameAddress = privAddress + offset
|
fileNameAddress = privAddress + offset
|
||||||
d.putStringValue(fileNameAddress)
|
d.putStringValue(fileNameAddress)
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
with Children(d):
|
with Children(d):
|
||||||
d.putCallItem('exists', 'bool', value, 'exists')
|
d.putCallItem('exists', 'bool', value, 'exists')
|
||||||
@@ -695,7 +685,7 @@ def qdump__QFileInfo(d, value):
|
|||||||
# return
|
# return
|
||||||
filePathAddress = privAddress + d.ptrSize()
|
filePathAddress = privAddress + d.ptrSize()
|
||||||
d.putStringValue(filePathAddress)
|
d.putStringValue(filePathAddress)
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
ns = d.qtNamespace()
|
ns = d.qtNamespace()
|
||||||
with Children(d):
|
with Children(d):
|
||||||
@@ -730,12 +720,11 @@ def qdump__QFileInfo(d, value):
|
|||||||
with SubItem(d, 'permissions'):
|
with SubItem(d, 'permissions'):
|
||||||
d.putSpecialValue('notcallable')
|
d.putSpecialValue('notcallable')
|
||||||
d.putType(ns + 'QFile::Permissions')
|
d.putType(ns + 'QFile::Permissions')
|
||||||
d.putNumChild(0)
|
|
||||||
else:
|
else:
|
||||||
with SubItem(d, 'permissions'):
|
with SubItem(d, 'permissions'):
|
||||||
d.putEmptyValue()
|
d.putEmptyValue()
|
||||||
d.putType(ns + 'QFile::Permissions')
|
d.putType(ns + 'QFile::Permissions')
|
||||||
d.putNumChild(10)
|
d.putExpandable()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
with Children(d, 10):
|
with Children(d, 10):
|
||||||
perms = perms['i']
|
perms = perms['i']
|
||||||
@@ -775,7 +764,6 @@ def qdump__QFileInfo(d, value):
|
|||||||
def qdump__QFixed(d, value):
|
def qdump__QFixed(d, value):
|
||||||
v = value.split('i')[0]
|
v = value.split('i')[0]
|
||||||
d.putValue('%s/64 = %s' % (v, v / 64.0))
|
d.putValue('%s/64 = %s' % (v, v / 64.0))
|
||||||
d.putNumChild(0)
|
|
||||||
|
|
||||||
|
|
||||||
def qform__QFiniteStack():
|
def qform__QFiniteStack():
|
||||||
@@ -794,7 +782,6 @@ def qdump__QFlags(d, value):
|
|||||||
enumType = value.type[0]
|
enumType = value.type[0]
|
||||||
v = i.cast(enumType.name)
|
v = i.cast(enumType.name)
|
||||||
d.putValue(v.displayEnum('0x%04x', bitsize=32))
|
d.putValue(v.displayEnum('0x%04x', bitsize=32))
|
||||||
d.putNumChild(0)
|
|
||||||
|
|
||||||
|
|
||||||
def qform__QHash():
|
def qform__QHash():
|
||||||
@@ -874,7 +861,7 @@ def qHashIteratorHelper(d, value):
|
|||||||
hashType = d.lookupType(hashTypeName)
|
hashType = d.lookupType(hashTypeName)
|
||||||
keyType = hashType[0]
|
keyType = hashType[0]
|
||||||
valueType = hashType[1]
|
valueType = hashType[1]
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
d.putEmptyValue()
|
d.putEmptyValue()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
with Children(d):
|
with Children(d):
|
||||||
@@ -955,7 +942,7 @@ def qdump__QHostAddress(d, value):
|
|||||||
else:
|
else:
|
||||||
d.putValue('<unspecified protocol %s>' % protocol)
|
d.putValue('<unspecified protocol %s>' % protocol)
|
||||||
|
|
||||||
d.putNumChild(4)
|
d.putExpandable()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
with Children(d):
|
with Children(d):
|
||||||
if mayNeedParse:
|
if mayNeedParse:
|
||||||
@@ -1047,7 +1034,7 @@ def qdump__QImage(d, value):
|
|||||||
bits, iformat) = d.split('iiiii@dppi', imageData)
|
bits, iformat) = d.split('iiiii@dppi', imageData)
|
||||||
|
|
||||||
d.putValue('(%dx%d)' % (width, height))
|
d.putValue('(%dx%d)' % (width, height))
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
with Children(d):
|
with Children(d):
|
||||||
d.putIntItem('width', width)
|
d.putIntItem('width', width)
|
||||||
@@ -1056,7 +1043,6 @@ def qdump__QImage(d, value):
|
|||||||
d.putIntItem('format', iformat)
|
d.putIntItem('format', iformat)
|
||||||
with SubItem(d, 'data'):
|
with SubItem(d, 'data'):
|
||||||
d.putValue('0x%x' % bits)
|
d.putValue('0x%x' % bits)
|
||||||
d.putNumChild(0)
|
|
||||||
d.putType('void *')
|
d.putType('void *')
|
||||||
|
|
||||||
displayFormat = d.currentItemFormat()
|
displayFormat = d.currentItemFormat()
|
||||||
@@ -1123,7 +1109,7 @@ def qdump__QLocale(d, value):
|
|||||||
d.putStringValue(d.call('const char *', value, 'name'))
|
d.putStringValue(d.call('const char *', value, 'name'))
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
with Children(d):
|
with Children(d):
|
||||||
prefix = ns + 'QLocale::'
|
prefix = ns + 'QLocale::'
|
||||||
@@ -1148,7 +1134,7 @@ def qdump__QLocale(d, value):
|
|||||||
|
|
||||||
def qdump__QMapNode(d, value):
|
def qdump__QMapNode(d, value):
|
||||||
d.putEmptyValue()
|
d.putEmptyValue()
|
||||||
d.putNumChild(2)
|
d.putExpandable()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
with Children(d):
|
with Children(d):
|
||||||
d.putSubItem('key', value['key'])
|
d.putSubItem('key', value['key'])
|
||||||
@@ -1253,7 +1239,7 @@ def qdump__QMetaClassInfo(d, value):
|
|||||||
|
|
||||||
def qdump__QMetaObject(d, value):
|
def qdump__QMetaObject(d, value):
|
||||||
d.putEmptyValue()
|
d.putEmptyValue()
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
with Children(d):
|
with Children(d):
|
||||||
d.putQObjectGutsHelper(0, 0, -1, value.address(), 'QMetaObject')
|
d.putQObjectGutsHelper(0, 0, -1, value.address(), 'QMetaObject')
|
||||||
@@ -1262,7 +1248,7 @@ def qdump__QMetaObject(d, value):
|
|||||||
|
|
||||||
if False:
|
if False:
|
||||||
def qdump__QObjectPrivate__ConnectionList(d, value):
|
def qdump__QObjectPrivate__ConnectionList(d, value):
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
i = 0
|
i = 0
|
||||||
with Children(d):
|
with Children(d):
|
||||||
@@ -1333,7 +1319,7 @@ def qdump__QRegExp(d, value):
|
|||||||
privAddress = d.extractPointer(value)
|
privAddress = d.extractPointer(value)
|
||||||
(eng, pattern) = d.split('p{QString}', privAddress)
|
(eng, pattern) = d.split('p{QString}', privAddress)
|
||||||
d.putStringValue(pattern)
|
d.putStringValue(pattern)
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
with Children(d):
|
with Children(d):
|
||||||
try:
|
try:
|
||||||
@@ -1351,7 +1337,6 @@ def qdump__QRegion(d, value):
|
|||||||
regionDataPtr = d.extractPointer(value)
|
regionDataPtr = d.extractPointer(value)
|
||||||
if regionDataPtr == 0:
|
if regionDataPtr == 0:
|
||||||
d.putSpecialValue('empty')
|
d.putSpecialValue('empty')
|
||||||
d.putNumChild(0)
|
|
||||||
else:
|
else:
|
||||||
if d.qtVersion() >= 0x050400: # Padding removed in ee324e4ed
|
if d.qtVersion() >= 0x050400: # Padding removed in ee324e4ed
|
||||||
(ref, pad, rgn) = d.split('i@p', regionDataPtr)
|
(ref, pad, rgn) = d.split('i@p', regionDataPtr)
|
||||||
@@ -1385,7 +1370,6 @@ def qdump__QRegion(d, value):
|
|||||||
def qdump__QScopedPointer(d, value):
|
def qdump__QScopedPointer(d, value):
|
||||||
if value.pointer() == 0:
|
if value.pointer() == 0:
|
||||||
d.putValue('(null)')
|
d.putValue('(null)')
|
||||||
d.putNumChild(0)
|
|
||||||
else:
|
else:
|
||||||
d.putItem(value['d'])
|
d.putItem(value['d'])
|
||||||
d.putValue(d.currentValue.value, d.currentValue.encoding)
|
d.putValue(d.currentValue.value, d.currentValue.encoding)
|
||||||
@@ -1451,14 +1435,12 @@ def qdump__QSet(d, value):
|
|||||||
|
|
||||||
def qdump__QSharedData(d, value):
|
def qdump__QSharedData(d, value):
|
||||||
d.putValue('ref: %s' % value.to('i'))
|
d.putValue('ref: %s' % value.to('i'))
|
||||||
d.putNumChild(0)
|
|
||||||
|
|
||||||
|
|
||||||
def qdump__QSharedDataPointer(d, value):
|
def qdump__QSharedDataPointer(d, value):
|
||||||
d_ptr = value['d']
|
d_ptr = value['d']
|
||||||
if d_ptr.pointer() == 0:
|
if d_ptr.pointer() == 0:
|
||||||
d.putValue('(null)')
|
d.putValue('(null)')
|
||||||
d.putNumChild(0)
|
|
||||||
else:
|
else:
|
||||||
# This replaces the pointer by the pointee, making the
|
# This replaces the pointer by the pointee, making the
|
||||||
# pointer transparent.
|
# pointer transparent.
|
||||||
@@ -1499,7 +1481,7 @@ def qdump__QSizePolicy__Policy(d, value):
|
|||||||
def qdump__QSizePolicy(d, value):
|
def qdump__QSizePolicy(d, value):
|
||||||
bits = value.integer()
|
bits = value.integer()
|
||||||
d.putEmptyValue(-99)
|
d.putEmptyValue(-99)
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
with Children(d):
|
with Children(d):
|
||||||
d.putIntItem('horStretch', (bits >> 0) & 0xff)
|
d.putIntItem('horStretch', (bits >> 0) & 0xff)
|
||||||
@@ -1555,12 +1537,13 @@ def qform__QString():
|
|||||||
def qdump__QString(d, value):
|
def qdump__QString(d, value):
|
||||||
d.putStringValue(value)
|
d.putStringValue(value)
|
||||||
(data, size, alloc) = d.stringData(value)
|
(data, size, alloc) = d.stringData(value)
|
||||||
d.putNumChild(size)
|
|
||||||
displayFormat = d.currentItemFormat()
|
displayFormat = d.currentItemFormat()
|
||||||
if displayFormat == DisplayFormat.Separate:
|
if displayFormat == DisplayFormat.Separate:
|
||||||
d.putDisplay('utf16:separate', d.encodeString(value, limit=100000))
|
d.putDisplay('utf16:separate', d.encodeString(value, limit=100000))
|
||||||
if d.isExpanded():
|
if (size > 0):
|
||||||
d.putArrayData(data, size, d.createType('QChar'))
|
d.putExpandable()
|
||||||
|
if d.isExpanded():
|
||||||
|
d.putArrayData(data, size, d.createType('QChar'))
|
||||||
|
|
||||||
|
|
||||||
def qdump__QStaticStringData(d, value):
|
def qdump__QStaticStringData(d, value):
|
||||||
@@ -1582,7 +1565,6 @@ def qdump__QStringData(d, value):
|
|||||||
elided, shown = d.computeLimit(size, d.displayStringLimit)
|
elided, shown = d.computeLimit(size, d.displayStringLimit)
|
||||||
data = d.readMemory(value.address() + offset, shown * 2)
|
data = d.readMemory(value.address() + offset, shown * 2)
|
||||||
d.putValue(data, 'utf16', elided=elided)
|
d.putValue(data, 'utf16', elided=elided)
|
||||||
d.putNumChild(1)
|
|
||||||
d.putPlainChildren(value)
|
d.putPlainChildren(value)
|
||||||
|
|
||||||
|
|
||||||
@@ -1600,7 +1582,6 @@ def qdump__QStringRef(d, value):
|
|||||||
(stringptr, pos, size) = value.split('pii')
|
(stringptr, pos, size) = value.split('pii')
|
||||||
if stringptr == 0:
|
if stringptr == 0:
|
||||||
d.putValue('(null)')
|
d.putValue('(null)')
|
||||||
d.putNumChild(0)
|
|
||||||
return
|
return
|
||||||
(data, ssize, alloc) = d.stringData(d.createValue(stringptr, 'QString'))
|
(data, ssize, alloc) = d.stringData(d.createValue(stringptr, 'QString'))
|
||||||
d.putValue(d.readMemory(data + 2 * pos, 2 * size), 'utf16')
|
d.putValue(d.readMemory(data + 2 * pos, 2 * size), 'utf16')
|
||||||
@@ -1619,7 +1600,7 @@ def qdump__QTemporaryFile(d, value):
|
|||||||
def qdump__QTextCodec(d, value):
|
def qdump__QTextCodec(d, value):
|
||||||
name = d.call('const char *', value, 'name')
|
name = d.call('const char *', value, 'name')
|
||||||
d.putValue(d.encodeByteArray(name, limit=100), 6)
|
d.putValue(d.encodeByteArray(name, limit=100), 6)
|
||||||
d.putNumChild(2)
|
d.putExpandable()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
with Children(d):
|
with Children(d):
|
||||||
d.putCallItem('name', '@QByteArray', value, 'name')
|
d.putCallItem('name', '@QByteArray', value, 'name')
|
||||||
@@ -1631,11 +1612,10 @@ def qdump__QTextCursor(d, value):
|
|||||||
privAddress = d.extractPointer(value)
|
privAddress = d.extractPointer(value)
|
||||||
if privAddress == 0:
|
if privAddress == 0:
|
||||||
d.putValue('(invalid)')
|
d.putValue('(invalid)')
|
||||||
d.putNumChild(0)
|
|
||||||
else:
|
else:
|
||||||
positionAddress = privAddress + 2 * d.ptrSize() + 8
|
positionAddress = privAddress + 2 * d.ptrSize() + 8
|
||||||
d.putValue(d.extractInt(positionAddress))
|
d.putValue(d.extractInt(positionAddress))
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
with Children(d):
|
with Children(d):
|
||||||
positionAddress = privAddress + 2 * d.ptrSize() + 8
|
positionAddress = privAddress + 2 * d.ptrSize() + 8
|
||||||
@@ -1647,7 +1627,7 @@ def qdump__QTextCursor(d, value):
|
|||||||
|
|
||||||
def qdump__QTextDocument(d, value):
|
def qdump__QTextDocument(d, value):
|
||||||
d.putEmptyValue()
|
d.putEmptyValue()
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
with Children(d):
|
with Children(d):
|
||||||
d.putCallItem('blockCount', 'int', value, 'blockCount')
|
d.putCallItem('blockCount', 'int', value, 'blockCount')
|
||||||
@@ -1667,7 +1647,6 @@ def qdump__QUrl(d, value):
|
|||||||
if not privAddress:
|
if not privAddress:
|
||||||
# d == 0 if QUrl was constructed with default constructor
|
# d == 0 if QUrl was constructed with default constructor
|
||||||
d.putValue('<invalid>')
|
d.putValue('<invalid>')
|
||||||
d.putNumChild(0)
|
|
||||||
return
|
return
|
||||||
|
|
||||||
if d.qtVersion() < 0x050000:
|
if d.qtVersion() < 0x050000:
|
||||||
@@ -1704,7 +1683,7 @@ def qdump__QUrl(d, value):
|
|||||||
if displayFormat == DisplayFormat.Separate:
|
if displayFormat == DisplayFormat.Separate:
|
||||||
d.putDisplay('utf16:separate', url)
|
d.putDisplay('utf16:separate', url)
|
||||||
|
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
with Children(d):
|
with Children(d):
|
||||||
d.putIntItem('port', port)
|
d.putIntItem('port', port)
|
||||||
@@ -1721,7 +1700,6 @@ def qdump__QUrl(d, value):
|
|||||||
def qdump__QUuid(d, value):
|
def qdump__QUuid(d, value):
|
||||||
r = value.split('IHHBBBBBBBB')
|
r = value.split('IHHBBBBBBBB')
|
||||||
d.putValue('{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}' % r)
|
d.putValue('{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}' % r)
|
||||||
d.putNumChild(1)
|
|
||||||
d.putPlainChildren(value)
|
d.putPlainChildren(value)
|
||||||
|
|
||||||
|
|
||||||
@@ -1908,13 +1886,11 @@ def qdump__QVariant(d, value):
|
|||||||
# Well-known simple type.
|
# Well-known simple type.
|
||||||
if variantType <= 6:
|
if variantType <= 6:
|
||||||
qdumpHelper_QVariants_A[variantType](d, value)
|
qdumpHelper_QVariants_A[variantType](d, value)
|
||||||
d.putNumChild(0)
|
|
||||||
return None
|
return None
|
||||||
|
|
||||||
# Extended Core type (Qt 5)
|
# Extended Core type (Qt 5)
|
||||||
if variantType >= 31 and variantType <= 38 and d.qtVersion() >= 0x050000:
|
if variantType >= 31 and variantType <= 38 and d.qtVersion() >= 0x050000:
|
||||||
qdumpHelper_QVariants_D[variantType - 31](d, value)
|
qdumpHelper_QVariants_D[variantType - 31](d, value)
|
||||||
d.putNumChild(0)
|
|
||||||
return None
|
return None
|
||||||
|
|
||||||
# Extended Core type (Qt 4)
|
# Extended Core type (Qt 4)
|
||||||
@@ -1929,7 +1905,6 @@ def qdump__QVariant(d, value):
|
|||||||
p = d.extractPointer(value)
|
p = d.extractPointer(value)
|
||||||
blob = d.extractUInt64(p)
|
blob = d.extractUInt64(p)
|
||||||
qdumpHelper_QVariants_D[variantType - 128](d, blob)
|
qdumpHelper_QVariants_D[variantType - 128](d, blob)
|
||||||
d.putNumChild(0)
|
|
||||||
return None
|
return None
|
||||||
|
|
||||||
#DumperBase.warn('TYPE: %s' % variantType)
|
#DumperBase.warn('TYPE: %s' % variantType)
|
||||||
@@ -1970,7 +1945,7 @@ def qdump__QVariant(d, value):
|
|||||||
ns = d.qtNamespace()
|
ns = d.qtNamespace()
|
||||||
d.putEmptyValue(-99)
|
d.putEmptyValue(-99)
|
||||||
d.putType('%sQVariant (%s)' % (ns, variantType))
|
d.putType('%sQVariant (%s)' % (ns, variantType))
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
innerType = None
|
innerType = None
|
||||||
with Children(d):
|
with Children(d):
|
||||||
@@ -2068,11 +2043,9 @@ def qdump_QWeakPointerHelper(d, value, isWeak, innerType=None):
|
|||||||
(val, d_ptr) = value.split('pp')
|
(val, d_ptr) = value.split('pp')
|
||||||
if d_ptr == 0 and val == 0:
|
if d_ptr == 0 and val == 0:
|
||||||
d.putValue('(null)')
|
d.putValue('(null)')
|
||||||
d.putNumChild(0)
|
|
||||||
return
|
return
|
||||||
if d_ptr == 0 or val == 0:
|
if d_ptr == 0 or val == 0:
|
||||||
d.putValue('<invalid>')
|
d.putValue('<invalid>')
|
||||||
d.putNumChild(0)
|
|
||||||
return
|
return
|
||||||
|
|
||||||
if d.qtVersion() >= 0x050000:
|
if d.qtVersion() >= 0x050000:
|
||||||
@@ -2094,7 +2067,7 @@ def qdump_QWeakPointerHelper(d, value, isWeak, innerType=None):
|
|||||||
|
|
||||||
def qdump__QXmlAttributes__Attribute(d, value):
|
def qdump__QXmlAttributes__Attribute(d, value):
|
||||||
d.putEmptyValue()
|
d.putEmptyValue()
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
with Children(d):
|
with Children(d):
|
||||||
(qname, uri, localname, val) = value.split('{QString}' * 4)
|
(qname, uri, localname, val) = value.split('{QString}' * 4)
|
||||||
@@ -2354,7 +2327,6 @@ def QV4_putObjectValue(d, objectPtr):
|
|||||||
with SubItem(d, '[raw]'):
|
with SubItem(d, '[raw]'):
|
||||||
d.putValue('[0x%x]' % objectPtr)
|
d.putValue('[0x%x]' % objectPtr)
|
||||||
d.putType(' ')
|
d.putType(' ')
|
||||||
d.putNumChild(0)
|
|
||||||
d.putIntItem('inlineMemberOffset', inlineMemberOffset)
|
d.putIntItem('inlineMemberOffset', inlineMemberOffset)
|
||||||
d.putIntItem('inlineMemberSize', inlineMemberSize)
|
d.putIntItem('inlineMemberSize', inlineMemberSize)
|
||||||
d.putIntItem('internalClass', internalClass)
|
d.putIntItem('internalClass', internalClass)
|
||||||
@@ -2419,19 +2391,15 @@ def qdump_32__QV4__Value(d, value):
|
|||||||
with SubItem(d, '[raw]'):
|
with SubItem(d, '[raw]'):
|
||||||
d.putValue('[0x%x]' % v)
|
d.putValue('[0x%x]' % v)
|
||||||
d.putType(' ')
|
d.putType(' ')
|
||||||
d.putNumChild(0)
|
|
||||||
with SubItem(d, '[val]'):
|
with SubItem(d, '[val]'):
|
||||||
d.putValue('[0x%x]' % val)
|
d.putValue('[0x%x]' % val)
|
||||||
d.putType(' ')
|
d.putType(' ')
|
||||||
d.putNumChild(0)
|
|
||||||
with SubItem(d, '[tag]'):
|
with SubItem(d, '[tag]'):
|
||||||
d.putValue('[0x%x]' % tag)
|
d.putValue('[0x%x]' % tag)
|
||||||
d.putType(' ')
|
d.putType(' ')
|
||||||
d.putNumChild(0)
|
|
||||||
#with SubItem(d, '[vtable]'):
|
#with SubItem(d, '[vtable]'):
|
||||||
# d.putItem(d.createValue(vtable, ns + 'QV4::VTable'))
|
# d.putItem(d.createValue(vtable, ns + 'QV4::VTable'))
|
||||||
# d.putType(' ');
|
# d.putType(' ');
|
||||||
# d.putNumChild(0)
|
|
||||||
d.putFields(value)
|
d.putFields(value)
|
||||||
|
|
||||||
|
|
||||||
@@ -2533,7 +2501,7 @@ def qdump_64__QV4__Value(d, value):
|
|||||||
#QV4_putObjectValue(d, d.extractPointer(value) + 2 * d.ptrSize())
|
#QV4_putObjectValue(d, d.extractPointer(value) + 2 * d.ptrSize())
|
||||||
arrayVTable = d.symbolAddress(ns + 'QV4::ArrayObject::static_vtbl')
|
arrayVTable = d.symbolAddress(ns + 'QV4::ArrayObject::static_vtbl')
|
||||||
#DumperBase.warn('ARRAY VTABLE: 0x%x' % arrayVTable)
|
#DumperBase.warn('ARRAY VTABLE: 0x%x' % arrayVTable)
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
d.putItem(d.createValue(d.extractPointer(value) + 2 * d.ptrSize(), ns + 'QV4::Object'))
|
d.putItem(d.createValue(d.extractPointer(value) + 2 * d.ptrSize(), ns + 'QV4::Object'))
|
||||||
return
|
return
|
||||||
elif flags & 8: # isFunction
|
elif flags & 8: # isFunction
|
||||||
@@ -2548,11 +2516,9 @@ def qdump_64__QV4__Value(d, value):
|
|||||||
with SubItem(d, '[raw]'):
|
with SubItem(d, '[raw]'):
|
||||||
d.putValue('[0x%x]' % v)
|
d.putValue('[0x%x]' % v)
|
||||||
d.putType(' ')
|
d.putType(' ')
|
||||||
d.putNumChild(0)
|
|
||||||
with SubItem(d, '[vtable]'):
|
with SubItem(d, '[vtable]'):
|
||||||
d.putItem(d.createValue(vtable, ns + 'QV4::VTable'))
|
d.putItem(d.createValue(vtable, ns + 'QV4::VTable'))
|
||||||
d.putType(' ')
|
d.putType(' ')
|
||||||
d.putNumChild(0)
|
|
||||||
d.putFields(value)
|
d.putFields(value)
|
||||||
|
|
||||||
|
|
||||||
@@ -2611,7 +2577,6 @@ def qdump_32__QJSValue(d, value):
|
|||||||
with SubItem(d, '[raw]'):
|
with SubItem(d, '[raw]'):
|
||||||
d.putValue('[0x%x]' % dd)
|
d.putValue('[0x%x]' % dd)
|
||||||
d.putType(' ')
|
d.putType(' ')
|
||||||
d.putNumChild(0)
|
|
||||||
d.putFields(value)
|
d.putFields(value)
|
||||||
|
|
||||||
|
|
||||||
@@ -2634,7 +2599,6 @@ def qdump_64__QJSValue(d, value):
|
|||||||
with SubItem(d, '[raw]'):
|
with SubItem(d, '[raw]'):
|
||||||
d.putValue('[0x%x]' % dd)
|
d.putValue('[0x%x]' % dd)
|
||||||
d.putType(' ')
|
d.putType(' ')
|
||||||
d.putNumChild(0)
|
|
||||||
d.putFields(value)
|
d.putFields(value)
|
||||||
|
|
||||||
|
|
||||||
@@ -2682,7 +2646,7 @@ def jstagAsString(tag):
|
|||||||
|
|
||||||
def qdump__QTJSC__JSValue(d, value):
|
def qdump__QTJSC__JSValue(d, value):
|
||||||
d.putEmptyValue()
|
d.putEmptyValue()
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
with Children(d):
|
with Children(d):
|
||||||
tag = value['u']['asBits']['tag']
|
tag = value['u']['asBits']['tag']
|
||||||
@@ -2691,7 +2655,6 @@ def qdump__QTJSC__JSValue(d, value):
|
|||||||
with SubItem(d, 'tag'):
|
with SubItem(d, 'tag'):
|
||||||
d.putValue(jstagAsString(int(tag)))
|
d.putValue(jstagAsString(int(tag)))
|
||||||
d.putNoType()
|
d.putNoType()
|
||||||
d.putNumChild(0)
|
|
||||||
|
|
||||||
d.putIntItem('payload', int(payload))
|
d.putIntItem('payload', int(payload))
|
||||||
d.putFields(value['u'])
|
d.putFields(value['u'])
|
||||||
@@ -2726,12 +2689,10 @@ def qdump__QScriptValue(d, value):
|
|||||||
ns = d.qtNamespace()
|
ns = d.qtNamespace()
|
||||||
if dd.pointer() == 0:
|
if dd.pointer() == 0:
|
||||||
d.putValue('(invalid)')
|
d.putValue('(invalid)')
|
||||||
d.putNumChild(0)
|
|
||||||
return
|
return
|
||||||
if int(dd['type']) == 1: # Number
|
if int(dd['type']) == 1: # Number
|
||||||
d.putValue(dd['numberValue'])
|
d.putValue(dd['numberValue'])
|
||||||
d.putType('%sQScriptValue (Number)' % ns)
|
d.putType('%sQScriptValue (Number)' % ns)
|
||||||
d.putNumChild(0)
|
|
||||||
return
|
return
|
||||||
if int(dd['type']) == 2: # String
|
if int(dd['type']) == 2: # String
|
||||||
d.putStringValue(dd['stringValue'])
|
d.putStringValue(dd['stringValue'])
|
||||||
@@ -2792,7 +2753,7 @@ def qdump__QScriptValue(d, value):
|
|||||||
|
|
||||||
# This is a 'native' JSCore type for e.g. QDateTime.
|
# This is a 'native' JSCore type for e.g. QDateTime.
|
||||||
d.putValue('<native>')
|
d.putValue('<native>')
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
with Children(d):
|
with Children(d):
|
||||||
d.putSubItem('jscValue', dd['jscValue'])
|
d.putSubItem('jscValue', dd['jscValue'])
|
||||||
@@ -2818,7 +2779,6 @@ def qdump__QJsonPrivate__qle_bitfield(d, value):
|
|||||||
length = value.type[1]
|
length = value.type[1]
|
||||||
val = value['val'].integer()
|
val = value['val'].integer()
|
||||||
d.putValue('%s' % qdumpHelper_qle_cutBits(val, offset, length))
|
d.putValue('%s' % qdumpHelper_qle_cutBits(val, offset, length))
|
||||||
d.putNumChild(0)
|
|
||||||
|
|
||||||
|
|
||||||
def qdumpHelper_qle_signedbitfield_value(d, value):
|
def qdumpHelper_qle_signedbitfield_value(d, value):
|
||||||
@@ -2833,12 +2793,10 @@ def qdumpHelper_qle_signedbitfield_value(d, value):
|
|||||||
|
|
||||||
def qdump__QJsonPrivate__qle_signedbitfield(d, value):
|
def qdump__QJsonPrivate__qle_signedbitfield(d, value):
|
||||||
d.putValue('%s' % qdumpHelper_qle_signedbitfield_value(d, value))
|
d.putValue('%s' % qdumpHelper_qle_signedbitfield_value(d, value))
|
||||||
d.putNumChild(0)
|
|
||||||
|
|
||||||
|
|
||||||
def qdump__QJsonPrivate__q_littleendian(d, value):
|
def qdump__QJsonPrivate__q_littleendian(d, value):
|
||||||
d.putValue('%s' % value['val'].integer())
|
d.putValue('%s' % value['val'].integer())
|
||||||
d.putNumChild(0)
|
|
||||||
|
|
||||||
|
|
||||||
def qdumpHelper_QJsonValue(d, data, base, pv):
|
def qdumpHelper_QJsonValue(d, data, base, pv):
|
||||||
@@ -2863,12 +2821,10 @@ def qdumpHelper_QJsonValue(d, data, base, pv):
|
|||||||
if t == 0:
|
if t == 0:
|
||||||
d.putType('QJsonValue (Null)')
|
d.putType('QJsonValue (Null)')
|
||||||
d.putValue('Null')
|
d.putValue('Null')
|
||||||
d.putNumChild(0)
|
|
||||||
return
|
return
|
||||||
if t == 1:
|
if t == 1:
|
||||||
d.putType('QJsonValue (Bool)')
|
d.putType('QJsonValue (Bool)')
|
||||||
d.putValue('true' if v else 'false')
|
d.putValue('true' if v else 'false')
|
||||||
d.putNumChild(0)
|
|
||||||
return
|
return
|
||||||
if t == 2:
|
if t == 2:
|
||||||
d.putType('QJsonValue (Number)')
|
d.putType('QJsonValue (Number)')
|
||||||
@@ -2881,7 +2837,6 @@ def qdumpHelper_QJsonValue(d, data, base, pv):
|
|||||||
data = base + v
|
data = base + v
|
||||||
f = d.split('d', data)[0]
|
f = d.split('d', data)[0]
|
||||||
d.putValue(str(f))
|
d.putValue(str(f))
|
||||||
d.putNumChild(0)
|
|
||||||
return
|
return
|
||||||
if t == 3:
|
if t == 3:
|
||||||
d.putType('QJsonValue (String)')
|
d.putType('QJsonValue (String)')
|
||||||
@@ -2892,7 +2847,6 @@ def qdumpHelper_QJsonValue(d, data, base, pv):
|
|||||||
else:
|
else:
|
||||||
length = d.extractUInt(data)
|
length = d.extractUInt(data)
|
||||||
d.putValue(d.readMemory(data + 4, length * 2), 'utf16')
|
d.putValue(d.readMemory(data + 4, length * 2), 'utf16')
|
||||||
d.putNumChild(0)
|
|
||||||
return
|
return
|
||||||
if t == 4:
|
if t == 4:
|
||||||
d.putType('QJsonValue (Array)')
|
d.putType('QJsonValue (Array)')
|
||||||
@@ -2901,7 +2855,6 @@ def qdumpHelper_QJsonValue(d, data, base, pv):
|
|||||||
if t == 5:
|
if t == 5:
|
||||||
d.putType('QJsonValue (Object)')
|
d.putType('QJsonValue (Object)')
|
||||||
qdumpHelper_QJsonObject(d, data, base + v)
|
qdumpHelper_QJsonObject(d, data, base + v)
|
||||||
d.putNumChild(0)
|
|
||||||
|
|
||||||
|
|
||||||
def qdumpHelper_QJsonArray(d, data, array):
|
def qdumpHelper_QJsonArray(d, data, array):
|
||||||
@@ -2972,24 +2925,20 @@ def qdump__QJsonValue(d, value):
|
|||||||
if t == 0:
|
if t == 0:
|
||||||
d.putType('QJsonValue (Null)')
|
d.putType('QJsonValue (Null)')
|
||||||
d.putValue('Null')
|
d.putValue('Null')
|
||||||
d.putNumChild(0)
|
|
||||||
return
|
return
|
||||||
if t == 1:
|
if t == 1:
|
||||||
d.putType('QJsonValue (Bool)')
|
d.putType('QJsonValue (Bool)')
|
||||||
v = value.split('b')
|
v = value.split('b')
|
||||||
d.putValue('true' if v else 'false')
|
d.putValue('true' if v else 'false')
|
||||||
d.putNumChild(0)
|
|
||||||
return
|
return
|
||||||
if t == 2:
|
if t == 2:
|
||||||
d.putType('QJsonValue (Number)')
|
d.putType('QJsonValue (Number)')
|
||||||
d.putValue(value.split('d'))
|
d.putValue(value.split('d'))
|
||||||
d.putNumChild(0)
|
|
||||||
return
|
return
|
||||||
if t == 3:
|
if t == 3:
|
||||||
d.putType('QJsonValue (String)')
|
d.putType('QJsonValue (String)')
|
||||||
elided, base = d.encodeStringHelper(data, d.displayStringLimit)
|
elided, base = d.encodeStringHelper(data, d.displayStringLimit)
|
||||||
d.putValue(base, 'utf16', elided=elided)
|
d.putValue(base, 'utf16', elided=elided)
|
||||||
d.putNumChild(0)
|
|
||||||
return
|
return
|
||||||
if t == 4:
|
if t == 4:
|
||||||
d.putType('QJsonValue (Array)')
|
d.putType('QJsonValue (Array)')
|
||||||
@@ -3001,7 +2950,6 @@ def qdump__QJsonValue(d, value):
|
|||||||
return
|
return
|
||||||
d.putType('QJsonValue (Undefined)')
|
d.putType('QJsonValue (Undefined)')
|
||||||
d.putEmptyValue()
|
d.putEmptyValue()
|
||||||
d.putNumChild(0)
|
|
||||||
|
|
||||||
|
|
||||||
def qdump__QJsonArray(d, value):
|
def qdump__QJsonArray(d, value):
|
||||||
@@ -3041,7 +2989,6 @@ def qdump__QSqlResultPrivate(d, value):
|
|||||||
|
|
||||||
def qdump__QSqlField(d, value):
|
def qdump__QSqlField(d, value):
|
||||||
val, dptr = value.split('{QVariant}p')
|
val, dptr = value.split('{QVariant}p')
|
||||||
d.putNumChild(1)
|
|
||||||
qdump__QVariant(d, val)
|
qdump__QVariant(d, val)
|
||||||
d.putBetterType(d.currentType.value.replace('QVariant', 'QSqlField'))
|
d.putBetterType(d.currentType.value.replace('QVariant', 'QSqlField'))
|
||||||
d.putPlainChildren(value)
|
d.putPlainChildren(value)
|
||||||
@@ -3051,7 +2998,6 @@ def qdump__QLazilyAllocated(d, value):
|
|||||||
p = value.extractPointer()
|
p = value.extractPointer()
|
||||||
if p == 0:
|
if p == 0:
|
||||||
d.putValue("(null)")
|
d.putValue("(null)")
|
||||||
d.putNumChild(0)
|
|
||||||
else:
|
else:
|
||||||
d.putItem(d.createValue(p, value.type[0]))
|
d.putItem(d.createValue(p, value.type[0]))
|
||||||
d.putBetterType(value.type)
|
d.putBetterType(value.type)
|
||||||
@@ -3075,5 +3021,4 @@ def qdump__qfloat16(d, value):
|
|||||||
else:
|
else:
|
||||||
res = (-1)**sign * (1 + 1. * fraction / 2**10) * 2**(exp - 15)
|
res = (-1)**sign * (1 + 1. * fraction / 2**10) * 2**(exp - 15)
|
||||||
d.putValue(res)
|
d.putValue(res)
|
||||||
#d.putNumChild(1)
|
|
||||||
d.putPlainChildren(value)
|
d.putPlainChildren(value)
|
||||||
|
@@ -63,7 +63,7 @@ def qdump__std__complex(d, value):
|
|||||||
innerType = value.type[0]
|
innerType = value.type[0]
|
||||||
(real, imag) = value.split('{%s}{%s}' % (innerType.name, innerType.name))
|
(real, imag) = value.split('{%s}{%s}' % (innerType.name, innerType.name))
|
||||||
d.putValue("(%s, %s)" % (real.display(), imag.display()))
|
d.putValue("(%s, %s)" % (real.display(), imag.display()))
|
||||||
d.putNumChild(2)
|
d.putExpandable()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
with Children(d, 2, childType=innerType):
|
with Children(d, 2, childType=innerType):
|
||||||
d.putSubItem("real", real)
|
d.putSubItem("real", real)
|
||||||
@@ -375,7 +375,7 @@ def qdumpHelper__std__tree__iterator(d, value, isSet=False):
|
|||||||
keyType = treeType[0]
|
keyType = treeType[0]
|
||||||
valueType = treeType[1]
|
valueType = treeType[1]
|
||||||
node = value["_M_node"].dereference() # std::_Rb_tree_node_base
|
node = value["_M_node"].dereference() # std::_Rb_tree_node_base
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
d.putEmptyValue()
|
d.putEmptyValue()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
with Children(d):
|
with Children(d):
|
||||||
@@ -389,7 +389,7 @@ def qdumpHelper__std__tree__iterator(d, value, isSet=False):
|
|||||||
d.putSubItem("first", key)
|
d.putSubItem("first", key)
|
||||||
d.putSubItem("second", value)
|
d.putSubItem("second", value)
|
||||||
with SubItem(d, "[node]"):
|
with SubItem(d, "[node]"):
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
d.putEmptyValue()
|
d.putEmptyValue()
|
||||||
d.putType(" ")
|
d.putType(" ")
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
@@ -434,7 +434,7 @@ def qdump__std____cxx1998__set(d, value):
|
|||||||
|
|
||||||
|
|
||||||
def qdumpHelper__std__tree__iterator_MSVC(d, value):
|
def qdumpHelper__std__tree__iterator_MSVC(d, value):
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
d.putEmptyValue()
|
d.putEmptyValue()
|
||||||
if d.isExpanded():
|
if d.isExpanded():
|
||||||
with Children(d):
|
with Children(d):
|
||||||
@@ -643,7 +643,7 @@ def qdump__std____1__map__const_iterator(d, value):
|
|||||||
|
|
||||||
def qdump__std____1__set__iterator(d, value):
|
def qdump__std____1__set__iterator(d, value):
|
||||||
d.putEmptyValue()
|
d.putEmptyValue()
|
||||||
d.putNumChild(1)
|
d.putExpandable()
|
||||||
if value.type.name.endswith("::iterator"):
|
if value.type.name.endswith("::iterator"):
|
||||||
treeTypeName = value.type.name[:-len("::iterator")]
|
treeTypeName = value.type.name[:-len("::iterator")]
|
||||||
elif value.type.name.endswith("::const_iterator"):
|
elif value.type.name.endswith("::const_iterator"):
|
||||||
@@ -784,7 +784,6 @@ def qdump__std__shared_ptr(d, value):
|
|||||||
|
|
||||||
if i.pointer() == 0:
|
if i.pointer() == 0:
|
||||||
d.putValue("(null)")
|
d.putValue("(null)")
|
||||||
d.putNumChild(0)
|
|
||||||
else:
|
else:
|
||||||
d.putItem(i.dereference())
|
d.putItem(i.dereference())
|
||||||
d.putBetterType(value.type)
|
d.putBetterType(value.type)
|
||||||
@@ -794,7 +793,6 @@ def qdump__std____1__shared_ptr(d, value):
|
|||||||
i = value["__ptr_"]
|
i = value["__ptr_"]
|
||||||
if i.pointer() == 0:
|
if i.pointer() == 0:
|
||||||
d.putValue("(null)")
|
d.putValue("(null)")
|
||||||
d.putNumChild(0)
|
|
||||||
else:
|
else:
|
||||||
d.putItem(i.dereference())
|
d.putItem(i.dereference())
|
||||||
d.putBetterType(value.type)
|
d.putBetterType(value.type)
|
||||||
@@ -807,7 +805,6 @@ def qdump__std__unique_ptr(d, value):
|
|||||||
_, p = value.split("pp"); # For custom deleters.
|
_, p = value.split("pp"); # For custom deleters.
|
||||||
if p == 0:
|
if p == 0:
|
||||||
d.putValue("(null)")
|
d.putValue("(null)")
|
||||||
d.putNumChild(0)
|
|
||||||
else:
|
else:
|
||||||
d.putItem(d.createValue(p, value.type[0]))
|
d.putItem(d.createValue(p, value.type[0]))
|
||||||
d.putBetterType(value.type)
|
d.putBetterType(value.type)
|
||||||
@@ -1087,7 +1084,6 @@ def qdumpHelper__std__vector(d, value, isLibCpp):
|
|||||||
with SubItem(d, i):
|
with SubItem(d, i):
|
||||||
d.putValue((int(d.extractPointer(q)) >> (i % 8)) & 1)
|
d.putValue((int(d.extractPointer(q)) >> (i % 8)) & 1)
|
||||||
d.putType("bool")
|
d.putType("bool")
|
||||||
d.putNumChild(0)
|
|
||||||
else:
|
else:
|
||||||
d.putPlotData(start, size, innerType)
|
d.putPlotData(start, size, innerType)
|
||||||
|
|
||||||
@@ -1117,7 +1113,6 @@ def qdumpHelper__std__vector__QNX(d, value):
|
|||||||
with SubItem(d, i):
|
with SubItem(d, i):
|
||||||
d.putValue((d.extractPointer(q) >> (i % 8)) & 1)
|
d.putValue((d.extractPointer(q) >> (i % 8)) & 1)
|
||||||
d.putType("bool")
|
d.putType("bool")
|
||||||
d.putNumChild(0)
|
|
||||||
else:
|
else:
|
||||||
d.putPlotData(start, size, innerType)
|
d.putPlotData(start, size, innerType)
|
||||||
|
|
||||||
@@ -1280,17 +1275,14 @@ def qdump____gnu_cxx__hash_set(d, value):
|
|||||||
|
|
||||||
|
|
||||||
def qdump__uint8_t(d, value):
|
def qdump__uint8_t(d, value):
|
||||||
d.putNumChild(0)
|
|
||||||
d.putValue(value.integer())
|
d.putValue(value.integer())
|
||||||
|
|
||||||
|
|
||||||
def qdump__int8_t(d, value):
|
def qdump__int8_t(d, value):
|
||||||
d.putNumChild(0)
|
|
||||||
d.putValue(value.integer())
|
d.putValue(value.integer())
|
||||||
|
|
||||||
|
|
||||||
def qdump__std__byte(d, value):
|
def qdump__std__byte(d, value):
|
||||||
d.putNumChild(0)
|
|
||||||
d.putValue(value.integer())
|
d.putValue(value.integer())
|
||||||
|
|
||||||
|
|
||||||
@@ -1302,7 +1294,6 @@ def qdump__std__optional(d, value):
|
|||||||
d.putBetterType(value.type)
|
d.putBetterType(value.type)
|
||||||
else:
|
else:
|
||||||
d.putSpecialValue("uninitialized")
|
d.putSpecialValue("uninitialized")
|
||||||
d.putNumChild(0)
|
|
||||||
|
|
||||||
|
|
||||||
def qdump__std__experimental__optional(d, value):
|
def qdump__std__experimental__optional(d, value):
|
||||||
|
Reference in New Issue
Block a user