Line | Source | Count |
1 | | - |
2 | | - |
3 | | - |
4 | | - |
5 | | - |
6 | | - |
7 | | - |
8 | | - |
9 | | - |
10 | | - |
11 | | - |
12 | | - |
13 | | - |
14 | | - |
15 | | - |
16 | | - |
17 | | - |
18 | | - |
19 | | - |
20 | | - |
21 | | - |
22 | | - |
23 | | - |
24 | | - |
25 | | - |
26 | | - |
27 | | - |
28 | | - |
29 | | - |
30 | | - |
31 | | - |
32 | | - |
33 | | - |
34 | | - |
35 | #include "qobject.h" | - |
36 | #include "qobject_p.h" | - |
37 | #include "qmetaobject_p.h" | - |
38 | | - |
39 | #include "qabstracteventdispatcher.h" | - |
40 | #include "qabstracteventdispatcher_p.h" | - |
41 | #include "qcoreapplication.h" | - |
42 | #include "qcoreapplication_p.h" | - |
43 | #include "qvariant.h" | - |
44 | #include "qmetaobject.h" | - |
45 | #include <qregexp.h> | - |
46 | #include <qregularexpression.h> | - |
47 | #include <qthread.h> | - |
48 | #include <private/qthread_p.h> | - |
49 | #include <qdebug.h> | - |
50 | #include <qpair.h> | - |
51 | #include <qvarlengtharray.h> | - |
52 | #include <qset.h> | - |
53 | #include <qsemaphore.h> | - |
54 | #include <qsharedpointer.h> | - |
55 | | - |
56 | #include <private/qorderedmutexlocker_p.h> | - |
57 | #include <private/qhooks_p.h> | - |
58 | | - |
59 | #include <new> | - |
60 | | - |
61 | #include <ctype.h> | - |
62 | #include <limits.h> | - |
63 | | - |
64 | QT_BEGIN_NAMESPACE | - |
65 | | - |
66 | static int DIRECT_CONNECTION_ONLY = 0; | - |
67 | | - |
68 | | - |
69 | QDynamicMetaObjectData::~QDynamicMetaObjectData() | - |
70 | { | - |
71 | } | - |
72 | | - |
73 | QAbstractDynamicMetaObject::~QAbstractDynamicMetaObject() | - |
74 | { | - |
75 | } | - |
76 | | - |
77 | | - |
78 | struct QSlotObjectBaseDeleter { | - |
79 | static void cleanup(QtPrivate::QSlotObjectBase *slot) { | - |
80 | if (slot) slot->destroyIfLastRef();executed 24500 times by 175 tests: slot->destroyIfLastRef(); Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
TRUE | evaluated 24500 times by 175 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| FALSE | evaluated 24498 times by 175 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
|
| 24498-24500 |
81 | }executed 48998 times by 175 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| 48998 |
82 | }; | - |
83 | static int *queuedConnectionTypes(const QList<QByteArray> &typeNames) | - |
84 | { | - |
85 | int *types = new int [typeNames.count() + 1]; | - |
86 | Q_CHECK_PTR(types); never executed: qBadAlloc(); TRUE | never evaluated | FALSE | evaluated 4172 times by 390 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
|
| 0-4172 |
87 | for (int i = 0; i < typeNames.count(); ++i) {TRUE | evaluated 3282 times by 163 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
| FALSE | evaluated 4172 times by 390 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
|
| 3282-4172 |
88 | const QByteArray typeName = typeNames.at(i); | - |
89 | if (typeName.endsWith('*'))TRUE | evaluated 704 times by 158 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- ...
| FALSE | evaluated 2578 times by 163 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
|
| 704-2578 |
90 | types[i] = QMetaType::VoidStar;executed 704 times by 158 tests: types[i] = QMetaType::VoidStar; Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- ...
| 704 |
91 | else | - |
92 | types[i] = QMetaType::type(typeName);executed 2578 times by 163 tests: types[i] = QMetaType::type(typeName); Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
| 2578 |
93 | | - |
94 | if (!types[i]) {TRUE | never evaluated | FALSE | evaluated 3282 times by 163 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
|
| 0-3282 |
95 | qWarning("QObject::connect: Cannot queue arguments of type '%s'\n" | - |
96 | "(Make sure '%s' is registered using qRegisterMetaType().)", | - |
97 | typeName.constData(), typeName.constData()); | - |
98 | delete [] types; | - |
99 | return 0; never executed: return 0; | 0 |
100 | } | - |
101 | }executed 3282 times by 163 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
| 3282 |
102 | types[typeNames.count()] = 0; | - |
103 | | - |
104 | return types;executed 4172 times by 390 tests: return types; Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
| 4172 |
105 | } | - |
106 | | - |
107 | static int *queuedConnectionTypes(const QArgumentType *argumentTypes, int argc) | - |
108 | { | - |
109 | QScopedArrayPointer<int> types(new int [argc + 1]); | - |
110 | for (int i = 0; i < argc; ++i) {TRUE | evaluated 52627 times by 181 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- ...
| FALSE | evaluated 32425 times by 184 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- ...
|
| 32425-52627 |
111 | const QArgumentType &type = argumentTypes[i]; | - |
112 | if (type.type())TRUE | evaluated 52606 times by 181 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- ...
| FALSE | evaluated 21 times by 7 testsEvaluated by:- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QNetworkReply
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
|
| 21-52606 |
113 | types[i] = type.type();executed 52606 times by 181 tests: types[i] = type.type(); Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- ...
| 52606 |
114 | else if (type.name().endsWith('*'))TRUE | evaluated 21 times by 7 testsEvaluated by:- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QNetworkReply
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
| FALSE | never evaluated |
| 0-21 |
115 | types[i] = QMetaType::VoidStar;executed 21 times by 7 tests: types[i] = QMetaType::VoidStar; Executed by:- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QNetworkReply
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
| 21 |
116 | else | - |
117 | types[i] = QMetaType::type(type.name()); never executed: types[i] = QMetaType::type(type.name()); | 0 |
118 | | - |
119 | if (!types[i]) {TRUE | never evaluated | FALSE | evaluated 52627 times by 181 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- ...
|
| 0-52627 |
120 | qWarning("QObject::connect: Cannot queue arguments of type '%s'\n" | - |
121 | "(Make sure '%s' is registered using qRegisterMetaType().)", | - |
122 | type.name().constData(), type.name().constData()); | - |
123 | return 0; never executed: return 0; | 0 |
124 | } | - |
125 | }executed 52627 times by 181 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- ...
| 52627 |
126 | types[argc] = 0; | - |
127 | | - |
128 | return types.take();executed 32425 times by 184 tests: return types.take(); Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- ...
| 32425 |
129 | } | - |
130 | | - |
131 | static QBasicMutex _q_ObjectMutexPool[131]; | - |
132 | | - |
133 | | - |
134 | | - |
135 | | - |
136 | | - |
137 | static inline QMutex *signalSlotLock(const QObject *o) | - |
138 | { | - |
139 | return static_cast<QMutex *>(&_q_ObjectMutexPool[executed 10752296 times by 546 tests: return static_cast<QMutex *>(&_q_ObjectMutexPool[ uint(quintptr(o)) % sizeof(_q_ObjectMutexPool)/sizeof(QBasicMutex)]); Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| 10752296 |
140 | uint(quintptr(o)) % sizeof(_q_ObjectMutexPool)/sizeof(QBasicMutex)]);executed 10752296 times by 546 tests: return static_cast<QMutex *>(&_q_ObjectMutexPool[ uint(quintptr(o)) % sizeof(_q_ObjectMutexPool)/sizeof(QBasicMutex)]); Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| 10752296 |
141 | } | - |
142 | | - |
143 | | - |
144 | extern "C" Q_CORE_EXPORT void qt_addObject(QObject *) | - |
145 | {} | - |
146 | | - |
147 | extern "C" Q_CORE_EXPORT void qt_removeObject(QObject *) | - |
148 | {} | - |
149 | | - |
150 | struct QConnectionSenderSwitcher { | - |
151 | QObject *receiver; | - |
152 | QObjectPrivate::Sender *previousSender; | - |
153 | QObjectPrivate::Sender currentSender; | - |
154 | bool switched; | - |
155 | | - |
156 | inline QConnectionSenderSwitcher() : switched(false) {}executed 8311157 times by 382 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
| 8311157 |
157 | | - |
158 | inline QConnectionSenderSwitcher(QObject *receiver, QObject *sender, int signal_absolute_id) | - |
159 | { | - |
160 | switchSender(receiver, sender, signal_absolute_id); | - |
161 | }executed 266608 times by 348 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| 266608 |
162 | | - |
163 | inline void switchSender(QObject *receiver, QObject *sender, int signal_absolute_id) | - |
164 | { | - |
165 | this->receiver = receiver; | - |
166 | currentSender.sender = sender; | - |
167 | currentSender.signal = signal_absolute_id; | - |
168 | currentSender.ref = 1; | - |
169 | previousSender = QObjectPrivate::setCurrentSender(receiver, ¤tSender); | - |
170 | switched = true; | - |
171 | }executed 8577271 times by 397 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
| 8577271 |
172 | | - |
173 | inline ~QConnectionSenderSwitcher() | - |
174 | { | - |
175 | if (switched)TRUE | evaluated 8577268 times by 397 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
| FALSE | evaluated 494 times by 27 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QCoreApplication
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QEventLoop
- tst_QFtp
- tst_QGuiApplication
- tst_QGuiEventLoop
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QObject
- tst_QProcess
- tst_QStateMachine
- tst_QTcpServer
- tst_QTcpSocket
- tst_QThread
- tst_QUdpSocket
- ...
|
| 494-8577268 |
176 | QObjectPrivate::resetCurrentSender(receiver, ¤tSender, previousSender);executed 8577268 times by 397 tests: QObjectPrivate::resetCurrentSender(receiver, ¤tSender, previousSender); Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
| 8577268 |
177 | }executed 8577762 times by 397 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
| 8577762 |
178 | private: | - |
179 | Q_DISABLE_COPY(QConnectionSenderSwitcher) | - |
180 | }; | - |
181 | | - |
182 | | - |
183 | void (*QAbstractDeclarativeData::destroyed)(QAbstractDeclarativeData *, QObject *) = 0; | - |
184 | void (*QAbstractDeclarativeData::destroyed_qml1)(QAbstractDeclarativeData *, QObject *) = 0; | - |
185 | void (*QAbstractDeclarativeData::parentChanged)(QAbstractDeclarativeData *, QObject *, QObject *) = 0; | - |
186 | void (*QAbstractDeclarativeData::signalEmitted)(QAbstractDeclarativeData *, QObject *, int, void **) = 0; | - |
187 | int (*QAbstractDeclarativeData::receivers)(QAbstractDeclarativeData *, const QObject *, int) = 0; | - |
188 | bool (*QAbstractDeclarativeData::isSignalConnected)(QAbstractDeclarativeData *, const QObject *, int) = 0; | - |
189 | void (*QAbstractDeclarativeData::setWidgetParent)(QObject *, QObject *) = 0; | - |
190 | | - |
191 | QObjectData::~QObjectData() {} | - |
192 | | - |
193 | QMetaObject *QObjectData::dynamicMetaObject() const | - |
194 | { | - |
195 | return metaObject->toDynamicMetaObject(q_ptr); never executed: return metaObject->toDynamicMetaObject(q_ptr); | 0 |
196 | } | - |
197 | | - |
198 | QObjectPrivate::QObjectPrivate(int version) | - |
199 | : threadData(0), connectionLists(0), senders(0), currentSender(0), currentChildBeingDeleted(0) | - |
200 | { | - |
201 | #ifdef QT_BUILD_INTERNAL | - |
202 | | - |
203 | | - |
204 | Q_UNUSED(version); | - |
205 | #else | - |
206 | if (version != QObjectPrivateVersion) | - |
207 | qFatal("Cannot mix incompatible Qt library (version 0x%x) with this library (version 0x%x)", | - |
208 | version, QObjectPrivateVersion); | - |
209 | #endif | - |
210 | | - |
211 | | - |
212 | q_ptr = 0; | - |
213 | parent = 0; | - |
214 | isWidget = false; | - |
215 | blockSig = false; | - |
216 | wasDeleted = false; | - |
217 | isDeletingChildren = false; | - |
218 | sendChildEvents = true; | - |
219 | receiveChildEvents = true; | - |
220 | postedEvents = 0; | - |
221 | extraData = 0; | - |
222 | connectedSignals[0] = connectedSignals[1] = 0; | - |
223 | metaObject = 0; | - |
224 | isWindow = false; | - |
225 | }executed 1940082 times by 941 tests: end of block Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- ...
| 1940082 |
226 | | - |
227 | QObjectPrivate::~QObjectPrivate() | - |
228 | { | - |
229 | if (extraData && !extraData->runningTimers.isEmpty()) {TRUE | evaluated 104278 times by 423 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| FALSE | evaluated 1831979 times by 929 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAsn1Element
- ...
|
TRUE | evaluated 2520 times by 153 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDateTimeEdit
- tst_QDoubleSpinBox
- tst_QEventLoop
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusEvent
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- tst_QGraphicsLinearLayout
- tst_QGraphicsPixmapItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- ...
| FALSE | evaluated 101758 times by 418 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
|
| 2520-1831979 |
230 | if (Q_LIKELY(threadData->thread == QThread::currentThread())) {TRUE | evaluated 2514 times by 152 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDateTimeEdit
- tst_QDoubleSpinBox
- tst_QEventLoop
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusEvent
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- tst_QGraphicsLinearLayout
- tst_QGraphicsPixmapItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- ...
| FALSE | evaluated 6 times by 2 tests |
| 6-2514 |
231 | | - |
232 | if (threadData->eventDispatcher.load())TRUE | evaluated 2404 times by 63 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDateTimeEdit
- tst_QDoubleSpinBox
- tst_QEventLoop
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusEvent
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- tst_QGraphicsLinearLayout
- tst_QGraphicsPixmapItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- ...
| FALSE | evaluated 110 times by 90 testsEvaluated by:- tst_QApplication
- tst_languagechange - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qaccessibility - unknown status
- tst_qapplication - unknown status
- tst_qboxlayout - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- tst_qcolordialog - unknown status
- tst_qcolumnview - unknown status
- tst_qcombobox - unknown status
- tst_qcommandlinkbutton - unknown status
- tst_qcompleter - unknown status
- tst_qdatastream - unknown status
- tst_qdialog - unknown status
- tst_qdialogbuttonbox - unknown status
- tst_qdockwidget - unknown status
- tst_qdoublespinbox - unknown status
- tst_qerrormessage - unknown status
- tst_qfiledialog - unknown status
- tst_qfiledialog2 - unknown status
- tst_qfileiconprovider - unknown status
- tst_qfilesystemmodel - unknown status
- ...
|
| 110-2404 |
233 | threadData->eventDispatcher.load()->unregisterTimers(q_ptr);executed 2404 times by 63 tests: threadData->eventDispatcher.load()->unregisterTimers(q_ptr); Executed by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDateTimeEdit
- tst_QDoubleSpinBox
- tst_QEventLoop
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusEvent
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- tst_QGraphicsLinearLayout
- tst_QGraphicsPixmapItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- ...
| 2404 |
234 | | - |
235 | | - |
236 | for (int i = 0; i < extraData->runningTimers.size(); ++i)TRUE | evaluated 2572 times by 152 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDateTimeEdit
- tst_QDoubleSpinBox
- tst_QEventLoop
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusEvent
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- tst_QGraphicsLinearLayout
- tst_QGraphicsPixmapItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- ...
| FALSE | evaluated 2514 times by 152 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDateTimeEdit
- tst_QDoubleSpinBox
- tst_QEventLoop
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusEvent
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- tst_QGraphicsLinearLayout
- tst_QGraphicsPixmapItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- ...
|
| 2514-2572 |
237 | QAbstractEventDispatcherPrivate::releaseTimerId(extraData->runningTimers.at(i));executed 2572 times by 152 tests: QAbstractEventDispatcherPrivate::releaseTimerId(extraData->runningTimers.at(i)); Executed by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDateTimeEdit
- tst_QDoubleSpinBox
- tst_QEventLoop
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusEvent
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- tst_QGraphicsLinearLayout
- tst_QGraphicsPixmapItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- ...
| 2572 |
238 | } else {executed 2514 times by 152 tests: end of block Executed by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDateTimeEdit
- tst_QDoubleSpinBox
- tst_QEventLoop
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusEvent
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- tst_QGraphicsLinearLayout
- tst_QGraphicsPixmapItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- ...
| 2514 |
239 | qWarning("QObject::~QObject: Timers cannot be stopped from another thread"); | - |
240 | }executed 6 times by 2 tests: end of block | 6 |
241 | } | - |
242 | | - |
243 | if (postedEvents)TRUE | evaluated 11268 times by 382 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QBuffer
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- ...
| FALSE | evaluated 1924989 times by 929 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAsn1Element
- ...
|
| 11268-1924989 |
244 | QCoreApplication::removePostedEvents(q_ptr, 0);executed 11268 times by 382 tests: QCoreApplication::removePostedEvents(q_ptr, 0); Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QBuffer
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- ...
| 11268 |
245 | | - |
246 | threadData->deref(); | - |
247 | | - |
248 | if (metaObject) metaObject->objectDestroyed(q_ptr); never executed: metaObject->objectDestroyed(q_ptr); TRUE | never evaluated | FALSE | evaluated 1935986 times by 929 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAsn1Element
- ...
|
| 0-1935986 |
249 | | - |
250 | #ifndef QT_NO_USERDATA | - |
251 | if (extraData)TRUE | evaluated 104278 times by 423 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| FALSE | evaluated 1831979 times by 929 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAsn1Element
- ...
|
| 104278-1831979 |
252 | qDeleteAll(extraData->userData);executed 104278 times by 423 tests: qDeleteAll(extraData->userData); Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| 104278 |
253 | #endif | - |
254 | delete extraData; | - |
255 | }executed 1935949 times by 929 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAsn1Element
- ...
| 1935949 |
256 | | - |
257 | | - |
258 | | - |
259 | | - |
260 | | - |
261 | static void computeOffsets(const QMetaObject *metaobject, int *signalOffset, int *methodOffset) | - |
262 | { | - |
263 | *signalOffset = *methodOffset = 0; | - |
264 | const QMetaObject *m = metaobject->d.superdata; | - |
265 | while (m) {TRUE | evaluated 13113 times by 127 testsEvaluated by:- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDBusServiceWatcher
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDial
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- ...
| FALSE | evaluated 209759 times by 128 testsEvaluated by:- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDBusServiceWatcher
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDial
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- ...
|
| 13113-209759 |
266 | const QMetaObjectPrivate *d = QMetaObjectPrivate::get(m); | - |
267 | *methodOffset += d->methodCount; | - |
268 | Q_ASSERT(d->revision >= 4); | - |
269 | *signalOffset += d->signalCount; | - |
270 | m = m->d.superdata; | - |
271 | }executed 13113 times by 127 tests: end of block Executed by:- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDBusServiceWatcher
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDial
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- ...
| 13113 |
272 | }executed 209759 times by 128 tests: end of block Executed by:- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDBusServiceWatcher
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDial
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- ...
| 209759 |
273 | | - |
274 | | - |
275 | | - |
276 | | - |
277 | | - |
278 | | - |
279 | | - |
280 | | - |
281 | | - |
282 | | - |
283 | | - |
284 | | - |
285 | | - |
286 | | - |
287 | | - |
288 | | - |
289 | class QObjectConnectionListVector : public QVector<QObjectPrivate::ConnectionList> | - |
290 | { | - |
291 | public: | - |
292 | bool orphaned; | - |
293 | bool dirty; | - |
294 | int inUse; | - |
295 | QObjectPrivate::ConnectionList allsignals; | - |
296 | | - |
297 | QObjectConnectionListVector() | - |
298 | : QVector<QObjectPrivate::ConnectionList>(), orphaned(false), dirty(false), inUse(0) | - |
299 | { }executed 287954 times by 276 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| 287954 |
300 | | - |
301 | QObjectPrivate::ConnectionList &operator[](int at) | - |
302 | { | - |
303 | if (at < 0)TRUE | evaluated 414626 times by 533 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
| FALSE | evaluated 3084189 times by 542 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
|
| 414626-3084189 |
304 | return allsignals;executed 414626 times by 533 tests: return allsignals; Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
| 414626 |
305 | return QVector<QObjectPrivate::ConnectionList>::operator[](at);executed 3084189 times by 542 tests: return QVector<QObjectPrivate::ConnectionList>::operator[](at); Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| 3084189 |
306 | } | - |
307 | }; | - |
308 | | - |
309 | | - |
310 | bool QObjectPrivate::isSender(const QObject *receiver, const char *signal) const | - |
311 | { | - |
312 | Q_Q(const QObject); | - |
313 | int signal_index = signalIndex(signal); | - |
314 | if (signal_index < 0)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
315 | return false; never executed: return false; | 0 |
316 | QMutexLocker locker(signalSlotLock(q)); | - |
317 | if (connectionLists) {TRUE | never evaluated | FALSE | never evaluated |
| 0 |
318 | if (signal_index < connectionLists->count()) {TRUE | never evaluated | FALSE | never evaluated |
| 0 |
319 | const QObjectPrivate::Connection *c = | - |
320 | connectionLists->at(signal_index).first; | - |
321 | | - |
322 | while (c) {TRUE | never evaluated | FALSE | never evaluated |
| 0 |
323 | if (c->receiver == receiver)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
324 | return true; never executed: return true; | 0 |
325 | c = c->nextConnectionList; | - |
326 | } never executed: end of block | 0 |
327 | } never executed: end of block | 0 |
328 | } never executed: end of block | 0 |
329 | return false; never executed: return false; | 0 |
330 | } | - |
331 | | - |
332 | | - |
333 | QObjectList QObjectPrivate::receiverList(const char *signal) const | - |
334 | { | - |
335 | Q_Q(const QObject); | - |
336 | QObjectList returnValue; | - |
337 | int signal_index = signalIndex(signal); | - |
338 | if (signal_index < 0)TRUE | never evaluated | FALSE | evaluated 1 time by 1 test |
| 0-1 |
339 | return returnValue; never executed: return returnValue; | 0 |
340 | QMutexLocker locker(signalSlotLock(q)); | - |
341 | if (connectionLists) {TRUE | evaluated 1 time by 1 test | FALSE | never evaluated |
| 0-1 |
342 | if (signal_index < connectionLists->count()) {TRUE | never evaluated | FALSE | evaluated 1 time by 1 test |
| 0-1 |
343 | const QObjectPrivate::Connection *c = connectionLists->at(signal_index).first; | - |
344 | | - |
345 | while (c) {TRUE | never evaluated | FALSE | never evaluated |
| 0 |
346 | if (c->receiver)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
347 | returnValue << c->receiver; never executed: returnValue << c->receiver; | 0 |
348 | c = c->nextConnectionList; | - |
349 | } never executed: end of block | 0 |
350 | } never executed: end of block | 0 |
351 | }executed 1 time by 1 test: end of block | 1 |
352 | return returnValue;executed 1 time by 1 test: return returnValue; | 1 |
353 | } | - |
354 | | - |
355 | | - |
356 | QObjectList QObjectPrivate::senderList() const | - |
357 | { | - |
358 | QObjectList returnValue; | - |
359 | QMutexLocker locker(signalSlotLock(q_func())); | - |
360 | for (Connection *c = senders; c; c = c->next)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
361 | returnValue << c->sender; never executed: returnValue << c->sender; | 0 |
362 | return returnValue; never executed: return returnValue; | 0 |
363 | } | - |
364 | | - |
365 | | - |
366 | | - |
367 | | - |
368 | | - |
369 | | - |
370 | | - |
371 | | - |
372 | | - |
373 | | - |
374 | | - |
375 | void QObjectPrivate::addConnection(int signal, Connection *c) | - |
376 | { | - |
377 | Q_ASSERT(c->sender == q_ptr); | - |
378 | if (!connectionLists)TRUE | evaluated 287954 times by 276 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| FALSE | evaluated 556406 times by 225 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
|
| 287954-556406 |
379 | connectionLists = new QObjectConnectionListVector();executed 287954 times by 276 tests: connectionLists = new QObjectConnectionListVector(); Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| 287954 |
380 | if (signal >= connectionLists->count())TRUE | evaluated 414612 times by 276 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| FALSE | evaluated 429748 times by 211 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- ...
|
| 414612-429748 |
381 | connectionLists->resize(signal + 1);executed 414612 times by 276 tests: connectionLists->resize(signal + 1); Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| 414612 |
382 | | - |
383 | ConnectionList &connectionList = (*connectionLists)[signal]; | - |
384 | if (connectionList.last) {TRUE | evaluated 319038 times by 178 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| FALSE | evaluated 525322 times by 276 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
|
| 319038-525322 |
385 | connectionList.last->nextConnectionList = c; | - |
386 | } else {executed 319038 times by 178 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| 319038 |
387 | connectionList.first = c; | - |
388 | }executed 525322 times by 276 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| 525322 |
389 | connectionList.last = c; | - |
390 | | - |
391 | cleanConnectionLists(); | - |
392 | | - |
393 | c->prev = &(QObjectPrivate::get(c->receiver)->senders); | - |
394 | c->next = *c->prev; | - |
395 | *c->prev = c; | - |
396 | if (c->next)TRUE | evaluated 477240 times by 233 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| FALSE | evaluated 367120 times by 274 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
|
| 367120-477240 |
397 | c->next->prev = &c->next;executed 477240 times by 233 tests: c->next->prev = &c->next; Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| 477240 |
398 | | - |
399 | if (signal < 0) {TRUE | evaluated 360 times by 11 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QObject
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
| FALSE | evaluated 844000 times by 276 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
|
| 360-844000 |
400 | connectedSignals[0] = connectedSignals[1] = ~0; | - |
401 | } else if (signal < (int)sizeof(connectedSignals) * 8) {executed 360 times by 11 tests: end of block Executed by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QObject
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
TRUE | evaluated 843998 times by 276 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| FALSE | evaluated 2 times by 1 test |
| 2-843998 |
402 | connectedSignals[signal >> 5] |= (1 << (signal & 0x1f)); | - |
403 | }executed 843998 times by 276 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| 843998 |
404 | }executed 844360 times by 276 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| 844360 |
405 | | - |
406 | void QObjectPrivate::cleanConnectionLists() | - |
407 | { | - |
408 | if (connectionLists->dirty && !connectionLists->inUse) {TRUE | evaluated 126054 times by 121 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDoubleSpinBox
- ...
| FALSE | evaluated 718306 times by 276 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
|
TRUE | evaluated 125789 times by 121 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDoubleSpinBox
- ...
| FALSE | evaluated 265 times by 9 testsEvaluated by:- tst_QColumnView
- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QNetworkReply
- tst_QObject
- tst_QSidebar
- tst_QStateMachine
- tst_languageChange
|
| 265-718306 |
409 | | - |
410 | for (int signal = -1; signal < connectionLists->count(); ++signal) {TRUE | evaluated 581966 times by 121 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDoubleSpinBox
- ...
| FALSE | evaluated 125789 times by 121 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDoubleSpinBox
- ...
|
| 125789-581966 |
411 | QObjectPrivate::ConnectionList &connectionList = | - |
412 | (*connectionLists)[signal]; | - |
413 | | - |
414 | | - |
415 | | - |
416 | | - |
417 | QObjectPrivate::Connection *last = 0; | - |
418 | | - |
419 | QObjectPrivate::Connection **prev = &connectionList.first; | - |
420 | QObjectPrivate::Connection *c = *prev; | - |
421 | while (c) {TRUE | evaluated 382612 times by 121 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDoubleSpinBox
- ...
| FALSE | evaluated 581966 times by 121 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDoubleSpinBox
- ...
|
| 382612-581966 |
422 | if (c->receiver) {TRUE | evaluated 223896 times by 121 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDoubleSpinBox
- ...
| FALSE | evaluated 158716 times by 121 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDoubleSpinBox
- ...
|
| 158716-223896 |
423 | last = c; | - |
424 | prev = &c->nextConnectionList; | - |
425 | c = *prev; | - |
426 | } else {executed 223896 times by 121 tests: end of block Executed by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDoubleSpinBox
- ...
| 223896 |
427 | QObjectPrivate::Connection *next = c->nextConnectionList; | - |
428 | *prev = next; | - |
429 | c->deref(); | - |
430 | c = next; | - |
431 | }executed 158716 times by 121 tests: end of block Executed by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDoubleSpinBox
- ...
| 158716 |
432 | } | - |
433 | | - |
434 | | - |
435 | | - |
436 | connectionList.last = last; | - |
437 | }executed 581966 times by 121 tests: end of block Executed by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDoubleSpinBox
- ...
| 581966 |
438 | connectionLists->dirty = false; | - |
439 | }executed 125789 times by 121 tests: end of block Executed by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDoubleSpinBox
- ...
| 125789 |
440 | }executed 844360 times by 276 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| 844360 |
441 | | - |
442 | | - |
443 | | - |
444 | | - |
445 | QMetaCallEvent::QMetaCallEvent(ushort method_offset, ushort method_relative, QObjectPrivate::StaticMetaCallFunction callFunction, | - |
446 | const QObject *sender, int signalId, | - |
447 | int nargs, int *types, void **args, QSemaphore *semaphore) | - |
448 | : QEvent(MetaCall), slotObj_(0), sender_(sender), signalId_(signalId), | - |
449 | nargs_(nargs), types_(types), args_(args), semaphore_(semaphore), | - |
450 | callFunction_(callFunction), method_offset_(method_offset), method_relative_(method_relative) | - |
451 | {executed 276752 times by 444 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
}executed 276752 times by 444 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| 276752 |
452 | | - |
453 | | - |
454 | | - |
455 | | - |
456 | QMetaCallEvent::QMetaCallEvent(QtPrivate::QSlotObjectBase *slotO, const QObject *sender, int signalId, | - |
457 | int nargs, int *types, void **args, QSemaphore *semaphore) | - |
458 | : QEvent(MetaCall), slotObj_(slotO), sender_(sender), signalId_(signalId), | - |
459 | nargs_(nargs), types_(types), args_(args), semaphore_(semaphore), | - |
460 | callFunction_(0), method_offset_(0), method_relative_(ushort(-1)) | - |
461 | { | - |
462 | if (slotObj_)TRUE | evaluated 9842 times by 322 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| FALSE | never evaluated |
| 0-9842 |
463 | slotObj_->ref();executed 9842 times by 322 tests: slotObj_->ref(); Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| 9842 |
464 | }executed 9842 times by 322 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| 9842 |
465 | | - |
466 | | - |
467 | | - |
468 | | - |
469 | QMetaCallEvent::~QMetaCallEvent() | - |
470 | { | - |
471 | if (types_) {TRUE | evaluated 280677 times by 447 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 5906 times by 316 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- ...
|
| 5906-280677 |
472 | for (int i = 0; i < nargs_; ++i) {TRUE | evaluated 402580 times by 447 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 280677 times by 447 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
| 280677-402580 |
473 | if (types_[i] && args_[i])TRUE | evaluated 121903 times by 185 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
| FALSE | evaluated 280677 times by 447 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
TRUE | evaluated 121903 times by 185 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
| FALSE | never evaluated |
| 0-280677 |
474 | QMetaType::destroy(types_[i], args_[i]);executed 121903 times by 185 tests: QMetaType::destroy(types_[i], args_[i]); Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
| 121903 |
475 | }executed 402580 times by 447 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| 402580 |
476 | free(types_); | - |
477 | free(args_); | - |
478 | }executed 280677 times by 447 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| 280677 |
479 | #ifndef QT_NO_THREAD | - |
480 | if (semaphore_)TRUE | evaluated 4497 times by 316 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- ...
| FALSE | evaluated 282086 times by 447 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
| 4497-282086 |
481 | semaphore_->release();executed 4497 times by 316 tests: semaphore_->release(); Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- ...
| 4497 |
482 | #endif | - |
483 | if (slotObj_)TRUE | evaluated 9813 times by 319 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| FALSE | evaluated 276771 times by 445 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
| 9813-276771 |
484 | slotObj_->destroyIfLastRef();executed 9813 times by 319 tests: slotObj_->destroyIfLastRef(); Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| 9813 |
485 | }executed 286584 times by 451 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| 286584 |
486 | | - |
487 | | - |
488 | | - |
489 | | - |
490 | void QMetaCallEvent::placeMetaCall(QObject *object) | - |
491 | { | - |
492 | if (slotObj_) {TRUE | evaluated 9356 times by 310 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| FALSE | evaluated 255925 times by 346 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
| 9356-255925 |
493 | slotObj_->call(object, args_); | - |
494 | } else if (callFunction_ && method_offset_ <= object->metaObject()->methodOffset()) {executed 9355 times by 310 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
TRUE | evaluated 255918 times by 346 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 7 times by 1 test |
TRUE | evaluated 255917 times by 346 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 1 time by 1 test |
| 1-255918 |
495 | callFunction_(object, QMetaObject::InvokeMetaMethod, method_relative_, args_); | - |
496 | } else {executed 255917 times by 346 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| 255917 |
497 | QMetaObject::metacall(object, QMetaObject::InvokeMetaMethod, method_offset_ + method_relative_, args_); | - |
498 | }executed 8 times by 2 tests: end of block Executed by:- tst_QObject
- tst_QStateMachine
| 8 |
499 | } | - |
500 | | - |
501 | | - |
502 | | - |
503 | | - |
504 | | - |
505 | | - |
506 | | - |
507 | | - |
508 | | - |
509 | | - |
510 | | - |
511 | | - |
512 | | - |
513 | | - |
514 | | - |
515 | | - |
516 | | - |
517 | | - |
518 | | - |
519 | | - |
520 | | - |
521 | | - |
522 | | - |
523 | | - |
524 | | - |
525 | | - |
526 | | - |
527 | | - |
528 | | - |
529 | | - |
530 | | - |
531 | | - |
532 | | - |
533 | | - |
534 | | - |
535 | | - |
536 | | - |
537 | | - |
538 | | - |
539 | | - |
540 | | - |
541 | | - |
542 | | - |
543 | | - |
544 | | - |
545 | | - |
546 | | - |
547 | | - |
548 | | - |
549 | | - |
550 | | - |
551 | | - |
552 | | - |
553 | | - |
554 | | - |
555 | | - |
556 | | - |
557 | | - |
558 | | - |
559 | | - |
560 | | - |
561 | | - |
562 | | - |
563 | | - |
564 | | - |
565 | | - |
566 | | - |
567 | | - |
568 | | - |
569 | | - |
570 | | - |
571 | | - |
572 | | - |
573 | | - |
574 | | - |
575 | | - |
576 | | - |
577 | | - |
578 | | - |
579 | | - |
580 | | - |
581 | | - |
582 | | - |
583 | | - |
584 | | - |
585 | | - |
586 | | - |
587 | | - |
588 | | - |
589 | | - |
590 | | - |
591 | | - |
592 | | - |
593 | | - |
594 | | - |
595 | | - |
596 | | - |
597 | | - |
598 | | - |
599 | | - |
600 | | - |
601 | | - |
602 | | - |
603 | | - |
604 | | - |
605 | | - |
606 | | - |
607 | | - |
608 | | - |
609 | | - |
610 | | - |
611 | | - |
612 | | - |
613 | | - |
614 | | - |
615 | | - |
616 | | - |
617 | | - |
618 | | - |
619 | | - |
620 | | - |
621 | | - |
622 | | - |
623 | | - |
624 | | - |
625 | | - |
626 | | - |
627 | | - |
628 | | - |
629 | | - |
630 | | - |
631 | | - |
632 | | - |
633 | | - |
634 | | - |
635 | | - |
636 | | - |
637 | | - |
638 | | - |
639 | | - |
640 | | - |
641 | | - |
642 | | - |
643 | | - |
644 | | - |
645 | | - |
646 | | - |
647 | | - |
648 | | - |
649 | | - |
650 | | - |
651 | | - |
652 | | - |
653 | | - |
654 | | - |
655 | | - |
656 | | - |
657 | | - |
658 | | - |
659 | | - |
660 | | - |
661 | | - |
662 | | - |
663 | | - |
664 | | - |
665 | | - |
666 | | - |
667 | | - |
668 | | - |
669 | | - |
670 | | - |
671 | | - |
672 | | - |
673 | | - |
674 | | - |
675 | | - |
676 | | - |
677 | | - |
678 | | - |
679 | | - |
680 | | - |
681 | | - |
682 | | - |
683 | | - |
684 | | - |
685 | | - |
686 | | - |
687 | | - |
688 | | - |
689 | | - |
690 | | - |
691 | | - |
692 | | - |
693 | | - |
694 | | - |
695 | | - |
696 | | - |
697 | | - |
698 | | - |
699 | | - |
700 | | - |
701 | | - |
702 | | - |
703 | | - |
704 | | - |
705 | | - |
706 | | - |
707 | | - |
708 | | - |
709 | | - |
710 | | - |
711 | | - |
712 | | - |
713 | | - |
714 | | - |
715 | | - |
716 | | - |
717 | | - |
718 | | - |
719 | | - |
720 | | - |
721 | | - |
722 | | - |
723 | | - |
724 | | - |
725 | | - |
726 | | - |
727 | | - |
728 | | - |
729 | | - |
730 | | - |
731 | | - |
732 | | - |
733 | | - |
734 | | - |
735 | | - |
736 | | - |
737 | | - |
738 | | - |
739 | | - |
740 | | - |
741 | | - |
742 | | - |
743 | | - |
744 | | - |
745 | | - |
746 | | - |
747 | | - |
748 | | - |
749 | | - |
750 | | - |
751 | | - |
752 | | - |
753 | | - |
754 | | - |
755 | | - |
756 | | - |
757 | | - |
758 | | - |
759 | | - |
760 | | - |
761 | void *qt_find_obj_child(QObject *parent, const char *type, const QString &name) | - |
762 | { | - |
763 | QObjectList list = parent->children(); | - |
764 | if (list.size() == 0) return 0; never executed: return 0; TRUE | never evaluated | FALSE | never evaluated |
| 0 |
765 | for (int i = 0; i < list.size(); ++i) {TRUE | never evaluated | FALSE | never evaluated |
| 0 |
766 | QObject *obj = list.at(i); | - |
767 | if (name == obj->objectName() && obj->inherits(type))TRUE | never evaluated | FALSE | never evaluated |
TRUE | never evaluated | FALSE | never evaluated |
| 0 |
768 | return obj; never executed: return obj; | 0 |
769 | } never executed: end of block | 0 |
770 | return 0; never executed: return 0; | 0 |
771 | } | - |
772 | | - |
773 | | - |
774 | | - |
775 | | - |
776 | | - |
777 | | - |
778 | | - |
779 | static bool check_parent_thread(QObject *parent, | - |
780 | QThreadData *parentThreadData, | - |
781 | QThreadData *currentThreadData) | - |
782 | { | - |
783 | if (parent && parentThreadData != currentThreadData) {TRUE | evaluated 100640 times by 247 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- ...
| FALSE | never evaluated |
TRUE | never evaluated | FALSE | evaluated 100640 times by 247 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- ...
|
| 0-100640 |
784 | QThread *parentThread = parentThreadData->thread; | - |
785 | QThread *currentThread = currentThreadData->thread; | - |
786 | qWarning("QObject: Cannot create children for a parent that is in a different thread.\n" | - |
787 | "(Parent is %s(%p), parent's thread is %s(%p), current thread is %s(%p)", | - |
788 | parent->metaObject()->className(), | - |
789 | parent, | - |
790 | parentThread ? parentThread->metaObject()->className() : "QThread", | - |
791 | parentThread, | - |
792 | currentThread ? currentThread->metaObject()->className() : "QThread", | - |
793 | currentThread); | - |
794 | return false; never executed: return false; | 0 |
795 | } | - |
796 | return true;executed 100640 times by 247 tests: return true; Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- ...
| 100640 |
797 | } | - |
798 | | - |
799 | | - |
800 | | - |
801 | | - |
802 | | - |
803 | | - |
804 | | - |
805 | | - |
806 | | - |
807 | | - |
808 | | - |
809 | | - |
810 | | - |
811 | | - |
812 | | - |
813 | | - |
814 | QObject::QObject(QObject *parent) | - |
815 | : d_ptr(new QObjectPrivate) | - |
816 | { | - |
817 | Q_D(QObject); | - |
818 | d_ptr->q_ptr = this; | - |
819 | d->threadData = (parent && !parent->thread()) ? parent->d_func()->threadData : QThreadData::current();TRUE | evaluated 27393 times by 169 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- ...
| FALSE | evaluated 330681 times by 322 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QBuffer
- tst_QButtonGroup
- ...
|
TRUE | evaluated 1 time by 1 test | FALSE | evaluated 27392 times by 169 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- ...
|
| 1-330681 |
820 | d->threadData->ref(); | - |
821 | if (parent) {TRUE | evaluated 27393 times by 169 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- ...
| FALSE | evaluated 330681 times by 322 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QBuffer
- tst_QButtonGroup
- ...
|
| 27393-330681 |
822 | QT_TRY { | - |
823 | if (!check_parent_thread(parent, parent ? parent->d_func()->threadData : 0, d->threadData))TRUE | never evaluated | FALSE | evaluated 27393 times by 169 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- ...
|
| 0-27393 |
824 | parent = 0; never executed: parent = 0; | 0 |
825 | setParent(parent); | - |
826 | } QT_CATCH(...) {executed 27393 times by 169 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- ...
| 27393 |
827 | d->threadData->deref(); | - |
828 | QT_RETHROW; never executed: throw; | 0 |
829 | } | - |
830 | } | - |
831 | qt_addObject(this); | - |
832 | if (Q_UNLIKELY(qtHookData[QHooks::AddQObject]))TRUE | evaluated 1 time by 1 test | FALSE | evaluated 357918 times by 322 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QBuffer
- tst_QButtonGroup
- ...
|
| 1-357918 |
833 | reinterpret_cast<QHooks::AddQObjectCallback>(qtHookData[QHooks::AddQObject])(this);executed 1 time by 1 test: reinterpret_cast<QHooks::AddQObjectCallback>(qtHookData[QHooks::AddQObject])(this); | 1 |
834 | }executed 358074 times by 323 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QBuffer
- tst_QButtonGroup
- ...
| 358074 |
835 | | - |
836 | | - |
837 | | - |
838 | | - |
839 | QObject::QObject(QObjectPrivate &dd, QObject *parent) | - |
840 | : d_ptr(&dd) | - |
841 | { | - |
842 | Q_D(QObject); | - |
843 | d_ptr->q_ptr = this; | - |
844 | d->threadData = (parent && !parent->thread()) ? parent->d_func()->threadData : QThreadData::current();TRUE | evaluated 73247 times by 237 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| FALSE | evaluated 1508761 times by 939 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- ...
|
TRUE | evaluated 14 times by 1 test | FALSE | evaluated 73233 times by 237 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
|
| 14-1508761 |
845 | d->threadData->ref(); | - |
846 | if (parent) {TRUE | evaluated 73247 times by 237 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| FALSE | evaluated 1508761 times by 939 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- ...
|
| 73247-1508761 |
847 | QT_TRY { | - |
848 | if (!check_parent_thread(parent, parent ? parent->d_func()->threadData : 0, d->threadData))TRUE | never evaluated | FALSE | evaluated 73247 times by 237 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
|
| 0-73247 |
849 | parent = 0; never executed: parent = 0; | 0 |
850 | if (d->isWidget) {TRUE | never evaluated | FALSE | evaluated 73247 times by 237 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
|
| 0-73247 |
851 | if (parent) {TRUE | never evaluated | FALSE | never evaluated |
| 0 |
852 | d->parent = parent; | - |
853 | d->parent->d_func()->children.append(this); | - |
854 | } never executed: end of block | 0 |
855 | | - |
856 | } else { never executed: end of block | 0 |
857 | setParent(parent); | - |
858 | }executed 73247 times by 237 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| 73247 |
859 | } QT_CATCH(...) { | - |
860 | d->threadData->deref(); | - |
861 | QT_RETHROW; never executed: throw; | 0 |
862 | } | - |
863 | } | - |
864 | qt_addObject(this); | - |
865 | if (Q_UNLIKELY(qtHookData[QHooks::AddQObject]))TRUE | never evaluated | FALSE | evaluated 1582008 times by 939 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- ...
|
| 0-1582008 |
866 | reinterpret_cast<QHooks::AddQObjectCallback>(qtHookData[QHooks::AddQObject])(this); never executed: reinterpret_cast<QHooks::AddQObjectCallback>(qtHookData[QHooks::AddQObject])(this); | 0 |
867 | }executed 1582008 times by 939 tests: end of block Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- ...
| 1582008 |
868 | | - |
869 | | - |
870 | | - |
871 | | - |
872 | | - |
873 | | - |
874 | | - |
875 | | - |
876 | | - |
877 | | - |
878 | | - |
879 | | - |
880 | | - |
881 | | - |
882 | | - |
883 | | - |
884 | | - |
885 | | - |
886 | | - |
887 | | - |
888 | | - |
889 | | - |
890 | | - |
891 | | - |
892 | | - |
893 | QObject::~QObject() | - |
894 | { | - |
895 | Q_D(QObject); | - |
896 | d->wasDeleted = true; | - |
897 | d->blockSig = 0; | - |
898 | | - |
899 | QtSharedPointer::ExternalRefCountData *sharedRefcount = d->sharedRefcount.load(); | - |
900 | if (sharedRefcount) {TRUE | evaluated 66974 times by 475 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- ...
| FALSE | evaluated 1869283 times by 925 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAsn1Element
- ...
|
| 66974-1869283 |
901 | if (sharedRefcount->strongref.load() > 0) {TRUE | never evaluated | FALSE | evaluated 66974 times by 475 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- ...
|
| 0-66974 |
902 | qWarning("QObject: shared QObject was deleted directly. The program is malformed and may crash."); | - |
903 | | - |
904 | } never executed: end of block | 0 |
905 | | - |
906 | | - |
907 | sharedRefcount->strongref.store(0); | - |
908 | if (!sharedRefcount->weakref.deref())TRUE | evaluated 38510 times by 358 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| FALSE | evaluated 28464 times by 418 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusConnection_Delayed
- tst_QDBusThreading
- tst_QDataWidgetMapper
- ...
|
| 28464-38510 |
909 | delete sharedRefcount;executed 38510 times by 358 tests: delete sharedRefcount; Executed by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| 38510 |
910 | }executed 66974 times by 475 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- ...
| 66974 |
911 | | - |
912 | if (!d->isWidget && d->isSignalConnected(0)) {TRUE | evaluated 1875830 times by 925 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAsn1Element
- ...
| FALSE | evaluated 60427 times by 251 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDial
- ...
|
TRUE | evaluated 6887 times by 294 testsEvaluated by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusPendingCall
- ...
| FALSE | evaluated 1868943 times by 924 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAsn1Element
- ...
|
| 6887-1875830 |
913 | emit destroyed(this); | - |
914 | }executed 6887 times by 294 tests: end of block Executed by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusPendingCall
- ...
| 6887 |
915 | | - |
916 | if (d->declarativeData) {TRUE | evaluated 1 time by 1 test | FALSE | evaluated 1936256 times by 929 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAsn1Element
- ...
|
| 1-1936256 |
917 | if (static_cast<QAbstractDeclarativeDataImpl*>(d->declarativeData)->ownedByQml1) {TRUE | never evaluated | FALSE | evaluated 1 time by 1 test |
| 0-1 |
918 | if (QAbstractDeclarativeData::destroyed_qml1)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
919 | QAbstractDeclarativeData::destroyed_qml1(d->declarativeData, this); never executed: QAbstractDeclarativeData::destroyed_qml1(d->declarativeData, this); | 0 |
920 | } else { never executed: end of block | 0 |
921 | if (QAbstractDeclarativeData::destroyed)TRUE | never evaluated | FALSE | evaluated 1 time by 1 test |
| 0-1 |
922 | QAbstractDeclarativeData::destroyed(d->declarativeData, this); never executed: QAbstractDeclarativeData::destroyed(d->declarativeData, this); | 0 |
923 | }executed 1 time by 1 test: end of block | 1 |
924 | } | - |
925 | | - |
926 | | - |
927 | if (d->currentSender != 0)TRUE | evaluated 482 times by 14 testsEvaluated by:- tst_QApplication
- tst_QCommandLinkButton
- tst_QDialogButtonBox
- tst_QFtp
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QHttpSocketEngine
- tst_QNetworkReply
- tst_QObject
- tst_QPushButton
- tst_QScroller
- tst_QSocks5SocketEngine
- tst_QTcpSocket
- tst_qscroller - unknown status
| FALSE | evaluated 1935775 times by 929 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAsn1Element
- ...
|
| 482-1935775 |
928 | d->currentSender->ref = 0;executed 482 times by 14 tests: d->currentSender->ref = 0; Executed by:- tst_QApplication
- tst_QCommandLinkButton
- tst_QDialogButtonBox
- tst_QFtp
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QHttpSocketEngine
- tst_QNetworkReply
- tst_QObject
- tst_QPushButton
- tst_QScroller
- tst_QSocks5SocketEngine
- tst_QTcpSocket
- tst_qscroller - unknown status
| 482 |
929 | d->currentSender = 0; | - |
930 | | - |
931 | if (d->connectionLists || d->senders) {TRUE | evaluated 284809 times by 530 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- ...
| FALSE | evaluated 1651448 times by 928 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAsn1Element
- ...
|
TRUE | evaluated 73985 times by 352 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSlider
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCompleter
- tst_QCoreApplication
- ...
| FALSE | evaluated 1577463 times by 924 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAsn1Element
- ...
|
| 73985-1651448 |
932 | QMutex *signalSlotMutex = signalSlotLock(this); | - |
933 | QMutexLocker locker(signalSlotMutex); | - |
934 | | - |
935 | | - |
936 | if (d->connectionLists) {TRUE | evaluated 284809 times by 530 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- ...
| FALSE | evaluated 73985 times by 352 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSlider
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCompleter
- tst_QCoreApplication
- ...
|
| 73985-284809 |
937 | ++d->connectionLists->inUse; | - |
938 | int connectionListsCount = d->connectionLists->count(); | - |
939 | for (int signal = -1; signal < connectionListsCount; ++signal) {TRUE | evaluated 1912965 times by 530 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- ...
| FALSE | evaluated 284809 times by 530 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- ...
|
| 284809-1912965 |
940 | QObjectPrivate::ConnectionList &connectionList = | - |
941 | (*d->connectionLists)[signal]; | - |
942 | | - |
943 | while (QObjectPrivate::Connection *c = connectionList.first) {TRUE | evaluated 668871 times by 530 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- ...
| FALSE | evaluated 1912965 times by 530 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- ...
|
| 668871-1912965 |
944 | if (!c->receiver) {TRUE | evaluated 160627 times by 424 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| FALSE | evaluated 508244 times by 501 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
|
| 160627-508244 |
945 | connectionList.first = c->nextConnectionList; | - |
946 | c->deref(); | - |
947 | continue;executed 160627 times by 424 tests: continue; Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| 160627 |
948 | } | - |
949 | | - |
950 | QMutex *m = signalSlotLock(c->receiver); | - |
951 | bool needToUnlock = QOrderedMutexLocker::relock(signalSlotMutex, m); | - |
952 | | - |
953 | if (c->receiver) {TRUE | evaluated 508233 times by 501 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| FALSE | evaluated 11 times by 2 testsEvaluated by:- tst_QNetworkReply
- tst_Spdy
|
| 11-508233 |
954 | *c->prev = c->next; | - |
955 | if (c->next) c->next->prev = c->prev;executed 194248 times by 451 tests: c->next->prev = c->prev; Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- ...
TRUE | evaluated 194248 times by 451 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- ...
| FALSE | evaluated 313985 times by 498 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- ...
|
| 194248-313985 |
956 | }executed 508233 times by 501 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| 508233 |
957 | c->receiver = 0; | - |
958 | if (needToUnlock)TRUE | evaluated 326176 times by 493 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| FALSE | evaluated 182068 times by 334 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- ...
|
| 182068-326176 |
959 | m->unlock();executed 326176 times by 493 tests: m->unlock(); Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| 326176 |
960 | | - |
961 | connectionList.first = c->nextConnectionList; | - |
962 | | - |
963 | | - |
964 | if (c->isSlotObject) {TRUE | evaluated 188245 times by 295 testsEvaluated by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDataWidgetMapper
- ...
| FALSE | evaluated 319999 times by 501 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
|
| 188245-319999 |
965 | c->isSlotObject = false; | - |
966 | locker.unlock(); | - |
967 | c->slotObj->destroyIfLastRef(); | - |
968 | locker.relock(); | - |
969 | }executed 188245 times by 295 tests: end of block Executed by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDataWidgetMapper
- ...
| 188245 |
970 | c->deref(); | - |
971 | }executed 508244 times by 501 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| 508244 |
972 | }executed 1912965 times by 530 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- ...
| 1912965 |
973 | | - |
974 | if (!--d->connectionLists->inUse) {TRUE | evaluated 284560 times by 530 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- ...
| FALSE | evaluated 249 times by 15 testsEvaluated by:- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDialogButtonBox
- tst_QMenu
- tst_QNetworkReply
- tst_QObject
- tst_QProcess
- tst_QPushButton
- tst_QSequentialAnimationGroup
- tst_QStatusBar
- tst_qdbusabstractinterface - unknown status
|
| 249-284560 |
975 | delete d->connectionLists; | - |
976 | } else {executed 284560 times by 530 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- ...
| 284560 |
977 | d->connectionLists->orphaned = true; | - |
978 | }executed 249 times by 15 tests: end of block Executed by:- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDialogButtonBox
- tst_QMenu
- tst_QNetworkReply
- tst_QObject
- tst_QProcess
- tst_QPushButton
- tst_QSequentialAnimationGroup
- tst_QStatusBar
- tst_qdbusabstractinterface - unknown status
| 249 |
979 | d->connectionLists = 0; | - |
980 | }executed 284809 times by 530 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- ...
| 284809 |
981 | | - |
982 | | - |
983 | | - |
984 | | - |
985 | | - |
986 | | - |
987 | | - |
988 | | - |
989 | | - |
990 | | - |
991 | QObjectPrivate::Connection *node = d->senders; | - |
992 | while (node) {TRUE | evaluated 195138 times by 400 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
| FALSE | evaluated 358794 times by 535 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
|
| 195138-358794 |
993 | QObject *sender = node->sender; | - |
994 | | - |
995 | | - |
996 | | - |
997 | sender->disconnectNotify(QMetaObjectPrivate::signal(sender->metaObject(), node->signal_index)); | - |
998 | QMutex *m = signalSlotLock(sender); | - |
999 | node->prev = &node; | - |
1000 | bool needToUnlock = QOrderedMutexLocker::relock(signalSlotMutex, m); | - |
1001 | | - |
1002 | if (!node || node->sender != sender) {TRUE | never evaluated | FALSE | evaluated 195138 times by 400 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
|
TRUE | never evaluated | FALSE | evaluated 195138 times by 400 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
|
| 0-195138 |
1003 | | - |
1004 | Q_ASSERT(needToUnlock); | - |
1005 | m->unlock(); | - |
1006 | continue; never executed: continue; | 0 |
1007 | } | - |
1008 | node->receiver = 0; | - |
1009 | QObjectConnectionListVector *senderLists = sender->d_func()->connectionLists; | - |
1010 | if (senderLists)TRUE | evaluated 195138 times by 400 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
| FALSE | never evaluated |
| 0-195138 |
1011 | senderLists->dirty = true;executed 195138 times by 400 tests: senderLists->dirty = true; Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
| 195138 |
1012 | | - |
1013 | QtPrivate::QSlotObjectBase *slotObj = Q_NULLPTR; | - |
1014 | if (node->isSlotObject) {TRUE | evaluated 24276 times by 134 testsEvaluated by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDial
- tst_QDialog
- ...
| FALSE | evaluated 170862 times by 382 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSlider
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCompleter
- tst_QCoreApplication
- ...
|
| 24276-170862 |
1015 | slotObj = node->slotObj; | - |
1016 | node->isSlotObject = false; | - |
1017 | }executed 24276 times by 134 tests: end of block Executed by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDial
- tst_QDialog
- ...
| 24276 |
1018 | | - |
1019 | node = node->next; | - |
1020 | if (needToUnlock)TRUE | evaluated 193967 times by 400 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
| FALSE | evaluated 1171 times by 76 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QColumnView
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusConnection
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsGridLayout
- tst_QGraphicsLinearLayout
- tst_QGraphicsProxyWidget
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QHeaderView
- tst_QHttpSocketEngine
- tst_QImageReader
- tst_QItemDelegate
- ...
|
| 1171-193967 |
1021 | m->unlock();executed 193967 times by 400 tests: m->unlock(); Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
| 193967 |
1022 | | - |
1023 | if (slotObj) {TRUE | evaluated 24276 times by 134 testsEvaluated by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDial
- tst_QDialog
- ...
| FALSE | evaluated 170862 times by 382 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSlider
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCompleter
- tst_QCoreApplication
- ...
|
| 24276-170862 |
1024 | if (node)TRUE | evaluated 184 times by 14 testsEvaluated by:- tst_QDockWidget
- tst_QMainWindow
- tst_QObject
- tst_QThread
- tst_qdoublespinbox - unknown status
- tst_qfiledialog2 - unknown status
- tst_qgraphicsgridlayout - unknown status
- tst_qgraphicslinearlayout - unknown status
- tst_qgraphicsscene - unknown status
- tst_qpainter - unknown status
- tst_qpushbutton - unknown status
- tst_qsizegrip - unknown status
- tst_qsplitter - unknown status
- tst_qtreewidget - unknown status
| FALSE | evaluated 24092 times by 134 testsEvaluated by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDial
- tst_QDialog
- ...
|
| 184-24092 |
1025 | node->prev = &node;executed 184 times by 14 tests: node->prev = &node; Executed by:- tst_QDockWidget
- tst_QMainWindow
- tst_QObject
- tst_QThread
- tst_qdoublespinbox - unknown status
- tst_qfiledialog2 - unknown status
- tst_qgraphicsgridlayout - unknown status
- tst_qgraphicslinearlayout - unknown status
- tst_qgraphicsscene - unknown status
- tst_qpainter - unknown status
- tst_qpushbutton - unknown status
- tst_qsizegrip - unknown status
- tst_qsplitter - unknown status
- tst_qtreewidget - unknown status
| 184 |
1026 | locker.unlock(); | - |
1027 | slotObj->destroyIfLastRef(); | - |
1028 | locker.relock(); | - |
1029 | }executed 24276 times by 134 tests: end of block Executed by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDial
- tst_QDialog
- ...
| 24276 |
1030 | }executed 195138 times by 400 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
| 195138 |
1031 | }executed 358794 times by 535 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
| 358794 |
1032 | | - |
1033 | if (!d->children.isEmpty())TRUE | evaluated 16362 times by 578 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- ...
| FALSE | evaluated 1919895 times by 929 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAsn1Element
- ...
|
| 16362-1919895 |
1034 | d->deleteChildren();executed 16362 times by 578 tests: d->deleteChildren(); Executed by:- tst_Gestures
- tst_Lancelot
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- ...
| 16362 |
1035 | | - |
1036 | qt_removeObject(this); | - |
1037 | if (Q_UNLIKELY(qtHookData[QHooks::RemoveQObject]))TRUE | evaluated 4 times by 2 testsEvaluated by:- tst_QHooks
- tst_qhooks - unknown status
| FALSE | evaluated 1936253 times by 927 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAsn1Element
- ...
|
| 4-1936253 |
1038 | reinterpret_cast<QHooks::RemoveQObjectCallback>(qtHookData[QHooks::RemoveQObject])(this);executed 4 times by 2 tests: reinterpret_cast<QHooks::RemoveQObjectCallback>(qtHookData[QHooks::RemoveQObject])(this); Executed by:- tst_QHooks
- tst_qhooks - unknown status
| 4 |
1039 | | - |
1040 | if (d->parent) TRUE | evaluated 158119 times by 645 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- ...
| FALSE | evaluated 1778138 times by 929 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAsn1Element
- ...
|
| 158119-1778138 |
1041 | d->setParent_helper(0);executed 158119 times by 645 tests: d->setParent_helper(0); Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- ...
| 158119 |
1042 | }executed 1936257 times by 929 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAsn1Element
- ...
| 1936257 |
1043 | | - |
1044 | QObjectPrivate::Connection::~Connection() | - |
1045 | { | - |
1046 | if (ownArgumentTypes) {TRUE | evaluated 826743 times by 533 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
| FALSE | evaluated 844 times by 171 testsEvaluated by:- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QObject
- tst_QProcess
- tst_gestures - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractspinbox - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qapplication - unknown status
- tst_qbackingstore - unknown status
- tst_qboxlayout - unknown status
- tst_qbuttongroup - unknown status
- ...
|
| 844-826743 |
1047 | const int *v = argumentTypes.load(); | - |
1048 | if (v != &DIRECT_CONNECTION_ONLY)TRUE | evaluated 826743 times by 533 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
| FALSE | never evaluated |
| 0-826743 |
1049 | delete [] v;executed 826743 times by 533 tests: delete [] v; Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
| 826743 |
1050 | }executed 826743 times by 533 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
| 826743 |
1051 | if (isSlotObject)TRUE | never evaluated | FALSE | evaluated 827587 times by 533 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
|
| 0-827587 |
1052 | slotObj->destroyIfLastRef(); never executed: slotObj->destroyIfLastRef(); | 0 |
1053 | }executed 827587 times by 533 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
| 827587 |
1054 | | - |
1055 | | - |
1056 | | - |
1057 | | - |
1058 | | - |
1059 | | - |
1060 | | - |
1061 | | - |
1062 | | - |
1063 | | - |
1064 | | - |
1065 | | - |
1066 | | - |
1067 | | - |
1068 | | - |
1069 | | - |
1070 | | - |
1071 | | - |
1072 | | - |
1073 | | - |
1074 | | - |
1075 | | - |
1076 | | - |
1077 | | - |
1078 | | - |
1079 | | - |
1080 | | - |
1081 | | - |
1082 | | - |
1083 | | - |
1084 | | - |
1085 | | - |
1086 | | - |
1087 | | - |
1088 | | - |
1089 | | - |
1090 | | - |
1091 | | - |
1092 | | - |
1093 | | - |
1094 | | - |
1095 | | - |
1096 | | - |
1097 | | - |
1098 | | - |
1099 | | - |
1100 | | - |
1101 | | - |
1102 | | - |
1103 | | - |
1104 | | - |
1105 | | - |
1106 | | - |
1107 | | - |
1108 | | - |
1109 | | - |
1110 | | - |
1111 | | - |
1112 | | - |
1113 | | - |
1114 | | - |
1115 | | - |
1116 | | - |
1117 | | - |
1118 | | - |
1119 | | - |
1120 | | - |
1121 | | - |
1122 | | - |
1123 | | - |
1124 | | - |
1125 | | - |
1126 | | - |
1127 | | - |
1128 | | - |
1129 | | - |
1130 | | - |
1131 | | - |
1132 | | - |
1133 | | - |
1134 | | - |
1135 | | - |
1136 | | - |
1137 | | - |
1138 | | - |
1139 | | - |
1140 | | - |
1141 | | - |
1142 | | - |
1143 | | - |
1144 | | - |
1145 | | - |
1146 | | - |
1147 | | - |
1148 | | - |
1149 | | - |
1150 | | - |
1151 | | - |
1152 | | - |
1153 | | - |
1154 | | - |
1155 | | - |
1156 | | - |
1157 | | - |
1158 | | - |
1159 | | - |
1160 | | - |
1161 | | - |
1162 | | - |
1163 | | - |
1164 | | - |
1165 | | - |
1166 | | - |
1167 | | - |
1168 | | - |
1169 | QString QObject::objectName() const | - |
1170 | { | - |
1171 | Q_D(const QObject); | - |
1172 | return d->extraData ? d->extraData->objectName : QString();executed 694315 times by 546 tests: return d->extraData ? d->extraData->objectName : QString(); Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- ...
TRUE | evaluated 50664 times by 173 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- ...
| FALSE | evaluated 643651 times by 546 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- ...
|
| 50664-694315 |
1173 | } | - |
1174 | | - |
1175 | | - |
1176 | | - |
1177 | | - |
1178 | void QObject::setObjectName(const QString &name) | - |
1179 | { | - |
1180 | Q_D(QObject); | - |
1181 | if (!d->extraData)TRUE | evaluated 48712 times by 188 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusConnection
- ...
| FALSE | evaluated 915 times by 121 testsEvaluated by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDial
- tst_QDialog
- tst_QDialogButtonBox
- ...
|
| 915-48712 |
1182 | d->extraData = new QObjectPrivate::ExtraData;executed 48712 times by 188 tests: d->extraData = new QObjectPrivate::ExtraData; Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusConnection
- ...
| 48712 |
1183 | | - |
1184 | if (d->extraData->objectName != name) {TRUE | evaluated 49604 times by 188 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusConnection
- ...
| FALSE | evaluated 23 times by 6 testsEvaluated by:- tst_QLineEdit
- tst_QObject
- tst_QShortcut
- tst_QStateMachine
- tst_QWidget
- tst_qmouseevent_modal
|
| 23-49604 |
1185 | d->extraData->objectName = name; | - |
1186 | emit objectNameChanged(d->extraData->objectName, QPrivateSignal()); | - |
1187 | }executed 49604 times by 188 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusConnection
- ...
| 49604 |
1188 | }executed 49627 times by 188 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusConnection
- ...
| 49627 |
1189 | | - |
1190 | | - |
1191 | | - |
1192 | | - |
1193 | | - |
1194 | | - |
1195 | | - |
1196 | | - |
1197 | | - |
1198 | | - |
1199 | | - |
1200 | | - |
1201 | | - |
1202 | | - |
1203 | | - |
1204 | | - |
1205 | | - |
1206 | | - |
1207 | | - |
1208 | | - |
1209 | | - |
1210 | | - |
1211 | | - |
1212 | | - |
1213 | | - |
1214 | | - |
1215 | | - |
1216 | | - |
1217 | | - |
1218 | | - |
1219 | | - |
1220 | | - |
1221 | | - |
1222 | | - |
1223 | | - |
1224 | | - |
1225 | | - |
1226 | | - |
1227 | | - |
1228 | | - |
1229 | | - |
1230 | | - |
1231 | | - |
1232 | | - |
1233 | bool QObject::event(QEvent *e) | - |
1234 | { | - |
1235 | switch (e->type()) { | - |
1236 | case QEvent::Timer:executed 50390 times by 110 tests: case QEvent::Timer: Executed by:- tst_Gestures
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractInterface
- tst_QDBusMarshall
- tst_QDialog
- tst_QDialogButtonBox
- tst_QEventLoop
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFileSystemWatcher
- tst_QFiledialog
- ...
| 50390 |
1237 | timerEvent((QTimerEvent*)e); | - |
1238 | break;executed 50389 times by 110 tests: break; Executed by:- tst_Gestures
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractInterface
- tst_QDBusMarshall
- tst_QDialog
- tst_QDialogButtonBox
- tst_QEventLoop
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFileSystemWatcher
- tst_QFiledialog
- ...
| 50389 |
1239 | | - |
1240 | case QEvent::ChildAdded:executed 185001 times by 255 tests: case QEvent::ChildAdded: Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| 185001 |
1241 | case QEvent::ChildPolished:executed 46278 times by 113 tests: case QEvent::ChildPolished: Executed by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QErrorMessage
- ...
| 46278 |
1242 | case QEvent::ChildRemoved:executed 90504 times by 431 tests: case QEvent::ChildRemoved: Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
| 90504 |
1243 | childEvent((QChildEvent*)e); | - |
1244 | break;executed 321783 times by 465 tests: break; Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| 321783 |
1245 | | - |
1246 | case QEvent::DeferredDelete:executed 4273 times by 173 tests: case QEvent::DeferredDelete: Executed by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- ...
| 4273 |
1247 | qDeleteInEventHandler(this); | - |
1248 | break;executed 4273 times by 173 tests: break; Executed by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- ...
| 4273 |
1249 | | - |
1250 | case QEvent::MetaCall:executed 266608 times by 348 tests: case QEvent::MetaCall: Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| 266608 |
1251 | { | - |
1252 | QMetaCallEvent *mce = static_cast<QMetaCallEvent*>(e); | - |
1253 | | - |
1254 | QConnectionSenderSwitcher sw(this, const_cast<QObject*>(mce->sender()), mce->signalId()); | - |
1255 | | - |
1256 | mce->placeMetaCall(this); | - |
1257 | break;executed 266607 times by 348 tests: break; Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| 266607 |
1258 | } | - |
1259 | | - |
1260 | case QEvent::ThreadChange: {executed 65821 times by 330 tests: case QEvent::ThreadChange: Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| 65821 |
1261 | Q_D(QObject); | - |
1262 | QThreadData *threadData = d->threadData; | - |
1263 | QAbstractEventDispatcher *eventDispatcher = threadData->eventDispatcher.load(); | - |
1264 | if (eventDispatcher) {TRUE | evaluated 65818 times by 330 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| FALSE | evaluated 3 times by 1 test |
| 3-65818 |
1265 | QList<QAbstractEventDispatcher::TimerInfo> timers = eventDispatcher->registeredTimers(this); | - |
1266 | if (!timers.isEmpty()) {TRUE | evaluated 20012 times by 3 testsEvaluated by:- tst_QObject
- tst_QTcpSocket
- tst_QTimer
| FALSE | evaluated 45806 times by 330 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
|
| 20012-45806 |
1267 | | - |
1268 | eventDispatcher->unregisterTimers(this); | - |
1269 | QMetaObject::invokeMethod(this, "_q_reregisterTimers", Qt::QueuedConnection, | - |
1270 | Q_ARG(void*, (new QList<QAbstractEventDispatcher::TimerInfo>(timers)))); | - |
1271 | }executed 20012 times by 3 tests: end of block Executed by:- tst_QObject
- tst_QTcpSocket
- tst_QTimer
| 20012 |
1272 | }executed 65818 times by 330 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| 65818 |
1273 | break;executed 65821 times by 330 tests: break; Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| 65821 |
1274 | } | - |
1275 | | - |
1276 | default:executed 535192 times by 331 tests: default: Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- ...
| 535192 |
1277 | if (e->type() >= QEvent::User) {TRUE | evaluated 229756 times by 10 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QEventDispatcher
- tst_QEventLoop
- tst_QGraphicsScene
- tst_QGuiApplication
- tst_QGuiEventLoop
- tst_QObject
- tst_QWidget
- tst_QWidget_window
| FALSE | evaluated 305436 times by 327 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- ...
|
| 229756-305436 |
1278 | customEvent(e); | - |
1279 | break;executed 229756 times by 10 tests: break; Executed by:- tst_QApplication
- tst_QCoreApplication
- tst_QEventDispatcher
- tst_QEventLoop
- tst_QGraphicsScene
- tst_QGuiApplication
- tst_QGuiEventLoop
- tst_QObject
- tst_QWidget
- tst_QWidget_window
| 229756 |
1280 | } | - |
1281 | return false;executed 305436 times by 327 tests: return false; Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- ...
| 305436 |
1282 | } | - |
1283 | return true;executed 938629 times by 474 tests: return true; Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| 938629 |
1284 | } | - |
1285 | | - |
1286 | | - |
1287 | | - |
1288 | | - |
1289 | | - |
1290 | | - |
1291 | | - |
1292 | | - |
1293 | | - |
1294 | | - |
1295 | | - |
1296 | | - |
1297 | | - |
1298 | | - |
1299 | void QObject::timerEvent(QTimerEvent *) | - |
1300 | { | - |
1301 | } | - |
1302 | | - |
1303 | | - |
1304 | | - |
1305 | | - |
1306 | | - |
1307 | | - |
1308 | | - |
1309 | | - |
1310 | | - |
1311 | | - |
1312 | | - |
1313 | | - |
1314 | | - |
1315 | | - |
1316 | | - |
1317 | | - |
1318 | | - |
1319 | | - |
1320 | | - |
1321 | | - |
1322 | | - |
1323 | | - |
1324 | | - |
1325 | | - |
1326 | | - |
1327 | | - |
1328 | | - |
1329 | | - |
1330 | | - |
1331 | | - |
1332 | | - |
1333 | | - |
1334 | | - |
1335 | | - |
1336 | | - |
1337 | void QObject::childEvent(QChildEvent * ) | - |
1338 | { | - |
1339 | } | - |
1340 | | - |
1341 | | - |
1342 | | - |
1343 | | - |
1344 | | - |
1345 | | - |
1346 | | - |
1347 | | - |
1348 | | - |
1349 | | - |
1350 | | - |
1351 | void QObject::customEvent(QEvent * ) | - |
1352 | { | - |
1353 | } | - |
1354 | | - |
1355 | | - |
1356 | | - |
1357 | | - |
1358 | | - |
1359 | | - |
1360 | | - |
1361 | | - |
1362 | | - |
1363 | | - |
1364 | | - |
1365 | | - |
1366 | | - |
1367 | | - |
1368 | | - |
1369 | | - |
1370 | | - |
1371 | | - |
1372 | | - |
1373 | | - |
1374 | | - |
1375 | | - |
1376 | | - |
1377 | | - |
1378 | | - |
1379 | | - |
1380 | bool QObject::eventFilter(QObject * , QEvent * ) | - |
1381 | { | - |
1382 | return false;executed 275176 times by 85 tests: return false; Executed by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDirModel
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFontDialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- ...
| 275176 |
1383 | } | - |
1384 | | - |
1385 | | - |
1386 | | - |
1387 | | - |
1388 | | - |
1389 | | - |
1390 | | - |
1391 | | - |
1392 | | - |
1393 | | - |
1394 | | - |
1395 | | - |
1396 | | - |
1397 | | - |
1398 | | - |
1399 | | - |
1400 | | - |
1401 | | - |
1402 | | - |
1403 | | - |
1404 | | - |
1405 | | - |
1406 | | - |
1407 | | - |
1408 | | - |
1409 | | - |
1410 | bool QObject::blockSignals(bool block) Q_DECL_NOTHROW | - |
1411 | { | - |
1412 | Q_D(QObject); | - |
1413 | bool previous = d->blockSig; | - |
1414 | d->blockSig = block; | - |
1415 | return previous;executed 39283 times by 103 tests: return previous; Executed by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAsn1Element
- tst_QAuthenticator
- tst_QBrush
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDataStream
- tst_QDataWidgetMapper
- tst_QDate
- tst_QDateTime
- tst_QDateTimeEdit
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontComboBox
- ...
| 39283 |
1416 | } | - |
1417 | | - |
1418 | | - |
1419 | | - |
1420 | | - |
1421 | | - |
1422 | | - |
1423 | QThread *QObject::thread() const | - |
1424 | { | - |
1425 | return d_func()->threadData->thread;executed 5593290 times by 766 tests: return d_func()->threadData->thread; Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- ...
| 5593290 |
1426 | } | - |
1427 | | - |
1428 | | - |
1429 | | - |
1430 | | - |
1431 | | - |
1432 | | - |
1433 | | - |
1434 | | - |
1435 | | - |
1436 | | - |
1437 | | - |
1438 | | - |
1439 | | - |
1440 | | - |
1441 | | - |
1442 | | - |
1443 | | - |
1444 | | - |
1445 | | - |
1446 | | - |
1447 | | - |
1448 | | - |
1449 | | - |
1450 | | - |
1451 | | - |
1452 | | - |
1453 | | - |
1454 | | - |
1455 | | - |
1456 | | - |
1457 | | - |
1458 | | - |
1459 | | - |
1460 | | - |
1461 | | - |
1462 | void QObject::moveToThread(QThread *targetThread) | - |
1463 | { | - |
1464 | Q_D(QObject); | - |
1465 | | - |
1466 | if (d->threadData->thread == targetThread) {TRUE | evaluated 39660 times by 199 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| FALSE | evaluated 65497 times by 330 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
|
| 39660-65497 |
1467 | | - |
1468 | return;executed 39660 times by 199 tests: return; Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| 39660 |
1469 | } | - |
1470 | | - |
1471 | if (d->parent != 0) {TRUE | never evaluated | FALSE | evaluated 65497 times by 330 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
|
| 0-65497 |
1472 | qWarning("QObject::moveToThread: Cannot move objects with a parent"); | - |
1473 | return; never executed: return; | 0 |
1474 | } | - |
1475 | if (d->isWidget) {TRUE | never evaluated | FALSE | evaluated 65497 times by 330 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
|
| 0-65497 |
1476 | qWarning("QObject::moveToThread: Widgets cannot be moved to a new thread"); | - |
1477 | return; never executed: return; | 0 |
1478 | } | - |
1479 | | - |
1480 | QThreadData *currentData = QThreadData::current(); | - |
1481 | QThreadData *targetData = targetThread ? QThreadData::get2(targetThread) : Q_NULLPTR;TRUE | evaluated 65271 times by 173 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| FALSE | evaluated 226 times by 167 testsEvaluated by:- tst_QCoreApplication
- tst_QGuiApplication
- tst_QObject
- tst_QTcpSocket
- tst_gestures - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractspinbox - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qapplication - unknown status
- tst_qbackingstore - unknown status
- tst_qboxlayout - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- tst_qcheckbox - unknown status
- tst_qcolordialog - unknown status
- tst_qcolumnview - unknown status
- ...
|
| 226-65271 |
1482 | if (d->threadData->thread == 0 && currentData == targetData) {TRUE | evaluated 2 times by 1 test | FALSE | evaluated 65495 times by 330 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
|
TRUE | evaluated 2 times by 1 test | FALSE | never evaluated |
| 0-65495 |
1483 | | - |
1484 | currentData = d->threadData; | - |
1485 | } else if (d->threadData != currentData) {executed 2 times by 1 test: end of block TRUE | never evaluated | FALSE | evaluated 65495 times by 330 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
|
| 0-65495 |
1486 | qWarning("QObject::moveToThread: Current thread (%p) is not the object's thread (%p).\n" | - |
1487 | "Cannot move to target thread (%p)\n", | - |
1488 | currentData->thread.load(), d->threadData->thread.load(), targetData ? targetData->thread.load() : Q_NULLPTR); | - |
1489 | | - |
1490 | #ifdef Q_OS_MAC | - |
1491 | qWarning("You might be loading two sets of Qt binaries into the same process. " | - |
1492 | "Check that all plugins are compiled against the right Qt binaries. Export " | - |
1493 | "DYLD_PRINT_LIBRARIES=1 and check that only one set of binaries are being loaded."); | - |
1494 | #endif | - |
1495 | | - |
1496 | return; never executed: return; | 0 |
1497 | } | - |
1498 | | - |
1499 | | - |
1500 | d->moveToThread_helper(); | - |
1501 | | - |
1502 | if (!targetData)TRUE | evaluated 226 times by 167 testsEvaluated by:- tst_QCoreApplication
- tst_QGuiApplication
- tst_QObject
- tst_QTcpSocket
- tst_gestures - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractspinbox - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qapplication - unknown status
- tst_qbackingstore - unknown status
- tst_qboxlayout - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- tst_qcheckbox - unknown status
- tst_qcolordialog - unknown status
- tst_qcolumnview - unknown status
- ...
| FALSE | evaluated 65271 times by 173 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
|
| 226-65271 |
1503 | targetData = new QThreadData(0);executed 226 times by 167 tests: targetData = new QThreadData(0); Executed by:- tst_QCoreApplication
- tst_QGuiApplication
- tst_QObject
- tst_QTcpSocket
- tst_gestures - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractspinbox - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qapplication - unknown status
- tst_qbackingstore - unknown status
- tst_qboxlayout - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- tst_qcheckbox - unknown status
- tst_qcolordialog - unknown status
- tst_qcolumnview - unknown status
- ...
| 226 |
1504 | | - |
1505 | QOrderedMutexLocker locker(¤tData->postEventList.mutex, | - |
1506 | &targetData->postEventList.mutex); | - |
1507 | | - |
1508 | | - |
1509 | currentData->ref(); | - |
1510 | | - |
1511 | | - |
1512 | d_func()->setThreadData_helper(currentData, targetData); | - |
1513 | | - |
1514 | locker.unlock(); | - |
1515 | | - |
1516 | | - |
1517 | currentData->deref(); | - |
1518 | }executed 65497 times by 330 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| 65497 |
1519 | | - |
1520 | void QObjectPrivate::moveToThread_helper() | - |
1521 | { | - |
1522 | Q_Q(QObject); | - |
1523 | QEvent e(QEvent::ThreadChange); | - |
1524 | QCoreApplication::sendEvent(q, &e); | - |
1525 | for (int i = 0; i < children.size(); ++i) {TRUE | evaluated 327 times by 47 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QFtp
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QObject
- tst_QStateMachine
- tst_QTcpServer
- tst_QTcpSocket
- tst_QUdpSocket
- tst_QXmlInputSource
- tst_QXmlStream
- tst_Spdy
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qactiongroup - unknown status
- tst_qapplication - unknown status
- ...
| FALSE | evaluated 65824 times by 330 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
|
| 327-65824 |
1526 | QObject *child = children.at(i); | - |
1527 | child->d_func()->moveToThread_helper(); | - |
1528 | }executed 327 times by 47 tests: end of block Executed by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QFtp
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QObject
- tst_QStateMachine
- tst_QTcpServer
- tst_QTcpSocket
- tst_QUdpSocket
- tst_QXmlInputSource
- tst_QXmlStream
- tst_Spdy
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qactiongroup - unknown status
- tst_qapplication - unknown status
- ...
| 327 |
1529 | }executed 65824 times by 330 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| 65824 |
1530 | | - |
1531 | void QObjectPrivate::setThreadData_helper(QThreadData *currentData, QThreadData *targetData) | - |
1532 | { | - |
1533 | Q_Q(QObject); | - |
1534 | | - |
1535 | | - |
1536 | int eventsMoved = 0; | - |
1537 | for (int i = 0; i < currentData->postEventList.size(); ++i) {TRUE | evaluated 100336002 times by 175 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- ...
| FALSE | evaluated 65824 times by 330 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
|
| 65824-100336002 |
1538 | const QPostEvent &pe = currentData->postEventList.at(i); | - |
1539 | if (!pe.event)TRUE | evaluated 100136558 times by 55 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QCoreApplication
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QEventLoop
- tst_QFtp
- tst_QGuiApplication
- tst_QGuiEventLoop
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QMainWindow
- tst_QMetaObject
- tst_QNetworkAccessManager
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QObject
- tst_QTcpServer
- tst_QTcpSocket
- tst_QTimer
- ...
| FALSE | evaluated 199444 times by 172 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDataWidgetMapper
- ...
|
| 199444-100136558 |
1540 | continue;executed 100136558 times by 55 tests: continue; Executed by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QCoreApplication
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QEventLoop
- tst_QFtp
- tst_QGuiApplication
- tst_QGuiEventLoop
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QMainWindow
- tst_QMetaObject
- tst_QNetworkAccessManager
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QObject
- tst_QTcpServer
- tst_QTcpSocket
- tst_QTimer
- ...
| 100136558 |
1541 | if (pe.receiver == q) {TRUE | evaluated 62502 times by 54 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QEventLoop
- tst_QFtp
- tst_QGuiEventLoop
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QObject
- tst_QTcpServer
- tst_QTcpSocket
- tst_QTimer
- tst_QUdpSocket
- tst_QXmlInputSource
- tst_QXmlStream
- ...
| FALSE | evaluated 136942 times by 147 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDataWidgetMapper
- ...
|
| 62502-136942 |
1542 | | - |
1543 | targetData->postEventList.addEvent(pe); | - |
1544 | const_cast<QPostEvent &>(pe).event = 0; | - |
1545 | ++eventsMoved; | - |
1546 | }executed 62502 times by 54 tests: end of block Executed by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QEventLoop
- tst_QFtp
- tst_QGuiEventLoop
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QObject
- tst_QTcpServer
- tst_QTcpSocket
- tst_QTimer
- tst_QUdpSocket
- tst_QXmlInputSource
- tst_QXmlStream
- ...
| 62502 |
1547 | }executed 199444 times by 172 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDataWidgetMapper
- ...
| 199444 |
1548 | if (eventsMoved > 0 && targetData->eventDispatcher.load()) {TRUE | evaluated 21945 times by 54 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QEventLoop
- tst_QFtp
- tst_QGuiEventLoop
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QObject
- tst_QTcpServer
- tst_QTcpSocket
- tst_QTimer
- tst_QUdpSocket
- tst_QXmlInputSource
- tst_QXmlStream
- ...
| FALSE | evaluated 43879 times by 330 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
|
TRUE | evaluated 21506 times by 25 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QEventLoop
- tst_QFtp
- tst_QGuiEventLoop
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QObject
- tst_QTcpServer
- tst_QTimer
- tst_QUdpSocket
- tst_QXmlInputSource
- tst_QXmlStream
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
| FALSE | evaluated 439 times by 32 testsEvaluated by:- tst_QDBusConnection_NoApplication
- tst_QEventLoop
- tst_QGuiEventLoop
- tst_QNetworkReply
- tst_QTcpSocket
- tst_QTimer
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qactiongroup - unknown status
- tst_qapplication - unknown status
- tst_qbackingstore - unknown status
- tst_qdatetimeedit - unknown status
- tst_qdbuscontext - unknown status
- tst_qdbuslocalcalls - unknown status
- tst_qdbuspendingreply - unknown status
- tst_qdbusreply - unknown status
- tst_qdial - unknown status
- tst_qdirmodel - unknown status
- tst_qerrormessage - unknown status
- tst_qfontcombobox - unknown status
- tst_qitemmodel - unknown status
- tst_qnetworkaccessmanager - unknown status
- tst_qnetworkconfigurationmanagerqappless - unknown status
- tst_qnetworkinterface - unknown status
- tst_qprocess - unknown status
- ...
|
| 439-43879 |
1549 | targetData->canWait = false; | - |
1550 | targetData->eventDispatcher.load()->wakeUp(); | - |
1551 | }executed 21506 times by 25 tests: end of block Executed by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QEventLoop
- tst_QFtp
- tst_QGuiEventLoop
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QObject
- tst_QTcpServer
- tst_QTimer
- tst_QUdpSocket
- tst_QXmlInputSource
- tst_QXmlStream
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
| 21506 |
1552 | | - |
1553 | | - |
1554 | if (currentSender)TRUE | evaluated 42001 times by 3 testsEvaluated by:- tst_QEventLoop
- tst_QGuiEventLoop
- tst_QMetaObject
| FALSE | evaluated 23823 times by 330 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
|
| 23823-42001 |
1555 | currentSender->ref = 0;executed 42001 times by 3 tests: currentSender->ref = 0; Executed by:- tst_QEventLoop
- tst_QGuiEventLoop
- tst_QMetaObject
| 42001 |
1556 | currentSender = 0; | - |
1557 | | - |
1558 | | - |
1559 | targetData->ref(); | - |
1560 | threadData->deref(); | - |
1561 | threadData = targetData; | - |
1562 | | - |
1563 | for (int i = 0; i < children.size(); ++i) {TRUE | evaluated 327 times by 47 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QFtp
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QObject
- tst_QStateMachine
- tst_QTcpServer
- tst_QTcpSocket
- tst_QUdpSocket
- tst_QXmlInputSource
- tst_QXmlStream
- tst_Spdy
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qactiongroup - unknown status
- tst_qapplication - unknown status
- ...
| FALSE | evaluated 65824 times by 330 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
|
| 327-65824 |
1564 | QObject *child = children.at(i); | - |
1565 | child->d_func()->setThreadData_helper(currentData, targetData); | - |
1566 | }executed 327 times by 47 tests: end of block Executed by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QFtp
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QObject
- tst_QStateMachine
- tst_QTcpServer
- tst_QTcpSocket
- tst_QUdpSocket
- tst_QXmlInputSource
- tst_QXmlStream
- tst_Spdy
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qactiongroup - unknown status
- tst_qapplication - unknown status
- ...
| 327 |
1567 | }executed 65824 times by 330 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| 65824 |
1568 | | - |
1569 | void QObjectPrivate::_q_reregisterTimers(void *pointer) | - |
1570 | { | - |
1571 | Q_Q(QObject); | - |
1572 | QList<QAbstractEventDispatcher::TimerInfo> *timerList = reinterpret_cast<QList<QAbstractEventDispatcher::TimerInfo> *>(pointer); | - |
1573 | QAbstractEventDispatcher *eventDispatcher = threadData->eventDispatcher.load(); | - |
1574 | for (int i = 0; i < timerList->size(); ++i) {TRUE | evaluated 20010 times by 2 tests | FALSE | evaluated 20010 times by 2 tests |
| 20010 |
1575 | const QAbstractEventDispatcher::TimerInfo &ti = timerList->at(i); | - |
1576 | eventDispatcher->registerTimer(ti.timerId, ti.interval, ti.timerType, q); | - |
1577 | }executed 20010 times by 2 tests: end of block | 20010 |
1578 | delete timerList; | - |
1579 | }executed 20010 times by 2 tests: end of block | 20010 |
1580 | | - |
1581 | | - |
1582 | | - |
1583 | | - |
1584 | | - |
1585 | | - |
1586 | | - |
1587 | | - |
1588 | | - |
1589 | | - |
1590 | | - |
1591 | | - |
1592 | | - |
1593 | | - |
1594 | | - |
1595 | | - |
1596 | | - |
1597 | | - |
1598 | | - |
1599 | | - |
1600 | | - |
1601 | | - |
1602 | | - |
1603 | | - |
1604 | | - |
1605 | | - |
1606 | | - |
1607 | | - |
1608 | | - |
1609 | | - |
1610 | | - |
1611 | | - |
1612 | | - |
1613 | | - |
1614 | | - |
1615 | | - |
1616 | | - |
1617 | | - |
1618 | | - |
1619 | | - |
1620 | | - |
1621 | | - |
1622 | | - |
1623 | int QObject::startTimer(int interval, Qt::TimerType timerType) | - |
1624 | { | - |
1625 | Q_D(QObject); | - |
1626 | | - |
1627 | if (Q_UNLIKELY(interval < 0)) {TRUE | never evaluated | FALSE | evaluated 42587 times by 198 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
|
| 0-42587 |
1628 | qWarning("QObject::startTimer: Timers cannot have negative intervals"); | - |
1629 | return 0; never executed: return 0; | 0 |
1630 | } | - |
1631 | if (Q_UNLIKELY(!d->threadData->eventDispatcher.load())) {TRUE | never evaluated | FALSE | evaluated 42587 times by 198 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
|
| 0-42587 |
1632 | qWarning("QObject::startTimer: Timers can only be used with threads started with QThread"); | - |
1633 | return 0; never executed: return 0; | 0 |
1634 | } | - |
1635 | if (Q_UNLIKELY(thread() != QThread::currentThread())) {TRUE | never evaluated | FALSE | evaluated 42587 times by 198 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
|
| 0-42587 |
1636 | qWarning("QObject::startTimer: Timers cannot be started from another thread"); | - |
1637 | return 0; never executed: return 0; | 0 |
1638 | } | - |
1639 | int timerId = d->threadData->eventDispatcher.load()->registerTimer(interval, timerType, this); | - |
1640 | if (!d->extraData)TRUE | evaluated 28823 times by 197 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| FALSE | evaluated 13764 times by 179 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- ...
|
| 13764-28823 |
1641 | d->extraData = new QObjectPrivate::ExtraData;executed 28823 times by 197 tests: d->extraData = new QObjectPrivate::ExtraData; Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| 28823 |
1642 | d->extraData->runningTimers.append(timerId); | - |
1643 | return timerId;executed 42587 times by 198 tests: return timerId; Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| 42587 |
1644 | } | - |
1645 | | - |
1646 | | - |
1647 | | - |
1648 | | - |
1649 | | - |
1650 | | - |
1651 | | - |
1652 | | - |
1653 | | - |
1654 | | - |
1655 | void QObject::killTimer(int id) | - |
1656 | { | - |
1657 | Q_D(QObject); | - |
1658 | if (Q_UNLIKELY(thread() != QThread::currentThread())) {TRUE | evaluated 6 times by 2 tests | FALSE | evaluated 40001 times by 212 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
|
| 6-40001 |
1659 | qWarning("QObject::killTimer: Timers cannot be stopped from another thread"); | - |
1660 | return;executed 6 times by 2 tests: return; | 6 |
1661 | } | - |
1662 | if (id) {TRUE | evaluated 40001 times by 212 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| FALSE | never evaluated |
| 0-40001 |
1663 | int at = d->extraData ? d->extraData->runningTimers.indexOf(id) : -1;TRUE | evaluated 40001 times by 212 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| FALSE | never evaluated |
| 0-40001 |
1664 | if (at == -1) {TRUE | never evaluated | FALSE | evaluated 40001 times by 212 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
|
| 0-40001 |
1665 | | - |
1666 | qWarning("QObject::killTimer(): Error: timer id %d is not valid for object %p (%s, %s), timer has not been killed", | - |
1667 | id, | - |
1668 | this, | - |
1669 | metaObject()->className(), | - |
1670 | qPrintable(objectName())); | - |
1671 | return; never executed: return; | 0 |
1672 | } | - |
1673 | | - |
1674 | if (d->threadData->eventDispatcher.load())TRUE | evaluated 39863 times by 206 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| FALSE | evaluated 138 times by 10 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
- tst_QNetworkReply
- tst_qcolordialog - unknown status
- tst_qimagereader - unknown status
- tst_qsslsocket - unknown status
- tst_qsystemtrayicon - unknown status
- tst_qthread - unknown status
- tst_qtoolbutton - unknown status
|
| 138-39863 |
1675 | d->threadData->eventDispatcher.load()->unregisterTimer(id);executed 39863 times by 206 tests: d->threadData->eventDispatcher.load()->unregisterTimer(id); Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| 39863 |
1676 | | - |
1677 | d->extraData->runningTimers.remove(at); | - |
1678 | QAbstractEventDispatcherPrivate::releaseTimerId(id); | - |
1679 | }executed 40001 times by 212 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| 40001 |
1680 | }executed 40001 times by 212 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| 40001 |
1681 | | - |
1682 | | - |
1683 | | - |
1684 | | - |
1685 | | - |
1686 | | - |
1687 | | - |
1688 | | - |
1689 | | - |
1690 | | - |
1691 | | - |
1692 | | - |
1693 | | - |
1694 | | - |
1695 | | - |
1696 | | - |
1697 | | - |
1698 | | - |
1699 | | - |
1700 | | - |
1701 | | - |
1702 | | - |
1703 | | - |
1704 | | - |
1705 | | - |
1706 | | - |
1707 | | - |
1708 | | - |
1709 | | - |
1710 | | - |
1711 | | - |
1712 | | - |
1713 | | - |
1714 | | - |
1715 | | - |
1716 | | - |
1717 | | - |
1718 | | - |
1719 | | - |
1720 | | - |
1721 | | - |
1722 | | - |
1723 | | - |
1724 | | - |
1725 | | - |
1726 | | - |
1727 | | - |
1728 | | - |
1729 | | - |
1730 | | - |
1731 | | - |
1732 | | - |
1733 | | - |
1734 | | - |
1735 | | - |
1736 | | - |
1737 | | - |
1738 | | - |
1739 | | - |
1740 | | - |
1741 | | - |
1742 | | - |
1743 | | - |
1744 | | - |
1745 | | - |
1746 | | - |
1747 | | - |
1748 | | - |
1749 | | - |
1750 | | - |
1751 | | - |
1752 | | - |
1753 | | - |
1754 | | - |
1755 | | - |
1756 | | - |
1757 | | - |
1758 | | - |
1759 | | - |
1760 | | - |
1761 | | - |
1762 | | - |
1763 | | - |
1764 | | - |
1765 | | - |
1766 | | - |
1767 | | - |
1768 | | - |
1769 | | - |
1770 | | - |
1771 | | - |
1772 | | - |
1773 | | - |
1774 | | - |
1775 | | - |
1776 | | - |
1777 | | - |
1778 | | - |
1779 | | - |
1780 | | - |
1781 | | - |
1782 | | - |
1783 | | - |
1784 | | - |
1785 | | - |
1786 | | - |
1787 | | - |
1788 | | - |
1789 | | - |
1790 | | - |
1791 | | - |
1792 | | - |
1793 | | - |
1794 | | - |
1795 | | - |
1796 | | - |
1797 | | - |
1798 | | - |
1799 | | - |
1800 | | - |
1801 | | - |
1802 | | - |
1803 | | - |
1804 | | - |
1805 | | - |
1806 | | - |
1807 | | - |
1808 | | - |
1809 | | - |
1810 | | - |
1811 | | - |
1812 | | - |
1813 | | - |
1814 | | - |
1815 | | - |
1816 | | - |
1817 | | - |
1818 | | - |
1819 | | - |
1820 | | - |
1821 | | - |
1822 | | - |
1823 | | - |
1824 | | - |
1825 | | - |
1826 | | - |
1827 | | - |
1828 | | - |
1829 | | - |
1830 | | - |
1831 | | - |
1832 | | - |
1833 | | - |
1834 | | - |
1835 | | - |
1836 | | - |
1837 | | - |
1838 | | - |
1839 | | - |
1840 | | - |
1841 | | - |
1842 | | - |
1843 | | - |
1844 | | - |
1845 | | - |
1846 | | - |
1847 | | - |
1848 | | - |
1849 | | - |
1850 | | - |
1851 | void qt_qFindChildren_helper(const QObject *parent, const QString &name, | - |
1852 | const QMetaObject &mo, QList<void*> *list, Qt::FindChildOptions options) | - |
1853 | { | - |
1854 | if (!parent || !list)TRUE | evaluated 13 times by 2 testsEvaluated by:- tst_QAbstractButton
- tst_QCheckBox
| FALSE | evaluated 51187 times by 57 testsEvaluated by:- tst_Gestures
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QHttpNetworkConnection
- tst_QInputDialog
- tst_QItemDelegate
- tst_QLineEdit
- tst_QMainWindow
- tst_QMdiArea
- ...
|
TRUE | never evaluated | FALSE | evaluated 51187 times by 57 testsEvaluated by:- tst_Gestures
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QHttpNetworkConnection
- tst_QInputDialog
- tst_QItemDelegate
- tst_QLineEdit
- tst_QMainWindow
- tst_QMdiArea
- ...
|
| 0-51187 |
1855 | return;executed 13 times by 2 tests: return; Executed by:- tst_QAbstractButton
- tst_QCheckBox
| 13 |
1856 | const QObjectList &children = parent->children(); | - |
1857 | QObject *obj; | - |
1858 | for (int i = 0; i < children.size(); ++i) {TRUE | evaluated 51174 times by 54 testsEvaluated by:- tst_Gestures
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QHttpNetworkConnection
- tst_QInputDialog
- tst_QItemDelegate
- tst_QLineEdit
- tst_QMainWindow
- tst_QMdiArea
- ...
| FALSE | evaluated 51187 times by 57 testsEvaluated by:- tst_Gestures
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QHttpNetworkConnection
- tst_QInputDialog
- tst_QItemDelegate
- tst_QLineEdit
- tst_QMainWindow
- tst_QMdiArea
- ...
|
| 51174-51187 |
1859 | obj = children.at(i); | - |
1860 | if (mo.cast(obj)) {TRUE | evaluated 19696 times by 42 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDialog
- tst_QDialogButtonBox
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QHttpNetworkConnection
- tst_QInputDialog
- tst_QItemDelegate
- tst_QLineEdit
- tst_QMainWindow
- tst_QMessageBox
- tst_QMetaObject
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkDiskCache
- ...
| FALSE | evaluated 31478 times by 50 testsEvaluated by:- tst_Gestures
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QInputDialog
- tst_QItemDelegate
- tst_QLineEdit
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- ...
|
| 19696-31478 |
1861 | if (name.isNull() || obj->objectName() == name)TRUE | evaluated 19364 times by 42 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDialog
- tst_QDialogButtonBox
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QHttpNetworkConnection
- tst_QInputDialog
- tst_QItemDelegate
- tst_QLineEdit
- tst_QMainWindow
- tst_QMessageBox
- tst_QMetaObject
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkDiskCache
- ...
| FALSE | evaluated 332 times by 3 testsEvaluated by:- tst_QFiledialog
- tst_QItemDelegate
- tst_QObject
|
TRUE | evaluated 55 times by 3 testsEvaluated by:- tst_QFiledialog
- tst_QItemDelegate
- tst_QObject
| FALSE | evaluated 277 times by 3 testsEvaluated by:- tst_QFiledialog
- tst_QItemDelegate
- tst_QObject
|
| 55-19364 |
1862 | list->append(obj);executed 19419 times by 42 tests: list->append(obj); Executed by:- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDialog
- tst_QDialogButtonBox
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QHttpNetworkConnection
- tst_QInputDialog
- tst_QItemDelegate
- tst_QLineEdit
- tst_QMainWindow
- tst_QMessageBox
- tst_QMetaObject
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkDiskCache
- ...
| 19419 |
1863 | }executed 19696 times by 42 tests: end of block Executed by:- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDialog
- tst_QDialogButtonBox
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QHttpNetworkConnection
- tst_QInputDialog
- tst_QItemDelegate
- tst_QLineEdit
- tst_QMainWindow
- tst_QMessageBox
- tst_QMetaObject
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkDiskCache
- ...
| 19696 |
1864 | if (options & Qt::FindChildrenRecursively)TRUE | evaluated 48391 times by 44 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDialog
- tst_QDialogButtonBox
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QHttpNetworkConnection
- tst_QInputDialog
- tst_QItemDelegate
- tst_QLineEdit
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMessageBox
- tst_QMetaObject
- ...
| FALSE | evaluated 2783 times by 21 testsEvaluated by:- tst_Gestures
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QDockWidget
- tst_QGraphicsProxyWidget
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMenuBar
- tst_QObject
- tst_QPrinter
- tst_QShortcut
- tst_QSizeGrip
- tst_QStatusBar
- tst_QStyleSheetStyle
- tst_QToolBar
- tst_QWidget
- tst_QWidget_window
- tst_QWindowContainer
|
| 2783-48391 |
1865 | qt_qFindChildren_helper(obj, name, mo, list, options);executed 48391 times by 44 tests: qt_qFindChildren_helper(obj, name, mo, list, options); Executed by:- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDialog
- tst_QDialogButtonBox
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QHttpNetworkConnection
- tst_QInputDialog
- tst_QItemDelegate
- tst_QLineEdit
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMessageBox
- tst_QMetaObject
- ...
| 48391 |
1866 | }executed 51174 times by 54 tests: end of block Executed by:- tst_Gestures
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QHttpNetworkConnection
- tst_QInputDialog
- tst_QItemDelegate
- tst_QLineEdit
- tst_QMainWindow
- tst_QMdiArea
- ...
| 51174 |
1867 | }executed 51187 times by 57 tests: end of block Executed by:- tst_Gestures
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QHttpNetworkConnection
- tst_QInputDialog
- tst_QItemDelegate
- tst_QLineEdit
- tst_QMainWindow
- tst_QMdiArea
- ...
| 51187 |
1868 | | - |
1869 | #ifndef QT_NO_REGEXP | - |
1870 | | - |
1871 | | - |
1872 | | - |
1873 | void qt_qFindChildren_helper(const QObject *parent, const QRegExp &re, | - |
1874 | const QMetaObject &mo, QList<void*> *list, Qt::FindChildOptions options) | - |
1875 | { | - |
1876 | if (!parent || !list)TRUE | never evaluated | FALSE | evaluated 55 times by 1 test |
TRUE | never evaluated | FALSE | evaluated 55 times by 1 test |
| 0-55 |
1877 | return; never executed: return; | 0 |
1878 | const QObjectList &children = parent->children(); | - |
1879 | QRegExp reCopy = re; | - |
1880 | QObject *obj; | - |
1881 | for (int i = 0; i < children.size(); ++i) {TRUE | evaluated 70 times by 1 test | FALSE | evaluated 55 times by 1 test |
| 55-70 |
1882 | obj = children.at(i); | - |
1883 | if (mo.cast(obj) && reCopy.indexIn(obj->objectName()) != -1)TRUE | evaluated 52 times by 1 test | FALSE | evaluated 18 times by 1 test |
TRUE | evaluated 15 times by 1 test | FALSE | evaluated 37 times by 1 test |
| 15-52 |
1884 | list->append(obj);executed 15 times by 1 test: list->append(obj); | 15 |
1885 | | - |
1886 | if (options & Qt::FindChildrenRecursively)TRUE | evaluated 45 times by 1 test | FALSE | evaluated 25 times by 1 test |
| 25-45 |
1887 | qt_qFindChildren_helper(obj, re, mo, list, options);executed 45 times by 1 test: qt_qFindChildren_helper(obj, re, mo, list, options); | 45 |
1888 | }executed 70 times by 1 test: end of block | 70 |
1889 | }executed 55 times by 1 test: end of block | 55 |
1890 | #endif // QT_NO_REGEXP | - |
1891 | | - |
1892 | #ifndef QT_NO_REGULAREXPRESSION | - |
1893 | | - |
1894 | | - |
1895 | | - |
1896 | void qt_qFindChildren_helper(const QObject *parent, const QRegularExpression &re, | - |
1897 | const QMetaObject &mo, QList<void*> *list, Qt::FindChildOptions options) | - |
1898 | { | - |
1899 | if (!parent || !list)TRUE | never evaluated | FALSE | evaluated 50 times by 1 test |
TRUE | never evaluated | FALSE | evaluated 50 times by 1 test |
| 0-50 |
1900 | return; never executed: return; | 0 |
1901 | const QObjectList &children = parent->children(); | - |
1902 | QObject *obj; | - |
1903 | for (int i = 0; i < children.size(); ++i) {TRUE | evaluated 45 times by 1 test | FALSE | evaluated 50 times by 1 test |
| 45-50 |
1904 | obj = children.at(i); | - |
1905 | if (mo.cast(obj)) {TRUE | evaluated 33 times by 1 test | FALSE | evaluated 12 times by 1 test |
| 12-33 |
1906 | QRegularExpressionMatch m = re.match(obj->objectName()); | - |
1907 | if (m.hasMatch())TRUE | evaluated 10 times by 1 test | FALSE | evaluated 23 times by 1 test |
| 10-23 |
1908 | list->append(obj);executed 10 times by 1 test: list->append(obj); | 10 |
1909 | }executed 33 times by 1 test: end of block | 33 |
1910 | if (options & Qt::FindChildrenRecursively)TRUE | evaluated 45 times by 1 test | FALSE | never evaluated |
| 0-45 |
1911 | qt_qFindChildren_helper(obj, re, mo, list, options);executed 45 times by 1 test: qt_qFindChildren_helper(obj, re, mo, list, options); | 45 |
1912 | }executed 45 times by 1 test: end of block | 45 |
1913 | }executed 50 times by 1 test: end of block | 50 |
1914 | #endif // QT_NO_REGULAREXPRESSION | - |
1915 | | - |
1916 | | - |
1917 | | - |
1918 | | - |
1919 | QObject *qt_qFindChild_helper(const QObject *parent, const QString &name, const QMetaObject &mo, Qt::FindChildOptions options) | - |
1920 | { | - |
1921 | if (!parent)TRUE | never evaluated | FALSE | evaluated 5822 times by 34 testsEvaluated by:- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QComboBox
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QGraphicsView
- tst_QInputDialog
- tst_QItemDelegate
- tst_QKeySequenceEdit
- tst_QLineEdit
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMessageBox
- tst_QObject
- tst_QPlainTextEdit
- tst_QPrinter
- tst_QProgressDialog
- ...
|
| 0-5822 |
1922 | return 0; never executed: return 0; | 0 |
1923 | const QObjectList &children = parent->children(); | - |
1924 | QObject *obj; | - |
1925 | int i; | - |
1926 | for (i = 0; i < children.size(); ++i) {TRUE | evaluated 7442 times by 33 testsEvaluated by:- tst_QApplication
- tst_QCalendarWidget
- tst_QComboBox
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QGraphicsView
- tst_QInputDialog
- tst_QItemDelegate
- tst_QKeySequenceEdit
- tst_QLineEdit
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMessageBox
- tst_QObject
- tst_QPlainTextEdit
- tst_QPrinter
- tst_QProgressDialog
- tst_QSizeGrip
- ...
| FALSE | evaluated 5323 times by 22 testsEvaluated by:- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QComboBox
- tst_QDateTimeEdit
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsView
- tst_QItemDelegate
- tst_QLineEdit
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QObject
- tst_QPlainTextEdit
- tst_QPrinter
- tst_QSizeGrip
- tst_QStateMachine
- tst_QStyleSheetStyle
- tst_QTableView
- tst_QTreeView
- tst_QTreeWidget
|
| 5323-7442 |
1927 | obj = children.at(i); | - |
1928 | if (mo.cast(obj) && (name.isNull() || obj->objectName() == name))TRUE | evaluated 810 times by 30 testsEvaluated by:- tst_QApplication
- tst_QCalendarWidget
- tst_QComboBox
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QInputDialog
- tst_QItemDelegate
- tst_QKeySequenceEdit
- tst_QLineEdit
- tst_QMainWindow
- tst_QMdiArea
- tst_QMessageBox
- tst_QObject
- tst_QPlainTextEdit
- tst_QPrinter
- tst_QProgressDialog
- tst_QStackedWidget
- tst_QStateMachine
- tst_QStatusBar
- ...
| FALSE | evaluated 6632 times by 30 testsEvaluated by:- tst_QCalendarWidget
- tst_QComboBox
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QGraphicsView
- tst_QInputDialog
- tst_QItemDelegate
- tst_QLineEdit
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMessageBox
- tst_QObject
- tst_QPlainTextEdit
- tst_QPrinter
- tst_QProgressDialog
- tst_QSizeGrip
- tst_QStackedWidget
- tst_QStateMachine
- ...
|
TRUE | evaluated 308 times by 25 testsEvaluated by:- tst_QComboBox
- tst_QDialog
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QInputDialog
- tst_QItemDelegate
- tst_QKeySequenceEdit
- tst_QLineEdit
- tst_QMainWindow
- tst_QMdiArea
- tst_QMessageBox
- tst_QObject
- tst_QPlainTextEdit
- tst_QPrinter
- tst_QProgressDialog
- tst_QStateMachine
- tst_QStatusBar
- tst_QStyleSheetStyle
- tst_QTableView
- tst_QTextEdit
- tst_QTreeView
- tst_QTreeWidget
| FALSE | evaluated 502 times by 12 testsEvaluated by:- tst_QApplication
- tst_QCalendarWidget
- tst_QDateTimeEdit
- tst_QFileDialog2
- tst_QFiledialog
- tst_QLineEdit
- tst_QMainWindow
- tst_QMessageBox
- tst_QObject
- tst_QPlainTextEdit
- tst_QStackedWidget
- tst_QStyleSheetStyle
|
TRUE | evaluated 191 times by 12 testsEvaluated by:- tst_QApplication
- tst_QCalendarWidget
- tst_QDateTimeEdit
- tst_QFileDialog2
- tst_QFiledialog
- tst_QLineEdit
- tst_QMainWindow
- tst_QMessageBox
- tst_QObject
- tst_QPlainTextEdit
- tst_QStackedWidget
- tst_QStyleSheetStyle
| FALSE | evaluated 311 times by 9 testsEvaluated by:- tst_QCalendarWidget
- tst_QDateTimeEdit
- tst_QFileDialog2
- tst_QFiledialog
- tst_QMainWindow
- tst_QObject
- tst_QPlainTextEdit
- tst_QStackedWidget
- tst_QStyleSheetStyle
|
| 191-6632 |
1929 | return obj;executed 499 times by 30 tests: return obj; Executed by:- tst_QApplication
- tst_QCalendarWidget
- tst_QComboBox
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QInputDialog
- tst_QItemDelegate
- tst_QKeySequenceEdit
- tst_QLineEdit
- tst_QMainWindow
- tst_QMdiArea
- tst_QMessageBox
- tst_QObject
- tst_QPlainTextEdit
- tst_QPrinter
- tst_QProgressDialog
- tst_QStackedWidget
- tst_QStateMachine
- tst_QStatusBar
- ...
| 499 |
1930 | }executed 6943 times by 30 tests: end of block Executed by:- tst_QCalendarWidget
- tst_QComboBox
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QGraphicsView
- tst_QInputDialog
- tst_QItemDelegate
- tst_QLineEdit
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMessageBox
- tst_QObject
- tst_QPlainTextEdit
- tst_QPrinter
- tst_QProgressDialog
- tst_QSizeGrip
- tst_QStackedWidget
- tst_QStateMachine
- ...
| 6943 |
1931 | if (options & Qt::FindChildrenRecursively) {TRUE | evaluated 5314 times by 22 testsEvaluated by:- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QComboBox
- tst_QDateTimeEdit
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsView
- tst_QItemDelegate
- tst_QLineEdit
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QObject
- tst_QPlainTextEdit
- tst_QPrinter
- tst_QSizeGrip
- tst_QStateMachine
- tst_QStyleSheetStyle
- tst_QTableView
- tst_QTreeView
- tst_QTreeWidget
| FALSE | evaluated 9 times by 1 test |
| 9-5314 |
1932 | for (i = 0; i < children.size(); ++i) {TRUE | evaluated 4841 times by 20 testsEvaluated by:- tst_QCalendarWidget
- tst_QComboBox
- tst_QDateTimeEdit
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsView
- tst_QItemDelegate
- tst_QLineEdit
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QObject
- tst_QPlainTextEdit
- tst_QPrinter
- tst_QSizeGrip
- tst_QStateMachine
- tst_QStyleSheetStyle
- tst_QTableView
- tst_QTreeView
- tst_QTreeWidget
| FALSE | evaluated 5104 times by 20 testsEvaluated by:- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QComboBox
- tst_QDateTimeEdit
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsView
- tst_QLineEdit
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QObject
- tst_QPlainTextEdit
- tst_QPrinter
- tst_QSizeGrip
- tst_QStateMachine
- tst_QStyleSheetStyle
- tst_QTreeView
- tst_QTreeWidget
|
| 4841-5104 |
1933 | obj = qt_qFindChild_helper(children.at(i), name, mo, options); | - |
1934 | if (obj)TRUE | evaluated 210 times by 13 testsEvaluated by:- tst_QCalendarWidget
- tst_QComboBox
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QItemDelegate
- tst_QObject
- tst_QPlainTextEdit
- tst_QPrinter
- tst_QStyleSheetStyle
- tst_QTableView
- tst_QTreeView
- tst_QTreeWidget
| FALSE | evaluated 4631 times by 18 testsEvaluated by:- tst_QCalendarWidget
- tst_QComboBox
- tst_QDateTimeEdit
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsView
- tst_QLineEdit
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QObject
- tst_QPlainTextEdit
- tst_QPrinter
- tst_QSizeGrip
- tst_QStateMachine
- tst_QStyleSheetStyle
- tst_QTreeView
- tst_QTreeWidget
|
| 210-4631 |
1935 | return obj;executed 210 times by 13 tests: return obj; Executed by:- tst_QCalendarWidget
- tst_QComboBox
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QItemDelegate
- tst_QObject
- tst_QPlainTextEdit
- tst_QPrinter
- tst_QStyleSheetStyle
- tst_QTableView
- tst_QTreeView
- tst_QTreeWidget
| 210 |
1936 | }executed 4631 times by 18 tests: end of block Executed by:- tst_QCalendarWidget
- tst_QComboBox
- tst_QDateTimeEdit
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsView
- tst_QLineEdit
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QObject
- tst_QPlainTextEdit
- tst_QPrinter
- tst_QSizeGrip
- tst_QStateMachine
- tst_QStyleSheetStyle
- tst_QTreeView
- tst_QTreeWidget
| 4631 |
1937 | }executed 5104 times by 20 tests: end of block Executed by:- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QComboBox
- tst_QDateTimeEdit
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsView
- tst_QLineEdit
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QObject
- tst_QPlainTextEdit
- tst_QPrinter
- tst_QSizeGrip
- tst_QStateMachine
- tst_QStyleSheetStyle
- tst_QTreeView
- tst_QTreeWidget
| 5104 |
1938 | return 0;executed 5113 times by 20 tests: return 0; Executed by:- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QComboBox
- tst_QDateTimeEdit
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsView
- tst_QLineEdit
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QObject
- tst_QPlainTextEdit
- tst_QPrinter
- tst_QSizeGrip
- tst_QStateMachine
- tst_QStyleSheetStyle
- tst_QTreeView
- tst_QTreeWidget
| 5113 |
1939 | } | - |
1940 | | - |
1941 | | - |
1942 | | - |
1943 | | - |
1944 | | - |
1945 | | - |
1946 | void QObject::setParent(QObject *parent) | - |
1947 | { | - |
1948 | Q_D(QObject); | - |
1949 | Q_ASSERT(!d->isWidget); | - |
1950 | d->setParent_helper(parent); | - |
1951 | }executed 150854 times by 254 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| 150854 |
1952 | | - |
1953 | void QObjectPrivate::deleteChildren() | - |
1954 | { | - |
1955 | Q_ASSERT_X(!isDeletingChildren, "QObjectPrivate::deleteChildren()", "isDeletingChildren already set, did this function recurse?"); | - |
1956 | isDeletingChildren = true; | - |
1957 | | - |
1958 | | - |
1959 | | - |
1960 | for (int i = 0; i < children.count(); ++i) {TRUE | evaluated 88872 times by 631 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 43884 times by 631 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
|
| 43884-88872 |
1961 | currentChildBeingDeleted = children.at(i); | - |
1962 | children[i] = 0; | - |
1963 | delete currentChildBeingDeleted; | - |
1964 | }executed 88872 times by 631 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
| 88872 |
1965 | children.clear(); | - |
1966 | currentChildBeingDeleted = 0; | - |
1967 | isDeletingChildren = false; | - |
1968 | }executed 43884 times by 631 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
| 43884 |
1969 | | - |
1970 | void QObjectPrivate::setParent_helper(QObject *o) | - |
1971 | { | - |
1972 | Q_Q(QObject); | - |
1973 | if (o == parent)TRUE | evaluated 1586 times by 43 testsEvaluated by:- tst_ModelTest
- tst_QAbstractAnimation
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QAnimationGroup
- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDirModel
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QHeaderView
- tst_QItemModel
- tst_QItemView
- tst_QLineEdit
- tst_QListView
- tst_QMainWindow
- tst_QNetworkDiskCache
- tst_QNetworkReply
- tst_QParallelAnimationGroup
- tst_QPauseAnimation
- tst_QPrinter
- ...
| FALSE | evaluated 363758 times by 659 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 1586-363758 |
1974 | return;executed 1586 times by 43 tests: return; Executed by:- tst_ModelTest
- tst_QAbstractAnimation
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QAnimationGroup
- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDirModel
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QHeaderView
- tst_QItemModel
- tst_QItemView
- tst_QLineEdit
- tst_QListView
- tst_QMainWindow
- tst_QNetworkDiskCache
- tst_QNetworkReply
- tst_QParallelAnimationGroup
- tst_QPauseAnimation
- tst_QPrinter
- ...
| 1586 |
1975 | if (parent) {TRUE | evaluated 179807 times by 646 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- ...
| FALSE | evaluated 183951 times by 255 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 179807-183951 |
1976 | QObjectPrivate *parentD = parent->d_func(); | - |
1977 | if (parentD->isDeletingChildren && wasDeletedTRUE | evaluated 88872 times by 631 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 90935 times by 469 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
|
TRUE | evaluated 88872 times by 631 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
| FALSE | never evaluated |
| 0-90935 |
1978 | && parentD->currentChildBeingDeleted == q) {TRUE | evaluated 88870 times by 631 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 2 times by 2 tests |
| 2-88870 |
1979 | | - |
1980 | | - |
1981 | } else {executed 88870 times by 631 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
| 88870 |
1982 | const int index = parentD->children.indexOf(q); | - |
1983 | if (parentD->isDeletingChildren) {TRUE | evaluated 2 times by 2 tests | FALSE | evaluated 90935 times by 469 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
|
| 2-90935 |
1984 | parentD->children[index] = 0; | - |
1985 | } else {executed 2 times by 2 tests: end of block | 2 |
1986 | parentD->children.removeAt(index); | - |
1987 | if (sendChildEvents && parentD->receiveChildEvents) {TRUE | evaluated 90934 times by 468 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 1 time by 1 test |
TRUE | evaluated 90934 times by 468 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
| FALSE | never evaluated |
| 0-90934 |
1988 | QChildEvent e(QEvent::ChildRemoved, q); | - |
1989 | QCoreApplication::sendEvent(parent, &e); | - |
1990 | }executed 90934 times by 468 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
| 90934 |
1991 | }executed 90935 times by 469 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
| 90935 |
1992 | } | - |
1993 | } | - |
1994 | parent = o; | - |
1995 | if (parent) {TRUE | evaluated 184981 times by 255 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| FALSE | evaluated 178777 times by 646 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- ...
|
| 178777-184981 |
1996 | | - |
1997 | if (threadData != parent->d_func()->threadData) {TRUE | never evaluated | FALSE | evaluated 184981 times by 255 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 0-184981 |
1998 | qWarning("QObject::setParent: Cannot set parent, new parent is in a different thread"); | - |
1999 | parent = 0; | - |
2000 | return; never executed: return; | 0 |
2001 | } | - |
2002 | parent->d_func()->children.append(q); | - |
2003 | if(sendChildEvents && parent->d_func()->receiveChildEvents) {TRUE | evaluated 184980 times by 255 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| FALSE | evaluated 1 time by 1 test |
TRUE | evaluated 184980 times by 255 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| FALSE | never evaluated |
| 0-184980 |
2004 | if (!isWidget) {TRUE | evaluated 128802 times by 253 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| FALSE | evaluated 56178 times by 118 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QErrorMessage
- ...
|
| 56178-128802 |
2005 | QChildEvent e(QEvent::ChildAdded, q); | - |
2006 | QCoreApplication::sendEvent(parent, &e); | - |
2007 | }executed 128802 times by 253 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| 128802 |
2008 | }executed 184980 times by 255 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| 184980 |
2009 | }executed 184981 times by 255 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| 184981 |
2010 | if (!wasDeleted && !isDeletingChildren && declarativeData && QAbstractDeclarativeData::parentChanged)TRUE | evaluated 205419 times by 255 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| FALSE | evaluated 158339 times by 645 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- ...
|
TRUE | evaluated 205419 times by 255 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| FALSE | never evaluated |
TRUE | evaluated 1 time by 1 test | FALSE | evaluated 205418 times by 255 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
TRUE | evaluated 1 time by 1 test | FALSE | never evaluated |
| 0-205419 |
2011 | QAbstractDeclarativeData::parentChanged(declarativeData, q, o);executed 1 time by 1 test: QAbstractDeclarativeData::parentChanged(declarativeData, q, o); | 1 |
2012 | }executed 363758 times by 659 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| 363758 |
2013 | | - |
2014 | | - |
2015 | | - |
2016 | | - |
2017 | | - |
2018 | | - |
2019 | | - |
2020 | | - |
2021 | | - |
2022 | | - |
2023 | | - |
2024 | | - |
2025 | | - |
2026 | | - |
2027 | | - |
2028 | | - |
2029 | | - |
2030 | | - |
2031 | | - |
2032 | | - |
2033 | | - |
2034 | | - |
2035 | | - |
2036 | | - |
2037 | | - |
2038 | | - |
2039 | | - |
2040 | | - |
2041 | | - |
2042 | | - |
2043 | | - |
2044 | | - |
2045 | | - |
2046 | | - |
2047 | | - |
2048 | | - |
2049 | | - |
2050 | | - |
2051 | | - |
2052 | | - |
2053 | | - |
2054 | | - |
2055 | | - |
2056 | void QObject::installEventFilter(QObject *obj) | - |
2057 | { | - |
2058 | Q_D(QObject); | - |
2059 | if (!obj)TRUE | never evaluated | FALSE | evaluated 26389 times by 93 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QCoreApplication
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDirModel
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusFrame
- tst_QFontComboBox
- tst_QFontDialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- ...
|
| 0-26389 |
2060 | return; never executed: return; | 0 |
2061 | if (d->threadData != obj->d_func()->threadData) {TRUE | evaluated 1 time by 1 test | FALSE | evaluated 26388 times by 93 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QCoreApplication
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDirModel
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusFrame
- tst_QFontComboBox
- tst_QFontDialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- ...
|
| 1-26388 |
2062 | qWarning("QObject::installEventFilter(): Cannot filter events for objects in a different thread."); | - |
2063 | return;executed 1 time by 1 test: return; | 1 |
2064 | } | - |
2065 | | - |
2066 | if (!d->extraData)TRUE | evaluated 17706 times by 92 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QCoreApplication
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDirModel
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusFrame
- tst_QFontComboBox
- tst_QFontDialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- ...
| FALSE | evaluated 8682 times by 82 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDirModel
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFontDialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- ...
|
| 8682-17706 |
2067 | d->extraData = new QObjectPrivate::ExtraData;executed 17706 times by 92 tests: d->extraData = new QObjectPrivate::ExtraData; Executed by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QCoreApplication
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDirModel
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusFrame
- tst_QFontComboBox
- tst_QFontDialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- ...
| 17706 |
2068 | | - |
2069 | | - |
2070 | d->extraData->eventFilters.removeAll((QObject*)0); | - |
2071 | d->extraData->eventFilters.removeAll(obj); | - |
2072 | d->extraData->eventFilters.prepend(obj); | - |
2073 | }executed 26388 times by 93 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QCoreApplication
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDirModel
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusFrame
- tst_QFontComboBox
- tst_QFontDialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- ...
| 26388 |
2074 | | - |
2075 | | - |
2076 | | - |
2077 | | - |
2078 | | - |
2079 | | - |
2080 | | - |
2081 | | - |
2082 | | - |
2083 | | - |
2084 | | - |
2085 | | - |
2086 | | - |
2087 | | - |
2088 | void QObject::removeEventFilter(QObject *obj) | - |
2089 | { | - |
2090 | Q_D(QObject); | - |
2091 | if (d->extraData) {TRUE | evaluated 1561 times by 40 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QComboBox
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDialog
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusFrame
- tst_QFontComboBox
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QInputDialog
- tst_QItemDelegate
- tst_QItemView
- tst_QLineEdit
- tst_QListWidget
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMenuBar
- ...
| FALSE | evaluated 1017 times by 6 testsEvaluated by:- tst_QAccessibility
- tst_QGridLayout
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QPushButton
- tst_QSizeGrip
|
| 1017-1561 |
2092 | for (int i = 0; i < d->extraData->eventFilters.count(); ++i) {TRUE | evaluated 1849 times by 40 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QComboBox
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDialog
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusFrame
- tst_QFontComboBox
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QInputDialog
- tst_QItemDelegate
- tst_QItemView
- tst_QLineEdit
- tst_QListWidget
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMenuBar
- ...
| FALSE | evaluated 1561 times by 40 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QComboBox
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDialog
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusFrame
- tst_QFontComboBox
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QInputDialog
- tst_QItemDelegate
- tst_QItemView
- tst_QLineEdit
- tst_QListWidget
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMenuBar
- ...
|
| 1561-1849 |
2093 | if (d->extraData->eventFilters.at(i) == obj)TRUE | evaluated 1092 times by 40 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QComboBox
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDialog
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusFrame
- tst_QFontComboBox
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QInputDialog
- tst_QItemDelegate
- tst_QItemView
- tst_QLineEdit
- tst_QListWidget
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMenuBar
- ...
| FALSE | evaluated 757 times by 15 testsEvaluated by:- tst_QAbstractItemView
- tst_QCalendarWidget
- tst_QComboBox
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenuBar
- tst_QStyleSheetStyle
- tst_QTableView
- tst_QTreeView
- tst_QTreeWidget
|
| 757-1092 |
2094 | d->extraData->eventFilters[i] = 0;executed 1092 times by 40 tests: d->extraData->eventFilters[i] = 0; Executed by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QComboBox
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDialog
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusFrame
- tst_QFontComboBox
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QInputDialog
- tst_QItemDelegate
- tst_QItemView
- tst_QLineEdit
- tst_QListWidget
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMenuBar
- ...
| 1092 |
2095 | }executed 1849 times by 40 tests: end of block Executed by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QComboBox
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDialog
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusFrame
- tst_QFontComboBox
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QInputDialog
- tst_QItemDelegate
- tst_QItemView
- tst_QLineEdit
- tst_QListWidget
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMenuBar
- ...
| 1849 |
2096 | }executed 1561 times by 40 tests: end of block Executed by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QComboBox
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDialog
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusFrame
- tst_QFontComboBox
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QInputDialog
- tst_QItemDelegate
- tst_QItemView
- tst_QLineEdit
- tst_QListWidget
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMenuBar
- ...
| 1561 |
2097 | }executed 2578 times by 41 tests: end of block Executed by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QComboBox
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDialog
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusFrame
- tst_QFontComboBox
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QGridLayout
- tst_QInputDialog
- tst_QItemDelegate
- tst_QItemView
- tst_QLineEdit
- tst_QListWidget
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- ...
| 2578 |
2098 | | - |
2099 | | - |
2100 | | - |
2101 | | - |
2102 | | - |
2103 | | - |
2104 | | - |
2105 | | - |
2106 | | - |
2107 | | - |
2108 | | - |
2109 | | - |
2110 | | - |
2111 | | - |
2112 | | - |
2113 | | - |
2114 | | - |
2115 | | - |
2116 | | - |
2117 | | - |
2118 | | - |
2119 | | - |
2120 | | - |
2121 | | - |
2122 | | - |
2123 | | - |
2124 | | - |
2125 | | - |
2126 | | - |
2127 | | - |
2128 | | - |
2129 | | - |
2130 | | - |
2131 | | - |
2132 | | - |
2133 | | - |
2134 | | - |
2135 | | - |
2136 | void QObject::deleteLater() | - |
2137 | { | - |
2138 | QCoreApplication::postEvent(this, new QDeferredDeleteEvent()); | - |
2139 | }executed 11211 times by 213 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
| 11211 |
2140 | | - |
2141 | | - |
2142 | | - |
2143 | | - |
2144 | | - |
2145 | | - |
2146 | | - |
2147 | | - |
2148 | | - |
2149 | | - |
2150 | | - |
2151 | | - |
2152 | | - |
2153 | | - |
2154 | | - |
2155 | | - |
2156 | | - |
2157 | | - |
2158 | | - |
2159 | | - |
2160 | | - |
2161 | | - |
2162 | | - |
2163 | | - |
2164 | | - |
2165 | | - |
2166 | | - |
2167 | | - |
2168 | | - |
2169 | | - |
2170 | | - |
2171 | | - |
2172 | | - |
2173 | | - |
2174 | | - |
2175 | | - |
2176 | | - |
2177 | | - |
2178 | | - |
2179 | | - |
2180 | | - |
2181 | | - |
2182 | | - |
2183 | | - |
2184 | | - |
2185 | | - |
2186 | | - |
2187 | | - |
2188 | | - |
2189 | | - |
2190 | | - |
2191 | | - |
2192 | | - |
2193 | | - |
2194 | | - |
2195 | | - |
2196 | | - |
2197 | | - |
2198 | | - |
2199 | | - |
2200 | | - |
2201 | | - |
2202 | | - |
2203 | | - |
2204 | | - |
2205 | | - |
2206 | | - |
2207 | | - |
2208 | | - |
2209 | const char *qFlagLocation(const char *method) | - |
2210 | { | - |
2211 | QThreadData *currentThreadData = QThreadData::current(false); | - |
2212 | if (currentThreadData != 0)TRUE | evaluated 1001350 times by 294 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| FALSE | never evaluated |
| 0-1001350 |
2213 | currentThreadData->flaggedSignatures.store(method);executed 1001350 times by 294 tests: currentThreadData->flaggedSignatures.store(method); Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| 1001350 |
2214 | return method;executed 1001350 times by 294 tests: return method; Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| 1001350 |
2215 | } | - |
2216 | | - |
2217 | static int extract_code(const char *member) | - |
2218 | { | - |
2219 | | - |
2220 | return (((int)(*member) - '0') & 0x3);executed 1099123 times by 265 tests: return (((int)(*member) - '0') & 0x3); Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| 1099123 |
2221 | } | - |
2222 | | - |
2223 | static const char * extract_location(const char *member) | - |
2224 | { | - |
2225 | if (QThreadData::current()->flaggedSignatures.contains(member)) {TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2226 | | - |
2227 | const char *location = member + qstrlen(member) + 1; | - |
2228 | if (*location != '\0')TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2229 | return location; never executed: return location; | 0 |
2230 | } never executed: end of block | 0 |
2231 | return 0; never executed: return 0; | 0 |
2232 | } | - |
2233 | | - |
2234 | static bool check_signal_macro(const QObject *sender, const char *signal, | - |
2235 | const char *func, const char *op) | - |
2236 | { | - |
2237 | int sigcode = extract_code(signal); | - |
2238 | if (sigcode != QSIGNAL_CODE) {TRUE | never evaluated | FALSE | evaluated 550481 times by 264 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 0-550481 |
2239 | if (sigcode == QSLOT_CODE)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2240 | qWarning("QObject::%s: Attempt to %s non-signal %s::%s", never executed: QMessageLogger(__FILE__, 2240, __PRETTY_FUNCTION__).warning("QObject::%s: Attempt to %s non-signal %s::%s", func, op, sender->metaObject()->className(), signal+1); | 0 |
2241 | func, op, sender->metaObject()->className(), signal+1); never executed: QMessageLogger(__FILE__, 2240, __PRETTY_FUNCTION__).warning("QObject::%s: Attempt to %s non-signal %s::%s", func, op, sender->metaObject()->className(), signal+1); | 0 |
2242 | else | - |
2243 | qWarning("QObject::%s: Use the SIGNAL macro to %s %s::%s", never executed: QMessageLogger(__FILE__, 2243, __PRETTY_FUNCTION__).warning("QObject::%s: Use the SIGNAL macro to %s %s::%s", func, op, sender->metaObject()->className(), signal); | 0 |
2244 | func, op, sender->metaObject()->className(), signal); never executed: QMessageLogger(__FILE__, 2243, __PRETTY_FUNCTION__).warning("QObject::%s: Use the SIGNAL macro to %s %s::%s", func, op, sender->metaObject()->className(), signal); | 0 |
2245 | return false; never executed: return false; | 0 |
2246 | } | - |
2247 | return true;executed 550481 times by 264 tests: return true; Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| 550481 |
2248 | } | - |
2249 | | - |
2250 | static bool check_method_code(int code, const QObject *object, | - |
2251 | const char *method, const char *func) | - |
2252 | { | - |
2253 | if (code != QSLOT_CODE && code != QSIGNAL_CODE) {TRUE | evaluated 25195 times by 177 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| FALSE | evaluated 523447 times by 262 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
|
TRUE | never evaluated | FALSE | evaluated 25195 times by 177 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
|
| 0-523447 |
2254 | qWarning("QObject::%s: Use the SLOT or SIGNAL macro to " | - |
2255 | "%s %s::%s", func, func, object->metaObject()->className(), method); | - |
2256 | return false; never executed: return false; | 0 |
2257 | } | - |
2258 | return true;executed 548642 times by 265 tests: return true; Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| 548642 |
2259 | } | - |
2260 | | - |
2261 | static void err_method_notfound(const QObject *object, | - |
2262 | const char *method, const char *func) | - |
2263 | { | - |
2264 | const char *type = "method"; | - |
2265 | switch (extract_code(method)) { | - |
2266 | case QSLOT_CODE: type = "slot"; break; never executed: break; never executed: case 1: | 0 |
2267 | case QSIGNAL_CODE: type = "signal"; break; never executed: break; never executed: case 2: | 0 |
2268 | } | - |
2269 | const char *loc = extract_location(method); | - |
2270 | if (strchr(method,')') == 0) TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2271 | qWarning("QObject::%s: Parentheses expected, %s %s::%s%s%s", never executed: QMessageLogger(__FILE__, 2271, __PRETTY_FUNCTION__).warning("QObject::%s: Parentheses expected, %s %s::%s%s%s", func, type, object->metaObject()->className(), method+1, loc ? " in ": "", loc ? loc : ""); | 0 |
2272 | func, type, object->metaObject()->className(), method+1, never executed: QMessageLogger(__FILE__, 2271, __PRETTY_FUNCTION__).warning("QObject::%s: Parentheses expected, %s %s::%s%s%s", func, type, object->metaObject()->className(), method+1, loc ? " in ": "", loc ? loc : ""); | 0 |
2273 | loc ? " in ": "", loc ? loc : ""); never executed: QMessageLogger(__FILE__, 2271, __PRETTY_FUNCTION__).warning("QObject::%s: Parentheses expected, %s %s::%s%s%s", func, type, object->metaObject()->className(), method+1, loc ? " in ": "", loc ? loc : ""); | 0 |
2274 | else | - |
2275 | qWarning("QObject::%s: No such %s %s::%s%s%s", never executed: QMessageLogger(__FILE__, 2275, __PRETTY_FUNCTION__).warning("QObject::%s: No such %s %s::%s%s%s", func, type, object->metaObject()->className(), method+1, loc ? " in ": "", loc ? loc : ""); | 0 |
2276 | func, type, object->metaObject()->className(), method+1, never executed: QMessageLogger(__FILE__, 2275, __PRETTY_FUNCTION__).warning("QObject::%s: No such %s %s::%s%s%s", func, type, object->metaObject()->className(), method+1, loc ? " in ": "", loc ? loc : ""); | 0 |
2277 | loc ? " in ": "", loc ? loc : ""); never executed: QMessageLogger(__FILE__, 2275, __PRETTY_FUNCTION__).warning("QObject::%s: No such %s %s::%s%s%s", func, type, object->metaObject()->className(), method+1, loc ? " in ": "", loc ? loc : ""); | 0 |
2278 | | - |
2279 | } | - |
2280 | | - |
2281 | | - |
2282 | static void err_info_about_objects(const char * func, | - |
2283 | const QObject * sender, | - |
2284 | const QObject * receiver) | - |
2285 | { | - |
2286 | QString a = sender ? sender->objectName() : QString();TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2287 | QString b = receiver ? receiver->objectName() : QString();TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2288 | if (!a.isEmpty())TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2289 | qWarning("QObject::%s: (sender name: '%s')", func, a.toLocal8Bit().data()); never executed: QMessageLogger(__FILE__, 2289, __PRETTY_FUNCTION__).warning("QObject::%s: (sender name: '%s')", func, a.toLocal8Bit().data()); | 0 |
2290 | if (!b.isEmpty())TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2291 | qWarning("QObject::%s: (receiver name: '%s')", func, b.toLocal8Bit().data()); never executed: QMessageLogger(__FILE__, 2291, __PRETTY_FUNCTION__).warning("QObject::%s: (receiver name: '%s')", func, b.toLocal8Bit().data()); | 0 |
2292 | } never executed: end of block | 0 |
2293 | | - |
2294 | | - |
2295 | | - |
2296 | | - |
2297 | | - |
2298 | | - |
2299 | | - |
2300 | | - |
2301 | | - |
2302 | | - |
2303 | | - |
2304 | | - |
2305 | | - |
2306 | | - |
2307 | | - |
2308 | | - |
2309 | | - |
2310 | | - |
2311 | | - |
2312 | | - |
2313 | | - |
2314 | | - |
2315 | | - |
2316 | QObject *QObject::sender() const | - |
2317 | { | - |
2318 | Q_D(const QObject); | - |
2319 | | - |
2320 | QMutexLocker locker(signalSlotLock(this)); | - |
2321 | if (!d->currentSender)TRUE | evaluated 61 times by 18 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QFtp
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QMetaObject
- tst_QNetworkAccessManager
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QObject
- tst_QTcpServer
- tst_QUdpSocket
- tst_QXmlInputSource
- tst_QXmlStream
| FALSE | evaluated 8884 times by 83 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QButtonGroup
- tst_QColorDialog
- tst_QColumnView
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusThreading
- tst_QDialogButtonBox
- tst_QDnsLookup
- tst_QDnsLookup_Appless
- tst_QDockWidget
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsProxyWidget
- ...
|
| 61-8884 |
2322 | return 0;executed 61 times by 18 tests: return 0; Executed by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QFtp
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QMetaObject
- tst_QNetworkAccessManager
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QObject
- tst_QTcpServer
- tst_QUdpSocket
- tst_QXmlInputSource
- tst_QXmlStream
| 61 |
2323 | | - |
2324 | for (QObjectPrivate::Connection *c = d->senders; c; c = c->next) {TRUE | evaluated 44828 times by 83 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QButtonGroup
- tst_QColorDialog
- tst_QColumnView
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusThreading
- tst_QDialogButtonBox
- tst_QDnsLookup
- tst_QDnsLookup_Appless
- tst_QDockWidget
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsProxyWidget
- ...
| FALSE | evaluated 3 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QObject
|
| 3-44828 |
2325 | if (c->sender == d->currentSender->sender)TRUE | evaluated 8881 times by 82 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QButtonGroup
- tst_QColorDialog
- tst_QColumnView
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusThreading
- tst_QDialogButtonBox
- tst_QDnsLookup
- tst_QDnsLookup_Appless
- tst_QDockWidget
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsProxyWidget
- ...
| FALSE | evaluated 35947 times by 49 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QColorDialog
- tst_QColumnView
- tst_QDBusAbstractAdaptor
- tst_QDBusThreading
- tst_QDialogButtonBox
- tst_QDnsLookup
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsProxyWidget
- tst_QGraphicsView
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QLineEdit
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMenuBar
- tst_QMessageBox
- ...
|
| 8881-35947 |
2326 | return d->currentSender->sender;executed 8881 times by 82 tests: return d->currentSender->sender; Executed by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QButtonGroup
- tst_QColorDialog
- tst_QColumnView
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusThreading
- tst_QDialogButtonBox
- tst_QDnsLookup
- tst_QDnsLookup_Appless
- tst_QDockWidget
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsProxyWidget
- ...
| 8881 |
2327 | }executed 35947 times by 49 tests: end of block Executed by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QColorDialog
- tst_QColumnView
- tst_QDBusAbstractAdaptor
- tst_QDBusThreading
- tst_QDialogButtonBox
- tst_QDnsLookup
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsProxyWidget
- tst_QGraphicsView
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QLineEdit
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMenuBar
- tst_QMessageBox
- ...
| 35947 |
2328 | | - |
2329 | return 0;executed 3 times by 2 tests: return 0; Executed by:- tst_QMetaObject
- tst_QObject
| 3 |
2330 | } | - |
2331 | | - |
2332 | | - |
2333 | | - |
2334 | | - |
2335 | | - |
2336 | | - |
2337 | | - |
2338 | | - |
2339 | | - |
2340 | | - |
2341 | | - |
2342 | | - |
2343 | | - |
2344 | | - |
2345 | | - |
2346 | | - |
2347 | | - |
2348 | | - |
2349 | | - |
2350 | | - |
2351 | | - |
2352 | | - |
2353 | | - |
2354 | | - |
2355 | | - |
2356 | | - |
2357 | int QObject::senderSignalIndex() const | - |
2358 | { | - |
2359 | Q_D(const QObject); | - |
2360 | | - |
2361 | QMutexLocker locker(signalSlotLock(this)); | - |
2362 | if (!d->currentSender)TRUE | evaluated 5 times by 1 test | FALSE | evaluated 396 times by 15 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusThreading
- tst_QObject
- tst_QState
- tst_QStateMachine
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuspendingcall - unknown status
- tst_qdbuspendingreply - unknown status
- tst_qdbusreply - unknown status
|
| 5-396 |
2363 | return -1;executed 5 times by 1 test: return -1; | 5 |
2364 | | - |
2365 | for (QObjectPrivate::Connection *c = d->senders; c; c = c->next) {TRUE | evaluated 776 times by 15 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusThreading
- tst_QObject
- tst_QState
- tst_QStateMachine
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuspendingcall - unknown status
- tst_qdbuspendingreply - unknown status
- tst_qdbusreply - unknown status
| FALSE | evaluated 2 times by 1 test |
| 2-776 |
2366 | if (c->sender == d->currentSender->sender) {TRUE | evaluated 394 times by 15 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusThreading
- tst_QObject
- tst_QState
- tst_QStateMachine
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuspendingcall - unknown status
- tst_qdbuspendingreply - unknown status
- tst_qdbusreply - unknown status
| FALSE | evaluated 382 times by 4 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QDBusThreading
- tst_QStateMachine
- tst_qdbusabstractadaptor - unknown status
|
| 382-394 |
2367 | | - |
2368 | return QMetaObjectPrivate::signal(c->sender->metaObject(), d->currentSender->signal).methodIndex();executed 394 times by 15 tests: return QMetaObjectPrivate::signal(c->sender->metaObject(), d->currentSender->signal).methodIndex(); Executed by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusThreading
- tst_QObject
- tst_QState
- tst_QStateMachine
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuspendingcall - unknown status
- tst_qdbuspendingreply - unknown status
- tst_qdbusreply - unknown status
| 394 |
2369 | } | - |
2370 | }executed 382 times by 4 tests: end of block Executed by:- tst_QDBusAbstractAdaptor
- tst_QDBusThreading
- tst_QStateMachine
- tst_qdbusabstractadaptor - unknown status
| 382 |
2371 | | - |
2372 | return -1;executed 2 times by 1 test: return -1; | 2 |
2373 | } | - |
2374 | | - |
2375 | | - |
2376 | | - |
2377 | | - |
2378 | | - |
2379 | | - |
2380 | | - |
2381 | | - |
2382 | | - |
2383 | | - |
2384 | | - |
2385 | | - |
2386 | | - |
2387 | | - |
2388 | | - |
2389 | | - |
2390 | | - |
2391 | | - |
2392 | | - |
2393 | | - |
2394 | | - |
2395 | | - |
2396 | int QObject::receivers(const char *signal) const | - |
2397 | { | - |
2398 | Q_D(const QObject); | - |
2399 | int receivers = 0; | - |
2400 | if (signal) {TRUE | evaluated 54 times by 5 testsEvaluated by:- tst_QGraphicsSceneIndex
- tst_QMdiArea
- tst_QMenu
- tst_QObject
- tst_QToolButton
| FALSE | never evaluated |
| 0-54 |
2401 | QByteArray signal_name = QMetaObject::normalizedSignature(signal); | - |
2402 | signal = signal_name; | - |
2403 | #ifndef QT_NO_DEBUG | - |
2404 | if (!check_signal_macro(this, signal, "receivers", "bind"))TRUE | never evaluated | FALSE | evaluated 54 times by 5 testsEvaluated by:- tst_QGraphicsSceneIndex
- tst_QMdiArea
- tst_QMenu
- tst_QObject
- tst_QToolButton
|
| 0-54 |
2405 | return 0; never executed: return 0; | 0 |
2406 | #endif | - |
2407 | signal++; | - |
2408 | int signal_index = d->signalIndex(signal); | - |
2409 | if (signal_index < 0) {TRUE | never evaluated | FALSE | evaluated 54 times by 5 testsEvaluated by:- tst_QGraphicsSceneIndex
- tst_QMdiArea
- tst_QMenu
- tst_QObject
- tst_QToolButton
|
| 0-54 |
2410 | #ifndef QT_NO_DEBUG | - |
2411 | err_method_notfound(this, signal-1, "receivers"); | - |
2412 | #endif | - |
2413 | return 0; never executed: return 0; | 0 |
2414 | } | - |
2415 | | - |
2416 | if (!d->isSignalConnected(signal_index))TRUE | evaluated 41 times by 4 testsEvaluated by:- tst_QMdiArea
- tst_QMenu
- tst_QObject
- tst_QToolButton
| FALSE | evaluated 13 times by 3 testsEvaluated by:- tst_QGraphicsSceneIndex
- tst_QMdiArea
- tst_QObject
|
| 13-41 |
2417 | return receivers;executed 41 times by 4 tests: return receivers; Executed by:- tst_QMdiArea
- tst_QMenu
- tst_QObject
- tst_QToolButton
| 41 |
2418 | | - |
2419 | if (d->declarativeData && QAbstractDeclarativeData::receivers) {TRUE | never evaluated | FALSE | evaluated 13 times by 3 testsEvaluated by:- tst_QGraphicsSceneIndex
- tst_QMdiArea
- tst_QObject
|
TRUE | never evaluated | FALSE | never evaluated |
| 0-13 |
2420 | receivers += QAbstractDeclarativeData::receivers(d->declarativeData, this, | - |
2421 | signal_index); | - |
2422 | } never executed: end of block | 0 |
2423 | | - |
2424 | QMutexLocker locker(signalSlotLock(this)); | - |
2425 | if (d->connectionLists) {TRUE | evaluated 13 times by 3 testsEvaluated by:- tst_QGraphicsSceneIndex
- tst_QMdiArea
- tst_QObject
| FALSE | never evaluated |
| 0-13 |
2426 | if (signal_index < d->connectionLists->count()) {TRUE | evaluated 13 times by 3 testsEvaluated by:- tst_QGraphicsSceneIndex
- tst_QMdiArea
- tst_QObject
| FALSE | never evaluated |
| 0-13 |
2427 | const QObjectPrivate::Connection *c = | - |
2428 | d->connectionLists->at(signal_index).first; | - |
2429 | while (c) {TRUE | evaluated 15 times by 3 testsEvaluated by:- tst_QGraphicsSceneIndex
- tst_QMdiArea
- tst_QObject
| FALSE | evaluated 13 times by 3 testsEvaluated by:- tst_QGraphicsSceneIndex
- tst_QMdiArea
- tst_QObject
|
| 13-15 |
2430 | receivers += c->receiver ? 1 : 0;TRUE | evaluated 9 times by 3 testsEvaluated by:- tst_QGraphicsSceneIndex
- tst_QMdiArea
- tst_QObject
| FALSE | evaluated 6 times by 2 tests |
| 6-9 |
2431 | c = c->nextConnectionList; | - |
2432 | }executed 15 times by 3 tests: end of block Executed by:- tst_QGraphicsSceneIndex
- tst_QMdiArea
- tst_QObject
| 15 |
2433 | }executed 13 times by 3 tests: end of block Executed by:- tst_QGraphicsSceneIndex
- tst_QMdiArea
- tst_QObject
| 13 |
2434 | }executed 13 times by 3 tests: end of block Executed by:- tst_QGraphicsSceneIndex
- tst_QMdiArea
- tst_QObject
| 13 |
2435 | }executed 13 times by 3 tests: end of block Executed by:- tst_QGraphicsSceneIndex
- tst_QMdiArea
- tst_QObject
| 13 |
2436 | return receivers;executed 13 times by 3 tests: return receivers; Executed by:- tst_QGraphicsSceneIndex
- tst_QMdiArea
- tst_QObject
| 13 |
2437 | } | - |
2438 | | - |
2439 | | - |
2440 | | - |
2441 | | - |
2442 | | - |
2443 | | - |
2444 | | - |
2445 | | - |
2446 | | - |
2447 | | - |
2448 | | - |
2449 | | - |
2450 | | - |
2451 | | - |
2452 | | - |
2453 | | - |
2454 | | - |
2455 | | - |
2456 | | - |
2457 | bool QObject::isSignalConnected(const QMetaMethod &signal) const | - |
2458 | { | - |
2459 | Q_D(const QObject); | - |
2460 | if (!signal.mobj)TRUE | evaluated 1 time by 1 test | FALSE | evaluated 54 times by 6 testsEvaluated by:- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QObject
- tst_QTreeView
- tst_QTreeWidget
- tst_qdbusinterface - unknown status
|
| 1-54 |
2461 | return false;executed 1 time by 1 test: return false; | 1 |
2462 | | - |
2463 | Q_ASSERT_X(signal.mobj->cast(this) && signal.methodType() == QMetaMethod::Signal, | - |
2464 | "QObject::isSignalConnected" , "the parameter must be a signal member of the object"); | - |
2465 | uint signalIndex = (signal.handle - QMetaObjectPrivate::get(signal.mobj)->methodData)/5; | - |
2466 | | - |
2467 | if (signal.mobj->d.data[signal.handle + 4] & MethodCloned)TRUE | evaluated 3 times by 1 test | FALSE | evaluated 51 times by 6 testsEvaluated by:- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QObject
- tst_QTreeView
- tst_QTreeWidget
- tst_qdbusinterface - unknown status
|
| 3-51 |
2468 | signalIndex = QMetaObjectPrivate::originalClone(signal.mobj, signalIndex);executed 3 times by 1 test: signalIndex = QMetaObjectPrivate::originalClone(signal.mobj, signalIndex); | 3 |
2469 | | - |
2470 | signalIndex += QMetaObjectPrivate::signalOffset(signal.mobj); | - |
2471 | | - |
2472 | if (signalIndex < sizeof(d->connectedSignals) * 8)TRUE | evaluated 50 times by 6 testsEvaluated by:- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QObject
- tst_QTreeView
- tst_QTreeWidget
- tst_qdbusinterface - unknown status
| FALSE | evaluated 4 times by 1 test |
| 4-50 |
2473 | return d->isSignalConnected(signalIndex);executed 50 times by 6 tests: return d->isSignalConnected(signalIndex); Executed by:- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QObject
- tst_QTreeView
- tst_QTreeWidget
- tst_qdbusinterface - unknown status
| 50 |
2474 | | - |
2475 | QMutexLocker locker(signalSlotLock(this)); | - |
2476 | if (d->connectionLists) {TRUE | evaluated 3 times by 1 test | FALSE | evaluated 1 time by 1 test |
| 1-3 |
2477 | if (signalIndex < uint(d->connectionLists->count())) {TRUE | evaluated 3 times by 1 test | FALSE | never evaluated |
| 0-3 |
2478 | const QObjectPrivate::Connection *c = | - |
2479 | d->connectionLists->at(signalIndex).first; | - |
2480 | while (c) {TRUE | evaluated 3 times by 1 test | FALSE | never evaluated |
| 0-3 |
2481 | if (c->receiver)TRUE | evaluated 3 times by 1 test | FALSE | never evaluated |
| 0-3 |
2482 | return true;executed 3 times by 1 test: return true; | 3 |
2483 | c = c->nextConnectionList; | - |
2484 | } never executed: end of block | 0 |
2485 | } never executed: end of block | 0 |
2486 | } never executed: end of block | 0 |
2487 | return false;executed 1 time by 1 test: return false; | 1 |
2488 | } | - |
2489 | | - |
2490 | | - |
2491 | | - |
2492 | | - |
2493 | | - |
2494 | | - |
2495 | | - |
2496 | | - |
2497 | | - |
2498 | | - |
2499 | | - |
2500 | | - |
2501 | | - |
2502 | | - |
2503 | | - |
2504 | | - |
2505 | | - |
2506 | | - |
2507 | | - |
2508 | | - |
2509 | | - |
2510 | | - |
2511 | | - |
2512 | | - |
2513 | void QMetaObjectPrivate::memberIndexes(const QObject *obj, | - |
2514 | const QMetaMethod &member, | - |
2515 | int *signalIndex, int *methodIndex) | - |
2516 | { | - |
2517 | *signalIndex = -1; | - |
2518 | *methodIndex = -1; | - |
2519 | if (!obj || !member.mobj)TRUE | evaluated 8 times by 1 test | FALSE | evaluated 80 times by 1 test |
TRUE | evaluated 9 times by 1 test | FALSE | evaluated 71 times by 1 test |
| 8-80 |
2520 | return;executed 17 times by 1 test: return; | 17 |
2521 | const QMetaObject *m = obj->metaObject(); | - |
2522 | | - |
2523 | while (m != 0 && m != member.mobj)TRUE | evaluated 73 times by 1 test | FALSE | never evaluated |
TRUE | evaluated 2 times by 1 test | FALSE | evaluated 71 times by 1 test |
| 0-73 |
2524 | m = m->d.superdata;executed 2 times by 1 test: m = m->d.superdata; | 2 |
2525 | if (!m)TRUE | never evaluated | FALSE | evaluated 71 times by 1 test |
| 0-71 |
2526 | return; never executed: return; | 0 |
2527 | *signalIndex = *methodIndex = (member.handle - get(member.mobj)->methodData)/5; | - |
2528 | | - |
2529 | int signalOffset; | - |
2530 | int methodOffset; | - |
2531 | computeOffsets(m, &signalOffset, &methodOffset); | - |
2532 | | - |
2533 | *methodIndex += methodOffset; | - |
2534 | if (member.methodType() == QMetaMethod::Signal) {TRUE | evaluated 36 times by 1 test | FALSE | evaluated 35 times by 1 test |
| 35-36 |
2535 | *signalIndex = originalClone(m, *signalIndex); | - |
2536 | *signalIndex += signalOffset; | - |
2537 | } else {executed 36 times by 1 test: end of block | 36 |
2538 | *signalIndex = -1; | - |
2539 | }executed 35 times by 1 test: end of block | 35 |
2540 | } | - |
2541 | | - |
2542 | #ifndef QT_NO_DEBUG | - |
2543 | static inline void check_and_warn_compat(const QMetaObject *sender, const QMetaMethod &signal, | - |
2544 | const QMetaObject *receiver, const QMetaMethod &method) | - |
2545 | { | - |
2546 | if (signal.attributes() & QMetaMethod::Compatibility) {TRUE | never evaluated | FALSE | evaluated 521968 times by 264 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 0-521968 |
2547 | if (!(method.attributes() & QMetaMethod::Compatibility))TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2548 | qWarning("QObject::connect: Connecting from COMPAT signal (%s::%s)", never executed: QMessageLogger(__FILE__, 2548, __PRETTY_FUNCTION__).warning("QObject::connect: Connecting from COMPAT signal (%s::%s)", sender->className(), signal.methodSignature().constData()); | 0 |
2549 | sender->className(), signal.methodSignature().constData()); never executed: QMessageLogger(__FILE__, 2548, __PRETTY_FUNCTION__).warning("QObject::connect: Connecting from COMPAT signal (%s::%s)", sender->className(), signal.methodSignature().constData()); | 0 |
2550 | } else if ((method.attributes() & QMetaMethod::Compatibility) && never executed: end of block TRUE | never evaluated | FALSE | evaluated 521968 times by 264 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 0-521968 |
2551 | method.methodType() == QMetaMethod::Signal) {TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2552 | qWarning("QObject::connect: Connecting from %s::%s to COMPAT slot (%s::%s)", | - |
2553 | sender->className(), signal.methodSignature().constData(), | - |
2554 | receiver->className(), method.methodSignature().constData()); | - |
2555 | } never executed: end of block | 0 |
2556 | }executed 521968 times by 264 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| 521968 |
2557 | #endif | - |
2558 | | - |
2559 | | - |
2560 | | - |
2561 | | - |
2562 | | - |
2563 | | - |
2564 | | - |
2565 | | - |
2566 | | - |
2567 | | - |
2568 | | - |
2569 | | - |
2570 | | - |
2571 | | - |
2572 | | - |
2573 | | - |
2574 | | - |
2575 | | - |
2576 | | - |
2577 | | - |
2578 | | - |
2579 | | - |
2580 | | - |
2581 | | - |
2582 | | - |
2583 | | - |
2584 | | - |
2585 | | - |
2586 | | - |
2587 | | - |
2588 | | - |
2589 | | - |
2590 | | - |
2591 | | - |
2592 | | - |
2593 | | - |
2594 | | - |
2595 | | - |
2596 | | - |
2597 | | - |
2598 | | - |
2599 | | - |
2600 | | - |
2601 | | - |
2602 | | - |
2603 | | - |
2604 | | - |
2605 | | - |
2606 | | - |
2607 | | - |
2608 | | - |
2609 | | - |
2610 | | - |
2611 | | - |
2612 | | - |
2613 | | - |
2614 | | - |
2615 | | - |
2616 | | - |
2617 | | - |
2618 | | - |
2619 | | - |
2620 | | - |
2621 | | - |
2622 | | - |
2623 | | - |
2624 | | - |
2625 | | - |
2626 | QMetaObject::Connection QObject::connect(const QObject *sender, const char *signal, | - |
2627 | const QObject *receiver, const char *method, | - |
2628 | Qt::ConnectionType type) | - |
2629 | { | - |
2630 | if (sender == 0 || receiver == 0 || signal == 0 || method == 0) {TRUE | never evaluated | FALSE | evaluated 521946 times by 264 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
TRUE | never evaluated | FALSE | evaluated 521946 times by 264 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
TRUE | never evaluated | FALSE | evaluated 521946 times by 264 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
TRUE | never evaluated | FALSE | evaluated 521946 times by 264 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 0-521946 |
2631 | qWarning("QObject::connect: Cannot connect %s::%s to %s::%s", | - |
2632 | sender ? sender->metaObject()->className() : "(null)", | - |
2633 | (signal && *signal) ? signal+1 : "(null)", | - |
2634 | receiver ? receiver->metaObject()->className() : "(null)", | - |
2635 | (method && *method) ? method+1 : "(null)"); | - |
2636 | return QMetaObject::Connection(0); never executed: return QMetaObject::Connection(0); | 0 |
2637 | } | - |
2638 | QByteArray tmp_signal_name; | - |
2639 | | - |
2640 | if (!check_signal_macro(sender, signal, "connect", "bind"))TRUE | never evaluated | FALSE | evaluated 521946 times by 264 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 0-521946 |
2641 | return QMetaObject::Connection(0); never executed: return QMetaObject::Connection(0); | 0 |
2642 | const QMetaObject *smeta = sender->metaObject(); | - |
2643 | const char *signal_arg = signal; | - |
2644 | ++signal; | - |
2645 | QArgumentTypeArray signalTypes; | - |
2646 | Q_ASSERT(QMetaObjectPrivate::get(smeta)->revision >= 7); | - |
2647 | QByteArray signalName = QMetaObjectPrivate::decodeMethodSignature(signal, signalTypes); | - |
2648 | int signal_index = QMetaObjectPrivate::indexOfSignalRelative( | - |
2649 | &smeta, signalName, signalTypes.size(), signalTypes.constData()); | - |
2650 | if (signal_index < 0) {TRUE | evaluated 1152 times by 12 testsEvaluated by:- tst_QAbstractNetworkCache
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QObject
- tst_QXmlInputSource
- tst_QXmlStream
- tst_Spdy
| FALSE | evaluated 520794 times by 264 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 1152-520794 |
2651 | | - |
2652 | tmp_signal_name = QMetaObject::normalizedSignature(signal - 1); | - |
2653 | signal = tmp_signal_name.constData() + 1; | - |
2654 | | - |
2655 | signalTypes.clear(); | - |
2656 | signalName = QMetaObjectPrivate::decodeMethodSignature(signal, signalTypes); | - |
2657 | smeta = sender->metaObject(); | - |
2658 | signal_index = QMetaObjectPrivate::indexOfSignalRelative( | - |
2659 | &smeta, signalName, signalTypes.size(), signalTypes.constData()); | - |
2660 | }executed 1152 times by 12 tests: end of block Executed by:- tst_QAbstractNetworkCache
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QObject
- tst_QXmlInputSource
- tst_QXmlStream
- tst_Spdy
| 1152 |
2661 | if (signal_index < 0) {TRUE | never evaluated | FALSE | evaluated 521946 times by 264 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 0-521946 |
2662 | err_method_notfound(sender, signal_arg, "connect"); | - |
2663 | err_info_about_objects("connect", sender, receiver); | - |
2664 | return QMetaObject::Connection(0); never executed: return QMetaObject::Connection(0); | 0 |
2665 | } | - |
2666 | signal_index = QMetaObjectPrivate::originalClone(smeta, signal_index); | - |
2667 | signal_index += QMetaObjectPrivate::signalOffset(smeta); | - |
2668 | | - |
2669 | QByteArray tmp_method_name; | - |
2670 | int membcode = extract_code(method); | - |
2671 | | - |
2672 | if (!check_method_code(membcode, receiver, method, "connect"))TRUE | never evaluated | FALSE | evaluated 521946 times by 264 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 0-521946 |
2673 | return QMetaObject::Connection(0); never executed: return QMetaObject::Connection(0); | 0 |
2674 | const char *method_arg = method; | - |
2675 | ++method; | - |
2676 | | - |
2677 | QArgumentTypeArray methodTypes; | - |
2678 | QByteArray methodName = QMetaObjectPrivate::decodeMethodSignature(method, methodTypes); | - |
2679 | const QMetaObject *rmeta = receiver->metaObject(); | - |
2680 | int method_index_relative = -1; | - |
2681 | Q_ASSERT(QMetaObjectPrivate::get(rmeta)->revision >= 7); | - |
2682 | switch (membcode) { | - |
2683 | case QSLOT_CODE:executed 496797 times by 261 tests: case 1: Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| 496797 |
2684 | method_index_relative = QMetaObjectPrivate::indexOfSlotRelative( | - |
2685 | &rmeta, methodName, methodTypes.size(), methodTypes.constData()); | - |
2686 | break;executed 496797 times by 261 tests: break; Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| 496797 |
2687 | case QSIGNAL_CODE:executed 25149 times by 177 tests: case 2: Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| 25149 |
2688 | method_index_relative = QMetaObjectPrivate::indexOfSignalRelative( | - |
2689 | &rmeta, methodName, methodTypes.size(), methodTypes.constData()); | - |
2690 | break;executed 25149 times by 177 tests: break; Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| 25149 |
2691 | } | - |
2692 | if (method_index_relative < 0) {TRUE | evaluated 991 times by 13 testsEvaluated by:- tst_QAbstractNetworkCache
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QObject
- tst_QTextDocument
- tst_QXmlInputSource
- tst_QXmlStream
- tst_Spdy
| FALSE | evaluated 520955 times by 264 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 991-520955 |
2693 | | - |
2694 | tmp_method_name = QMetaObject::normalizedSignature(method); | - |
2695 | method = tmp_method_name.constData(); | - |
2696 | | - |
2697 | methodTypes.clear(); | - |
2698 | methodName = QMetaObjectPrivate::decodeMethodSignature(method, methodTypes); | - |
2699 | | - |
2700 | rmeta = receiver->metaObject(); | - |
2701 | switch (membcode) { | - |
2702 | case QSLOT_CODE:executed 991 times by 13 tests: case 1: Executed by:- tst_QAbstractNetworkCache
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QObject
- tst_QTextDocument
- tst_QXmlInputSource
- tst_QXmlStream
- tst_Spdy
| 991 |
2703 | method_index_relative = QMetaObjectPrivate::indexOfSlotRelative( | - |
2704 | &rmeta, methodName, methodTypes.size(), methodTypes.constData()); | - |
2705 | break;executed 991 times by 13 tests: break; Executed by:- tst_QAbstractNetworkCache
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QObject
- tst_QTextDocument
- tst_QXmlInputSource
- tst_QXmlStream
- tst_Spdy
| 991 |
2706 | case QSIGNAL_CODE: never executed: case 2: | 0 |
2707 | method_index_relative = QMetaObjectPrivate::indexOfSignalRelative( | - |
2708 | &rmeta, methodName, methodTypes.size(), methodTypes.constData()); | - |
2709 | break; never executed: break; | 0 |
2710 | } | - |
2711 | }executed 991 times by 13 tests: end of block Executed by:- tst_QAbstractNetworkCache
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QObject
- tst_QTextDocument
- tst_QXmlInputSource
- tst_QXmlStream
- tst_Spdy
| 991 |
2712 | | - |
2713 | if (method_index_relative < 0) {TRUE | never evaluated | FALSE | evaluated 521946 times by 264 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 0-521946 |
2714 | err_method_notfound(receiver, method_arg, "connect"); | - |
2715 | err_info_about_objects("connect", sender, receiver); | - |
2716 | return QMetaObject::Connection(0); never executed: return QMetaObject::Connection(0); | 0 |
2717 | } | - |
2718 | | - |
2719 | if (!QMetaObjectPrivate::checkConnectArgs(signalTypes.size(), signalTypes.constData(),TRUE | evaluated 1 time by 1 test | FALSE | evaluated 521945 times by 264 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 1-521945 |
2720 | methodTypes.size(), methodTypes.constData())) {TRUE | evaluated 1 time by 1 test | FALSE | evaluated 521945 times by 264 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 1-521945 |
2721 | qWarning("QObject::connect: Incompatible sender/receiver arguments" | - |
2722 | "\n %s::%s --> %s::%s", | - |
2723 | sender->metaObject()->className(), signal, | - |
2724 | receiver->metaObject()->className(), method); | - |
2725 | return QMetaObject::Connection(0);executed 1 time by 1 test: return QMetaObject::Connection(0); | 1 |
2726 | } | - |
2727 | | - |
2728 | int *types = 0; | - |
2729 | if ((type == Qt::QueuedConnection)TRUE | evaluated 32425 times by 184 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- ...
| FALSE | evaluated 489520 times by 263 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 32425-489520 |
2730 | && !(types = queuedConnectionTypes(signalTypes.constData(), signalTypes.size()))) {TRUE | never evaluated | FALSE | evaluated 32425 times by 184 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- ...
|
| 0-32425 |
2731 | return QMetaObject::Connection(0); never executed: return QMetaObject::Connection(0); | 0 |
2732 | } | - |
2733 | | - |
2734 | #ifndef QT_NO_DEBUG | - |
2735 | QMetaMethod smethod = QMetaObjectPrivate::signal(smeta, signal_index); | - |
2736 | QMetaMethod rmethod = rmeta->method(method_index_relative + rmeta->methodOffset()); | - |
2737 | check_and_warn_compat(smeta, smethod, rmeta, rmethod); | - |
2738 | #endif | - |
2739 | QMetaObject::Connection handle = QMetaObject::Connection(QMetaObjectPrivate::connect( | - |
2740 | sender, signal_index, smeta, receiver, method_index_relative, rmeta ,type, types)); | - |
2741 | return handle;executed 521945 times by 264 tests: return handle; Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| 521945 |
2742 | } | - |
2743 | | - |
2744 | | - |
2745 | | - |
2746 | | - |
2747 | | - |
2748 | | - |
2749 | | - |
2750 | | - |
2751 | | - |
2752 | | - |
2753 | | - |
2754 | | - |
2755 | | - |
2756 | | - |
2757 | | - |
2758 | | - |
2759 | | - |
2760 | | - |
2761 | | - |
2762 | | - |
2763 | | - |
2764 | QMetaObject::Connection QObject::connect(const QObject *sender, const QMetaMethod &signal, | - |
2765 | const QObject *receiver, const QMetaMethod &method, | - |
2766 | Qt::ConnectionType type) | - |
2767 | { | - |
2768 | if (sender == 0TRUE | never evaluated | FALSE | evaluated 27 times by 1 test |
| 0-27 |
2769 | || receiver == 0TRUE | never evaluated | FALSE | evaluated 27 times by 1 test |
| 0-27 |
2770 | || signal.methodType() != QMetaMethod::SignalTRUE | evaluated 3 times by 1 test | FALSE | evaluated 24 times by 1 test |
| 3-24 |
2771 | || method.methodType() == QMetaMethod::Constructor) {TRUE | evaluated 1 time by 1 test | FALSE | evaluated 23 times by 1 test |
| 1-23 |
2772 | qWarning("QObject::connect: Cannot connect %s::%s to %s::%s", | - |
2773 | sender ? sender->metaObject()->className() : "(null)", | - |
2774 | signal.methodSignature().constData(), | - |
2775 | receiver ? receiver->metaObject()->className() : "(null)", | - |
2776 | method.methodSignature().constData() ); | - |
2777 | return QMetaObject::Connection(0);executed 4 times by 1 test: return QMetaObject::Connection(0); | 4 |
2778 | } | - |
2779 | | - |
2780 | int signal_index; | - |
2781 | int method_index; | - |
2782 | { | - |
2783 | int dummy; | - |
2784 | QMetaObjectPrivate::memberIndexes(sender, signal, &signal_index, &dummy); | - |
2785 | QMetaObjectPrivate::memberIndexes(receiver, method, &dummy, &method_index); | - |
2786 | } | - |
2787 | | - |
2788 | const QMetaObject *smeta = sender->metaObject(); | - |
2789 | const QMetaObject *rmeta = receiver->metaObject(); | - |
2790 | if (signal_index == -1) {TRUE | never evaluated | FALSE | evaluated 23 times by 1 test |
| 0-23 |
2791 | qWarning("QObject::connect: Can't find signal %s on instance of class %s", | - |
2792 | signal.methodSignature().constData(), smeta->className()); | - |
2793 | return QMetaObject::Connection(0); never executed: return QMetaObject::Connection(0); | 0 |
2794 | } | - |
2795 | if (method_index == -1) {TRUE | never evaluated | FALSE | evaluated 23 times by 1 test |
| 0-23 |
2796 | qWarning("QObject::connect: Can't find method %s on instance of class %s", | - |
2797 | method.methodSignature().constData(), rmeta->className()); | - |
2798 | return QMetaObject::Connection(0); never executed: return QMetaObject::Connection(0); | 0 |
2799 | } | - |
2800 | | - |
2801 | if (!QMetaObject::checkConnectArgs(signal.methodSignature().constData(), method.methodSignature().constData())) {TRUE | never evaluated | FALSE | evaluated 23 times by 1 test |
| 0-23 |
2802 | qWarning("QObject::connect: Incompatible sender/receiver arguments" | - |
2803 | "\n %s::%s --> %s::%s", | - |
2804 | smeta->className(), signal.methodSignature().constData(), | - |
2805 | rmeta->className(), method.methodSignature().constData()); | - |
2806 | return QMetaObject::Connection(0); never executed: return QMetaObject::Connection(0); | 0 |
2807 | } | - |
2808 | | - |
2809 | int *types = 0; | - |
2810 | if ((type == Qt::QueuedConnection)TRUE | never evaluated | FALSE | evaluated 23 times by 1 test |
| 0-23 |
2811 | && !(types = queuedConnectionTypes(signal.parameterTypes())))TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2812 | return QMetaObject::Connection(0); never executed: return QMetaObject::Connection(0); | 0 |
2813 | | - |
2814 | #ifndef QT_NO_DEBUG | - |
2815 | check_and_warn_compat(smeta, signal, rmeta, method); | - |
2816 | #endif | - |
2817 | QMetaObject::Connection handle = QMetaObject::Connection(QMetaObjectPrivate::connect( | - |
2818 | sender, signal_index, signal.enclosingMetaObject(), receiver, method_index, 0, type, types)); | - |
2819 | return handle;executed 23 times by 1 test: return handle; | 23 |
2820 | } | - |
2821 | | - |
2822 | | - |
2823 | | - |
2824 | | - |
2825 | | - |
2826 | | - |
2827 | | - |
2828 | | - |
2829 | | - |
2830 | | - |
2831 | | - |
2832 | | - |
2833 | | - |
2834 | | - |
2835 | | - |
2836 | | - |
2837 | | - |
2838 | | - |
2839 | | - |
2840 | | - |
2841 | | - |
2842 | | - |
2843 | | - |
2844 | | - |
2845 | | - |
2846 | | - |
2847 | | - |
2848 | | - |
2849 | | - |
2850 | | - |
2851 | | - |
2852 | | - |
2853 | | - |
2854 | | - |
2855 | | - |
2856 | | - |
2857 | | - |
2858 | | - |
2859 | | - |
2860 | | - |
2861 | | - |
2862 | | - |
2863 | | - |
2864 | | - |
2865 | | - |
2866 | | - |
2867 | | - |
2868 | | - |
2869 | | - |
2870 | | - |
2871 | | - |
2872 | | - |
2873 | | - |
2874 | | - |
2875 | | - |
2876 | | - |
2877 | | - |
2878 | | - |
2879 | | - |
2880 | | - |
2881 | | - |
2882 | | - |
2883 | | - |
2884 | | - |
2885 | | - |
2886 | | - |
2887 | | - |
2888 | | - |
2889 | | - |
2890 | | - |
2891 | | - |
2892 | | - |
2893 | | - |
2894 | | - |
2895 | | - |
2896 | | - |
2897 | | - |
2898 | bool QObject::disconnect(const QObject *sender, const char *signal, | - |
2899 | const QObject *receiver, const char *method) | - |
2900 | { | - |
2901 | if (sender == 0 || (receiver == 0 && method != 0)) {TRUE | never evaluated | FALSE | evaluated 41943 times by 333 testsEvaluated by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- ...
|
TRUE | evaluated 11699 times by 57 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QEventLoop
- tst_QFile
- tst_QFileDialog2
- tst_QFileInfo
- tst_QFileSystemModel
- tst_QFtp
- tst_QFutureWatcher
- tst_QGuiEventLoop
- tst_QHttpNetworkConnection
- tst_QHttpSocketEngine
- tst_QIODevice
- tst_QImage
- tst_QImageReader
- tst_QImageWriter
- tst_QKeyEvent
- tst_QLayout
- tst_QLocalSocket
- tst_QLoggingRegistry
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- ...
| FALSE | evaluated 30244 times by 301 testsEvaluated by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- ...
|
TRUE | never evaluated | FALSE | evaluated 11699 times by 57 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QEventLoop
- tst_QFile
- tst_QFileDialog2
- tst_QFileInfo
- tst_QFileSystemModel
- tst_QFtp
- tst_QFutureWatcher
- tst_QGuiEventLoop
- tst_QHttpNetworkConnection
- tst_QHttpSocketEngine
- tst_QIODevice
- tst_QImage
- tst_QImageReader
- tst_QImageWriter
- tst_QKeyEvent
- tst_QLayout
- tst_QLocalSocket
- tst_QLoggingRegistry
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- ...
|
| 0-41943 |
2902 | qWarning("QObject::disconnect: Unexpected null parameter"); | - |
2903 | return false; never executed: return false; | 0 |
2904 | } | - |
2905 | | - |
2906 | const char *signal_arg = signal; | - |
2907 | QByteArray signal_name; | - |
2908 | bool signal_found = false; | - |
2909 | if (signal) {TRUE | evaluated 28481 times by 108 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- ...
| FALSE | evaluated 13462 times by 268 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QEventLoop
- tst_QFile
- tst_QFileDialog2
- ...
|
| 13462-28481 |
2910 | QT_TRY { | - |
2911 | signal_name = QMetaObject::normalizedSignature(signal); | - |
2912 | signal = signal_name.constData(); | - |
2913 | } QT_CATCH (const std::bad_alloc &) {executed 28481 times by 108 tests: end of block Executed by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- ...
| 28481 |
2914 | | - |
2915 | if (sender->metaObject()->indexOfSignal(signal + 1) == -1)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2916 | QT_RETHROW; never executed: throw; | 0 |
2917 | } never executed: end of block | 0 |
2918 | | - |
2919 | if (!check_signal_macro(sender, signal, "disconnect", "unbind"))TRUE | never evaluated | FALSE | evaluated 28481 times by 108 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- ...
|
| 0-28481 |
2920 | return false; never executed: return false; | 0 |
2921 | signal++; | - |
2922 | }executed 28481 times by 108 tests: end of block Executed by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- ...
| 28481 |
2923 | | - |
2924 | QByteArray method_name; | - |
2925 | const char *method_arg = method; | - |
2926 | int membcode = -1; | - |
2927 | bool method_found = false; | - |
2928 | if (method) {TRUE | evaluated 26696 times by 110 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- ...
| FALSE | evaluated 15247 times by 265 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QEventLoop
- tst_QFile
- tst_QFileDialog2
- tst_QFileInfo
- ...
|
| 15247-26696 |
2929 | QT_TRY { | - |
2930 | method_name = QMetaObject::normalizedSignature(method); | - |
2931 | method = method_name.constData(); | - |
2932 | } QT_CATCH(const std::bad_alloc &) {executed 26696 times by 110 tests: end of block Executed by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- ...
| 26696 |
2933 | | - |
2934 | if (receiver->metaObject()->indexOfMethod(method + 1) == -1)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2935 | QT_RETHROW; never executed: throw; | 0 |
2936 | } never executed: end of block | 0 |
2937 | | - |
2938 | membcode = extract_code(method); | - |
2939 | if (!check_method_code(membcode, receiver, method, "disconnect"))TRUE | never evaluated | FALSE | evaluated 26696 times by 110 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- ...
|
| 0-26696 |
2940 | return false; never executed: return false; | 0 |
2941 | method++; | - |
2942 | }executed 26696 times by 110 tests: end of block Executed by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- ...
| 26696 |
2943 | | - |
2944 | | - |
2945 | | - |
2946 | | - |
2947 | | - |
2948 | bool res = false; | - |
2949 | const QMetaObject *smeta = sender->metaObject(); | - |
2950 | QByteArray signalName; | - |
2951 | QArgumentTypeArray signalTypes; | - |
2952 | Q_ASSERT(QMetaObjectPrivate::get(smeta)->revision >= 7); | - |
2953 | if (signal)TRUE | evaluated 28481 times by 108 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- ...
| FALSE | evaluated 13462 times by 268 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QEventLoop
- tst_QFile
- tst_QFileDialog2
- ...
|
| 13462-28481 |
2954 | signalName = QMetaObjectPrivate::decodeMethodSignature(signal, signalTypes);executed 28481 times by 108 tests: signalName = QMetaObjectPrivate::decodeMethodSignature(signal, signalTypes); Executed by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- ...
| 28481 |
2955 | QByteArray methodName; | - |
2956 | QArgumentTypeArray methodTypes; | - |
2957 | Q_ASSERT(!receiver || QMetaObjectPrivate::get(receiver->metaObject())->revision >= 7); | - |
2958 | if (method)TRUE | evaluated 26696 times by 110 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- ...
| FALSE | evaluated 15247 times by 265 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QEventLoop
- tst_QFile
- tst_QFileDialog2
- tst_QFileInfo
- ...
|
| 15247-26696 |
2959 | methodName = QMetaObjectPrivate::decodeMethodSignature(method, methodTypes);executed 26696 times by 110 tests: methodName = QMetaObjectPrivate::decodeMethodSignature(method, methodTypes); Executed by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- ...
| 26696 |
2960 | do { | - |
2961 | int signal_index = -1; | - |
2962 | if (signal) {TRUE | evaluated 54115 times by 108 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- ...
| FALSE | evaluated 13462 times by 268 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QEventLoop
- tst_QFile
- tst_QFileDialog2
- ...
|
| 13462-54115 |
2963 | signal_index = QMetaObjectPrivate::indexOfSignalRelative( | - |
2964 | &smeta, signalName, signalTypes.size(), signalTypes.constData()); | - |
2965 | if (signal_index < 0)TRUE | evaluated 25633 times by 102 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- ...
| FALSE | evaluated 28482 times by 108 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- ...
|
| 25633-28482 |
2966 | break;executed 25633 times by 102 tests: break; Executed by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- ...
| 25633 |
2967 | signal_index = QMetaObjectPrivate::originalClone(smeta, signal_index); | - |
2968 | signal_index += QMetaObjectPrivate::signalOffset(smeta); | - |
2969 | signal_found = true; | - |
2970 | }executed 28482 times by 108 tests: end of block Executed by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- ...
| 28482 |
2971 | | - |
2972 | if (!method) {TRUE | evaluated 15247 times by 265 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QEventLoop
- tst_QFile
- tst_QFileDialog2
- tst_QFileInfo
- ...
| FALSE | evaluated 26697 times by 110 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- ...
|
| 15247-26697 |
2973 | res |= QMetaObjectPrivate::disconnect(sender, signal_index, smeta, receiver, -1, 0); | - |
2974 | } else {executed 15247 times by 265 tests: end of block Executed by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QEventLoop
- tst_QFile
- tst_QFileDialog2
- tst_QFileInfo
- ...
| 15247 |
2975 | const QMetaObject *rmeta = receiver->metaObject(); | - |
2976 | do { | - |
2977 | int method_index = QMetaObjectPrivate::indexOfMethod( | - |
2978 | rmeta, methodName, methodTypes.size(), methodTypes.constData()); | - |
2979 | if (method_index >= 0)TRUE | evaluated 27254 times by 110 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- ...
| FALSE | evaluated 26690 times by 110 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- ...
|
| 26690-27254 |
2980 | while (method_index < rmeta->methodOffset())TRUE | evaluated 14149 times by 74 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- ...
| FALSE | evaluated 27254 times by 110 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- ...
|
| 14149-27254 |
2981 | rmeta = rmeta->superClass();executed 14149 times by 74 tests: rmeta = rmeta->superClass(); Executed by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- ...
| 14149 |
2982 | if (method_index < 0)TRUE | evaluated 26690 times by 110 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- ...
| FALSE | evaluated 27254 times by 110 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- ...
|
| 26690-27254 |
2983 | break;executed 26690 times by 110 tests: break; Executed by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- ...
| 26690 |
2984 | res |= QMetaObjectPrivate::disconnect(sender, signal_index, smeta, receiver, method_index, 0); | - |
2985 | method_found = true; | - |
2986 | } while ((rmeta = rmeta->superClass()));executed 27254 times by 110 tests: end of block Executed by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- ...
TRUE | evaluated 27247 times by 110 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- ...
| FALSE | evaluated 7 times by 1 test |
| 7-27254 |
2987 | }executed 26697 times by 110 tests: end of block Executed by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- ...
| 26697 |
2988 | } while (signal && (smeta = smeta->superClass()));TRUE | evaluated 28482 times by 108 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- ...
| FALSE | evaluated 13462 times by 268 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QEventLoop
- tst_QFile
- tst_QFileDialog2
- ...
|
TRUE | evaluated 25634 times by 102 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- ...
| FALSE | evaluated 2848 times by 51 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDialog
- tst_QDialogButtonBox
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFontDialog
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QGridLayout
- tst_QHeaderView
- tst_QIdentityProxyModel
- tst_QInputDialog
- tst_QItemDelegate
- ...
|
| 2848-28482 |
2989 | | - |
2990 | if (signal && !signal_found) {TRUE | evaluated 28481 times by 108 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- ...
| FALSE | evaluated 13462 times by 268 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QEventLoop
- tst_QFile
- tst_QFileDialog2
- ...
|
TRUE | never evaluated | FALSE | evaluated 28481 times by 108 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- ...
|
| 0-28481 |
2991 | err_method_notfound(sender, signal_arg, "disconnect"); | - |
2992 | err_info_about_objects("disconnect", sender, receiver); | - |
2993 | } else if (method && !method_found) { never executed: end of block TRUE | evaluated 26696 times by 110 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- ...
| FALSE | evaluated 15247 times by 265 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QEventLoop
- tst_QFile
- tst_QFileDialog2
- tst_QFileInfo
- ...
|
TRUE | never evaluated | FALSE | evaluated 26696 times by 110 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- ...
|
| 0-26696 |
2994 | err_method_notfound(receiver, method_arg, "disconnect"); | - |
2995 | err_info_about_objects("disconnect", sender, receiver); | - |
2996 | } never executed: end of block | 0 |
2997 | if (res) {TRUE | evaluated 22533 times by 301 testsEvaluated by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- ...
| FALSE | evaluated 19410 times by 111 testsEvaluated by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QComboBox
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDirModel
- tst_QEventLoop
- tst_QFile
- tst_QFileDialog2
- tst_QFileInfo
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFtp
- ...
|
| 19410-22533 |
2998 | if (!signal)TRUE | evaluated 3301 times by 228 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFtp
- tst_QFutureWatcher
- ...
| FALSE | evaluated 19232 times by 108 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- ...
|
| 3301-19232 |
2999 | const_cast<QObject*>(sender)->disconnectNotify(QMetaMethod());executed 3301 times by 228 tests: const_cast<QObject*>(sender)->disconnectNotify(QMetaMethod()); Executed by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFtp
- tst_QFutureWatcher
- ...
| 3301 |
3000 | }executed 22533 times by 301 tests: end of block Executed by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- ...
| 22533 |
3001 | return res;executed 41943 times by 333 tests: return res; Executed by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- ...
| 41943 |
3002 | } | - |
3003 | | - |
3004 | | - |
3005 | | - |
3006 | | - |
3007 | | - |
3008 | | - |
3009 | | - |
3010 | | - |
3011 | | - |
3012 | | - |
3013 | | - |
3014 | | - |
3015 | | - |
3016 | | - |
3017 | | - |
3018 | | - |
3019 | | - |
3020 | | - |
3021 | | - |
3022 | | - |
3023 | | - |
3024 | | - |
3025 | | - |
3026 | | - |
3027 | | - |
3028 | | - |
3029 | | - |
3030 | | - |
3031 | | - |
3032 | | - |
3033 | bool QObject::disconnect(const QObject *sender, const QMetaMethod &signal, | - |
3034 | const QObject *receiver, const QMetaMethod &method) | - |
3035 | { | - |
3036 | if (sender == 0 || (receiver == 0 && method.mobj != 0)) {TRUE | never evaluated | FALSE | evaluated 22 times by 1 test |
TRUE | evaluated 8 times by 1 test | FALSE | evaluated 14 times by 1 test |
TRUE | never evaluated | FALSE | evaluated 8 times by 1 test |
| 0-22 |
3037 | qWarning("QObject::disconnect: Unexpected null parameter"); | - |
3038 | return false; never executed: return false; | 0 |
3039 | } | - |
3040 | if (signal.mobj) {TRUE | evaluated 14 times by 1 test | FALSE | evaluated 8 times by 1 test |
| 8-14 |
3041 | if(signal.methodType() != QMetaMethod::Signal) {TRUE | evaluated 1 time by 1 test | FALSE | evaluated 13 times by 1 test |
| 1-13 |
3042 | qWarning("QObject::%s: Attempt to %s non-signal %s::%s", | - |
3043 | "disconnect","unbind", | - |
3044 | sender->metaObject()->className(), signal.methodSignature().constData()); | - |
3045 | return false;executed 1 time by 1 test: return false; | 1 |
3046 | } | - |
3047 | }executed 13 times by 1 test: end of block | 13 |
3048 | if (method.mobj) {TRUE | evaluated 12 times by 1 test | FALSE | evaluated 9 times by 1 test |
| 9-12 |
3049 | if(method.methodType() == QMetaMethod::Constructor) {TRUE | never evaluated | FALSE | evaluated 12 times by 1 test |
| 0-12 |
3050 | qWarning("QObject::disconect: cannot use constructor as argument %s::%s", | - |
3051 | receiver->metaObject()->className(), method.methodSignature().constData()); | - |
3052 | return false; never executed: return false; | 0 |
3053 | } | - |
3054 | }executed 12 times by 1 test: end of block | 12 |
3055 | | - |
3056 | | - |
3057 | QByteArray signalSignature; | - |
3058 | if (signal.mobj) {TRUE | evaluated 13 times by 1 test | FALSE | evaluated 8 times by 1 test |
| 8-13 |
3059 | signalSignature.reserve(signal.methodSignature().size()+1); | - |
3060 | signalSignature.append((char)(QSIGNAL_CODE + '0')); | - |
3061 | signalSignature.append(signal.methodSignature()); | - |
3062 | }executed 13 times by 1 test: end of block | 13 |
3063 | | - |
3064 | int signal_index; | - |
3065 | int method_index; | - |
3066 | { | - |
3067 | int dummy; | - |
3068 | QMetaObjectPrivate::memberIndexes(sender, signal, &signal_index, &dummy); | - |
3069 | QMetaObjectPrivate::memberIndexes(receiver, method, &dummy, &method_index); | - |
3070 | } | - |
3071 | | - |
3072 | | - |
3073 | if (signal.mobj && signal_index == -1) {TRUE | evaluated 13 times by 1 test | FALSE | evaluated 8 times by 1 test |
TRUE | never evaluated | FALSE | evaluated 13 times by 1 test |
| 0-13 |
3074 | qWarning("QObject::disconect: signal %s not found on class %s", | - |
3075 | signal.methodSignature().constData(), sender->metaObject()->className()); | - |
3076 | return false; never executed: return false; | 0 |
3077 | } | - |
3078 | | - |
3079 | if (receiver && method.mobj && method_index == -1) {TRUE | evaluated 13 times by 1 test | FALSE | evaluated 8 times by 1 test |
TRUE | evaluated 12 times by 1 test | FALSE | evaluated 1 time by 1 test |
TRUE | never evaluated | FALSE | evaluated 12 times by 1 test |
| 0-13 |
3080 | qWarning("QObject::disconect: method %s not found on class %s", | - |
3081 | method.methodSignature().constData(), receiver->metaObject()->className()); | - |
3082 | return false; never executed: return false; | 0 |
3083 | } | - |
3084 | | - |
3085 | if (!QMetaObjectPrivate::disconnect(sender, signal_index, signal.mobj, receiver, method_index, 0))TRUE | evaluated 1 time by 1 test | FALSE | evaluated 20 times by 1 test |
| 1-20 |
3086 | return false;executed 1 time by 1 test: return false; | 1 |
3087 | | - |
3088 | if (!signal.isValid()) {TRUE | evaluated 8 times by 1 test | FALSE | evaluated 12 times by 1 test |
| 8-12 |
3089 | | - |
3090 | | - |
3091 | | - |
3092 | | - |
3093 | const_cast<QObject*>(sender)->disconnectNotify(signal); | - |
3094 | }executed 8 times by 1 test: end of block | 8 |
3095 | return true;executed 20 times by 1 test: return true; | 20 |
3096 | } | - |
3097 | | - |
3098 | | - |
3099 | | - |
3100 | | - |
3101 | | - |
3102 | | - |
3103 | | - |
3104 | | - |
3105 | | - |
3106 | | - |
3107 | | - |
3108 | | - |
3109 | | - |
3110 | | - |
3111 | | - |
3112 | | - |
3113 | | - |
3114 | | - |
3115 | | - |
3116 | | - |
3117 | | - |
3118 | | - |
3119 | | - |
3120 | | - |
3121 | | - |
3122 | | - |
3123 | | - |
3124 | | - |
3125 | | - |
3126 | | - |
3127 | | - |
3128 | | - |
3129 | | - |
3130 | | - |
3131 | | - |
3132 | | - |
3133 | | - |
3134 | | - |
3135 | | - |
3136 | | - |
3137 | | - |
3138 | | - |
3139 | | - |
3140 | | - |
3141 | | - |
3142 | | - |
3143 | | - |
3144 | | - |
3145 | void QObject::connectNotify(const QMetaMethod &signal) | - |
3146 | { | - |
3147 | Q_UNUSED(signal); | - |
3148 | }executed 841154 times by 272 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| 841154 |
3149 | | - |
3150 | | - |
3151 | | - |
3152 | | - |
3153 | | - |
3154 | | - |
3155 | | - |
3156 | | - |
3157 | | - |
3158 | | - |
3159 | | - |
3160 | | - |
3161 | | - |
3162 | | - |
3163 | | - |
3164 | | - |
3165 | | - |
3166 | | - |
3167 | | - |
3168 | | - |
3169 | | - |
3170 | | - |
3171 | | - |
3172 | | - |
3173 | | - |
3174 | | - |
3175 | | - |
3176 | | - |
3177 | | - |
3178 | | - |
3179 | | - |
3180 | void QObject::disconnectNotify(const QMetaMethod &signal) | - |
3181 | { | - |
3182 | Q_UNUSED(signal); | - |
3183 | }executed 317603 times by 415 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
| 317603 |
3184 | | - |
3185 | | - |
3186 | | - |
3187 | | - |
3188 | | - |
3189 | static int methodIndexToSignalIndex(const QMetaObject **base, int signal_index) | - |
3190 | { | - |
3191 | if (signal_index < 0)TRUE | evaluated 521 times by 11 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QObject
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
| FALSE | evaluated 209688 times by 128 testsEvaluated by:- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDBusServiceWatcher
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDial
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- ...
|
| 521-209688 |
3192 | return signal_index;executed 521 times by 11 tests: return signal_index; Executed by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QObject
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
| 521 |
3193 | const QMetaObject *metaObject = *base; | - |
3194 | while (metaObject && metaObject->methodOffset() > signal_index)TRUE | evaluated 418313 times by 128 testsEvaluated by:- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDBusServiceWatcher
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDial
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- ...
| FALSE | never evaluated |
TRUE | evaluated 208625 times by 58 testsEvaluated by:- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSlider
- tst_QAnimationGroup
- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDial
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDoubleSpinBox
- tst_QDoubleValidator
- tst_QEventLoop
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QGraphicsWidget
- tst_QGuiApplication
- tst_QGuiEventLoop
- tst_QIdentityProxyModel
- tst_QIntValidator
- ...
| FALSE | evaluated 209688 times by 128 testsEvaluated by:- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDBusServiceWatcher
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDial
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- ...
|
| 0-418313 |
3195 | metaObject = metaObject->superClass();executed 208625 times by 58 tests: metaObject = metaObject->superClass(); Executed by:- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSlider
- tst_QAnimationGroup
- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDial
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDoubleSpinBox
- tst_QDoubleValidator
- tst_QEventLoop
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QGraphicsWidget
- tst_QGuiApplication
- tst_QGuiEventLoop
- tst_QIdentityProxyModel
- tst_QIntValidator
- ...
| 208625 |
3196 | | - |
3197 | if (metaObject) {TRUE | evaluated 209688 times by 128 testsEvaluated by:- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDBusServiceWatcher
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDial
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- ...
| FALSE | never evaluated |
| 0-209688 |
3198 | int signalOffset, methodOffset; | - |
3199 | computeOffsets(metaObject, &signalOffset, &methodOffset); | - |
3200 | if (signal_index < metaObject->methodCount())TRUE | evaluated 209686 times by 128 testsEvaluated by:- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDBusServiceWatcher
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDial
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- ...
| FALSE | evaluated 2 times by 1 test |
| 2-209686 |
3201 | signal_index = QMetaObjectPrivate::originalClone(metaObject, signal_index - methodOffset) + signalOffset;executed 209686 times by 128 tests: signal_index = QMetaObjectPrivate::originalClone(metaObject, signal_index - methodOffset) + signalOffset; Executed by:- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDBusServiceWatcher
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDial
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- ...
| 209686 |
3202 | else | - |
3203 | signal_index = signal_index - methodOffset + signalOffset;executed 2 times by 1 test: signal_index = signal_index - methodOffset + signalOffset; | 2 |
3204 | *base = metaObject; | - |
3205 | }executed 209688 times by 128 tests: end of block Executed by:- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDBusServiceWatcher
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDial
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- ...
| 209688 |
3206 | return signal_index;executed 209688 times by 128 tests: return signal_index; Executed by:- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDBusServiceWatcher
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDial
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- ...
| 209688 |
3207 | } | - |
3208 | | - |
3209 | | - |
3210 | | - |
3211 | | - |
3212 | | - |
3213 | | - |
3214 | | - |
3215 | | - |
3216 | | - |
3217 | QMetaObject::Connection QMetaObject::connect(const QObject *sender, int signal_index, | - |
3218 | const QObject *receiver, int method_index, int type, int *types) | - |
3219 | { | - |
3220 | const QMetaObject *smeta = sender->metaObject(); | - |
3221 | signal_index = methodIndexToSignalIndex(&smeta, signal_index); | - |
3222 | return Connection(QMetaObjectPrivate::connect(sender, signal_index, smeta,executed 108772 times by 137 tests: return Connection(QMetaObjectPrivate::connect(sender, signal_index, smeta, receiver, method_index, 0, type, types)); Executed by:- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- ...
| 108772 |
3223 | receiver, method_index,executed 108772 times by 137 tests: return Connection(QMetaObjectPrivate::connect(sender, signal_index, smeta, receiver, method_index, 0, type, types)); Executed by:- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- ...
| 108772 |
3224 | 0, executed 108772 times by 137 tests: return Connection(QMetaObjectPrivate::connect(sender, signal_index, smeta, receiver, method_index, 0, type, types)); Executed by:- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- ...
| 108772 |
3225 | type, types));executed 108772 times by 137 tests: return Connection(QMetaObjectPrivate::connect(sender, signal_index, smeta, receiver, method_index, 0, type, types)); Executed by:- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- ...
| 108772 |
3226 | } | - |
3227 | | - |
3228 | | - |
3229 | | - |
3230 | | - |
3231 | | - |
3232 | | - |
3233 | | - |
3234 | | - |
3235 | | - |
3236 | QObjectPrivate::Connection *QMetaObjectPrivate::connect(const QObject *sender, | - |
3237 | int signal_index, const QMetaObject *smeta, | - |
3238 | const QObject *receiver, int method_index, | - |
3239 | const QMetaObject *rmeta, int type, int *types) | - |
3240 | { | - |
3241 | QObject *s = const_cast<QObject *>(sender); | - |
3242 | QObject *r = const_cast<QObject *>(receiver); | - |
3243 | | - |
3244 | int method_offset = rmeta ? rmeta->methodOffset() : 0;TRUE | evaluated 521945 times by 264 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| FALSE | evaluated 108813 times by 137 testsEvaluated by:- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- ...
|
| 108813-521945 |
3245 | Q_ASSERT(!rmeta || QMetaObjectPrivate::get(rmeta)->revision >= 6); | - |
3246 | QObjectPrivate::StaticMetaCallFunction callFunction = | - |
3247 | rmeta ? rmeta->d.static_metacall : 0;TRUE | evaluated 521945 times by 264 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| FALSE | evaluated 108813 times by 137 testsEvaluated by:- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- ...
|
| 108813-521945 |
3248 | | - |
3249 | QOrderedMutexLocker locker(signalSlotLock(sender), | - |
3250 | signalSlotLock(receiver)); | - |
3251 | | - |
3252 | if (type & Qt::UniqueConnection) {TRUE | evaluated 9960 times by 166 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| FALSE | evaluated 620798 times by 275 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
|
| 9960-620798 |
3253 | QObjectConnectionListVector *connectionLists = QObjectPrivate::get(s)->connectionLists; | - |
3254 | if (connectionLists && connectionLists->count() > signal_index) {TRUE | evaluated 5492 times by 88 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDirModel
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- ...
| FALSE | evaluated 4468 times by 161 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- ...
|
TRUE | evaluated 5046 times by 80 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QErrorMessage
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- ...
| FALSE | evaluated 446 times by 23 testsEvaluated by:- tst_QCommandLinkButton
- tst_QDirModel
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QHeaderView
- tst_QInputDialog
- tst_QMainWindow
- tst_QMenu
- tst_QObject
- tst_QPrinter
- tst_QPushButton
- tst_QSortFilterProxyModel
- tst_QTableView
- tst_QTableWidget
- tst_QToolBar
- tst_QTreeView
- tst_QTreeWidget
- tst_QTreeWidgetItemIterator
- tst_QWidget
- tst_QWidget_window
- tst_languageChange
|
| 446-5492 |
3255 | const QObjectPrivate::Connection *c2 = | - |
3256 | (*connectionLists)[signal_index].first; | - |
3257 | | - |
3258 | int method_index_absolute = method_index + method_offset; | - |
3259 | | - |
3260 | while (c2) {TRUE | evaluated 16633 times by 66 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusMarshall
- tst_QDBusServiceWatcher
- tst_QDateTimeEdit
- tst_QErrorMessage
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QHeaderView
- tst_QHostInfo
- tst_QHttpNetworkConnection
- ...
| FALSE | evaluated 2937 times by 65 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QDataWidgetMapper
- tst_QErrorMessage
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QInputDialog
- tst_QItemDelegate
- ...
|
| 2937-16633 |
3261 | if (!c2->isSlotObject && c2->receiver == receiver && c2->method() == method_index_absolute)TRUE | evaluated 16480 times by 66 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusMarshall
- tst_QDBusServiceWatcher
- tst_QDateTimeEdit
- tst_QErrorMessage
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QHeaderView
- tst_QHostInfo
- tst_QHttpNetworkConnection
- ...
| FALSE | evaluated 153 times by 5 testsEvaluated by:- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QMainWindow
- tst_QStyleSheetStyle
- tst_QTabBar
|
TRUE | evaluated 2111 times by 62 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusMarshall
- tst_QDBusServiceWatcher
- tst_QDateTimeEdit
- tst_QErrorMessage
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QHeaderView
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QInputDialog
- ...
| FALSE | evaluated 14369 times by 18 testsEvaluated by:- tst_QComboBox
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDBusServiceWatcher
- tst_QFontComboBox
- tst_QGraphicsProxyWidget
- tst_QMainWindow
- tst_QNetworkSession
- tst_QObject
- tst_QStateMachine
- tst_QStyleSheetStyle
- tst_QTabBar
- tst_QTableView
- tst_QTextEdit
- tst_QTreeWidget
- tst_QWidget
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
|
TRUE | evaluated 2109 times by 62 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusMarshall
- tst_QDBusServiceWatcher
- tst_QDateTimeEdit
- tst_QErrorMessage
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QHeaderView
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QInputDialog
- ...
| FALSE | evaluated 2 times by 1 test |
| 2-16480 |
3262 | return 0;executed 2109 times by 62 tests: return 0; Executed by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusMarshall
- tst_QDBusServiceWatcher
- tst_QDateTimeEdit
- tst_QErrorMessage
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QHeaderView
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QInputDialog
- ...
| 2109 |
3263 | c2 = c2->nextConnectionList; | - |
3264 | }executed 14524 times by 19 tests: end of block Executed by:- tst_QComboBox
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDBusServiceWatcher
- tst_QFontComboBox
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QMainWindow
- tst_QNetworkSession
- tst_QObject
- tst_QStateMachine
- tst_QStyleSheetStyle
- tst_QTabBar
- tst_QTableView
- tst_QTextEdit
- tst_QTreeWidget
- tst_QWidget
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
| 14524 |
3265 | }executed 2937 times by 65 tests: end of block Executed by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QDataWidgetMapper
- tst_QErrorMessage
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QInputDialog
- tst_QItemDelegate
- ...
| 2937 |
3266 | type &= Qt::UniqueConnection - 1; | - |
3267 | }executed 7851 times by 166 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| 7851 |
3268 | | - |
3269 | QScopedPointer<QObjectPrivate::Connection> c(new QObjectPrivate::Connection); | - |
3270 | c->sender = s; | - |
3271 | c->signal_index = signal_index; | - |
3272 | c->receiver = r; | - |
3273 | c->method_relative = method_index; | - |
3274 | c->method_offset = method_offset; | - |
3275 | c->connectionType = type; | - |
3276 | c->isSlotObject = false; | - |
3277 | c->argumentTypes.store(types); | - |
3278 | c->nextConnectionList = 0; | - |
3279 | c->callFunction = callFunction; | - |
3280 | | - |
3281 | QObjectPrivate::get(s)->addConnection(signal_index, c.data()); | - |
3282 | | - |
3283 | locker.unlock(); | - |
3284 | QMetaMethod smethod = QMetaObjectPrivate::signal(smeta, signal_index); | - |
3285 | if (smethod.isValid())TRUE | evaluated 628287 times by 276 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| FALSE | evaluated 362 times by 11 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QObject
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
|
| 362-628287 |
3286 | s->connectNotify(smethod);executed 628287 times by 276 tests: s->connectNotify(smethod); Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| 628287 |
3287 | | - |
3288 | return c.take();executed 628649 times by 276 tests: return c.take(); Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| 628649 |
3289 | } | - |
3290 | | - |
3291 | | - |
3292 | | - |
3293 | | - |
3294 | bool QMetaObject::disconnect(const QObject *sender, int signal_index, | - |
3295 | const QObject *receiver, int method_index) | - |
3296 | { | - |
3297 | const QMetaObject *smeta = sender->metaObject(); | - |
3298 | signal_index = methodIndexToSignalIndex(&smeta, signal_index); | - |
3299 | return QMetaObjectPrivate::disconnect(sender, signal_index, smeta,executed 101429 times by 40 tests: return QMetaObjectPrivate::disconnect(sender, signal_index, smeta, receiver, method_index, 0); Executed by:- tst_QAccessibility
- tst_QApplication
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusThreading
- tst_QDataWidgetMapper
- tst_QErrorMessage
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QInputDialog
- tst_QItemDelegate
- tst_QLabel
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMessageBox
- tst_QObject
- tst_QPlainTextEdit
- ...
| 101429 |
3300 | receiver, method_index, 0);executed 101429 times by 40 tests: return QMetaObjectPrivate::disconnect(sender, signal_index, smeta, receiver, method_index, 0); Executed by:- tst_QAccessibility
- tst_QApplication
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusThreading
- tst_QDataWidgetMapper
- tst_QErrorMessage
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QInputDialog
- tst_QItemDelegate
- tst_QLabel
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMessageBox
- tst_QObject
- tst_QPlainTextEdit
- ...
| 101429 |
3301 | } | - |
3302 | | - |
3303 | | - |
3304 | | - |
3305 | | - |
3306 | | - |
3307 | | - |
3308 | | - |
3309 | | - |
3310 | bool QMetaObject::disconnectOne(const QObject *sender, int signal_index, | - |
3311 | const QObject *receiver, int method_index) | - |
3312 | { | - |
3313 | const QMetaObject *smeta = sender->metaObject(); | - |
3314 | signal_index = methodIndexToSignalIndex(&smeta, signal_index); | - |
3315 | return QMetaObjectPrivate::disconnect(sender, signal_index, smeta,executed 6 times by 1 test: return QMetaObjectPrivate::disconnect(sender, signal_index, smeta, receiver, method_index, 0, QMetaObjectPrivate::DisconnectOne); | 6 |
3316 | receiver, method_index, 0,executed 6 times by 1 test: return QMetaObjectPrivate::disconnect(sender, signal_index, smeta, receiver, method_index, 0, QMetaObjectPrivate::DisconnectOne); | 6 |
3317 | QMetaObjectPrivate::DisconnectOne);executed 6 times by 1 test: return QMetaObjectPrivate::disconnect(sender, signal_index, smeta, receiver, method_index, 0, QMetaObjectPrivate::DisconnectOne); | 6 |
3318 | } | - |
3319 | | - |
3320 | | - |
3321 | | - |
3322 | | - |
3323 | | - |
3324 | bool QMetaObjectPrivate::disconnectHelper(QObjectPrivate::Connection *c, | - |
3325 | const QObject *receiver, int method_index, void **slot, | - |
3326 | QMutex *senderMutex, DisconnectType disconnectType) | - |
3327 | { | - |
3328 | bool success = false; | - |
3329 | while (c) {TRUE | evaluated 183126 times by 305 testsEvaluated by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- ...
| FALSE | evaluated 154465 times by 305 testsEvaluated by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- ...
|
| 154465-183126 |
3330 | if (c->receiverTRUE | evaluated 169744 times by 305 testsEvaluated by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- ...
| FALSE | evaluated 13382 times by 214 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QDataWidgetMapper
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFtp
- tst_QGraphicsProxyWidget
- ...
|
| 13382-169744 |
3331 | && (receiver == 0 || (c->receiver == receiverTRUE | evaluated 127 times by 10 testsEvaluated by:- tst_QFtp
- tst_QFutureWatcher
- tst_QNetworkReply
- tst_QObject
- tst_QPlainTextEdit
- tst_QProcess
- tst_QSocks5SocketEngine
- tst_QTcpServer
- tst_QThread
- tst_Spdy
| FALSE | evaluated 169617 times by 301 testsEvaluated by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- ...
|
TRUE | evaluated 131236 times by 300 testsEvaluated by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- ...
| FALSE | evaluated 38381 times by 235 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QDataWidgetMapper
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontComboBox
- ...
|
| 127-169617 |
3332 | && (method_index < 0 || (!c->isSlotObject && c->method() == method_index))TRUE | evaluated 8856 times by 226 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFtp
- tst_QGraphicsProxyWidget
- ...
| FALSE | evaluated 122380 times by 115 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QErrorMessage
- tst_QFileDialog2
- ...
|
TRUE | evaluated 122380 times by 115 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QErrorMessage
- tst_QFileDialog2
- ...
| FALSE | never evaluated |
TRUE | evaluated 119796 times by 113 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QErrorMessage
- tst_QFileDialog2
- ...
| FALSE | evaluated 2584 times by 42 testsEvaluated by:- tst_QAbstractItemView
- tst_QAccessibility
- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QHeaderView
- tst_QInputDialog
- tst_QItemDelegate
- tst_QLabel
- tst_QListView
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMessageBox
- tst_QObject
- tst_QPlainTextEdit
- ...
|
| 0-122380 |
3333 | && (slot == 0 || (c->isSlotObject && c->slotObj->compare(slot)))))) {TRUE | evaluated 128642 times by 299 testsEvaluated by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- ...
| FALSE | evaluated 10 times by 3 testsEvaluated by:- tst_QMetaObjectBuilder
- tst_QObject
- tst_QScrollBar
|
TRUE | evaluated 10 times by 3 testsEvaluated by:- tst_QMetaObjectBuilder
- tst_QObject
- tst_QScrollBar
| FALSE | never evaluated |
TRUE | evaluated 10 times by 3 testsEvaluated by:- tst_QMetaObjectBuilder
- tst_QObject
- tst_QScrollBar
| FALSE | never evaluated |
| 0-128642 |
3334 | bool needToUnlock = false; | - |
3335 | QMutex *receiverMutex = 0; | - |
3336 | if (c->receiver) {TRUE | evaluated 128779 times by 303 testsEvaluated by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- ...
| FALSE | never evaluated |
| 0-128779 |
3337 | receiverMutex = signalSlotLock(c->receiver); | - |
3338 | | - |
3339 | needToUnlock = QOrderedMutexLocker::relock(senderMutex, receiverMutex); | - |
3340 | }executed 128779 times by 303 tests: end of block Executed by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- ...
| 128779 |
3341 | if (c->receiver) {TRUE | evaluated 128779 times by 303 testsEvaluated by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- ...
| FALSE | never evaluated |
| 0-128779 |
3342 | *c->prev = c->next; | - |
3343 | if (c->next)TRUE | evaluated 50017 times by 266 testsEvaluated by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- ...
| FALSE | evaluated 78762 times by 263 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QDataWidgetMapper
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QDoubleSpinBox
- ...
|
| 50017-78762 |
3344 | c->next->prev = c->prev;executed 50017 times by 266 tests: c->next->prev = c->prev; Executed by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- ...
| 50017 |
3345 | }executed 128779 times by 303 tests: end of block Executed by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- ...
| 128779 |
3346 | | - |
3347 | if (needToUnlock)TRUE | evaluated 125441 times by 293 testsEvaluated by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- ...
| FALSE | evaluated 3338 times by 200 testsEvaluated by:- tst_QAbstractItemView
- tst_QAccessibility
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFtp
- tst_QGraphicsProxyWidget
- tst_QHeaderView
- tst_QHttpNetworkConnection
- tst_QItemDelegate
- tst_QItemModel
- tst_QItemView
- tst_QLineEdit
- tst_QMetaObjectBuilder
- tst_QNetworkConfigurationManager
- tst_QNetworkProxyFactory
- ...
|
| 3338-125441 |
3348 | receiverMutex->unlock();executed 125441 times by 293 tests: receiverMutex->unlock(); Executed by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- ...
| 125441 |
3349 | | - |
3350 | c->receiver = 0; | - |
3351 | | - |
3352 | if (c->isSlotObject) {TRUE | evaluated 3203 times by 172 testsEvaluated by:- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QMetaObjectBuilder
- tst_QObject
- tst_QPlainTextEdit
- tst_QProcess
- tst_QScrollBar
- tst_gestures - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractspinbox - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qapplication - unknown status
- ...
| FALSE | evaluated 125576 times by 297 testsEvaluated by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- ...
|
| 3203-125576 |
3353 | c->isSlotObject = false; | - |
3354 | senderMutex->unlock(); | - |
3355 | c->slotObj->destroyIfLastRef(); | - |
3356 | senderMutex->lock(); | - |
3357 | }executed 3203 times by 172 tests: end of block Executed by:- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QMetaObjectBuilder
- tst_QObject
- tst_QPlainTextEdit
- tst_QProcess
- tst_QScrollBar
- tst_gestures - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractspinbox - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qapplication - unknown status
- ...
| 3203 |
3358 | | - |
3359 | success = true; | - |
3360 | | - |
3361 | if (disconnectType == DisconnectOne)TRUE | evaluated 4 times by 1 test | FALSE | evaluated 128775 times by 303 testsEvaluated by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- ...
|
| 4-128775 |
3362 | return success;executed 4 times by 1 test: return success; | 4 |
3363 | }executed 128775 times by 303 tests: end of block Executed by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- ...
| 128775 |
3364 | c = c->nextConnectionList; | - |
3365 | }executed 183122 times by 305 tests: end of block Executed by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- ...
| 183122 |
3366 | return success;executed 154465 times by 305 tests: return success; Executed by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- ...
| 154465 |
3367 | } | - |
3368 | | - |
3369 | | - |
3370 | | - |
3371 | | - |
3372 | | - |
3373 | bool QMetaObjectPrivate::disconnect(const QObject *sender, | - |
3374 | int signal_index, const QMetaObject *smeta, | - |
3375 | const QObject *receiver, int method_index, void **slot, | - |
3376 | DisconnectType disconnectType) | - |
3377 | { | - |
3378 | if (!sender)TRUE | never evaluated | FALSE | evaluated 143976 times by 336 testsEvaluated by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- ...
|
| 0-143976 |
3379 | return false; never executed: return false; | 0 |
3380 | | - |
3381 | QObject *s = const_cast<QObject *>(sender); | - |
3382 | | - |
3383 | QMutex *senderMutex = signalSlotLock(sender); | - |
3384 | QMutexLocker locker(senderMutex); | - |
3385 | | - |
3386 | QObjectConnectionListVector *connectionLists = QObjectPrivate::get(s)->connectionLists; | - |
3387 | if (!connectionLists)TRUE | evaluated 10048 times by 69 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QAction
- tst_QAnimationGroup
- tst_QDataWidgetMapper
- tst_QEventLoop
- tst_QFile
- tst_QFileDialog2
- tst_QFileInfo
- tst_QFileSystemModel
- tst_QFtp
- tst_QGraphicsProxyWidget
- tst_QGuiEventLoop
- tst_QHttpNetworkConnection
- tst_QHttpSocketEngine
- tst_QIODevice
- tst_QImage
- tst_QImageReader
- tst_QImageWriter
- tst_QKeyEvent
- tst_QLayout
- tst_QLineEdit
- tst_QLocalSocket
- tst_QLoggingRegistry
- tst_QMainWindow
- ...
| FALSE | evaluated 133928 times by 305 testsEvaluated by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- ...
|
| 10048-133928 |
3388 | return false;executed 10048 times by 69 tests: return false; Executed by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QAction
- tst_QAnimationGroup
- tst_QDataWidgetMapper
- tst_QEventLoop
- tst_QFile
- tst_QFileDialog2
- tst_QFileInfo
- tst_QFileSystemModel
- tst_QFtp
- tst_QGraphicsProxyWidget
- tst_QGuiEventLoop
- tst_QHttpNetworkConnection
- tst_QHttpSocketEngine
- tst_QIODevice
- tst_QImage
- tst_QImageReader
- tst_QImageWriter
- tst_QKeyEvent
- tst_QLayout
- tst_QLineEdit
- tst_QLocalSocket
- tst_QLoggingRegistry
- tst_QMainWindow
- ...
| 10048 |
3389 | | - |
3390 | | - |
3391 | ++connectionLists->inUse; | - |
3392 | | - |
3393 | bool success = false; | - |
3394 | if (signal_index < 0) {TRUE | evaluated 3668 times by 231 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFontDialog
- ...
| FALSE | evaluated 130260 times by 113 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileSystemModel
- ...
|
| 3668-130260 |
3395 | | - |
3396 | for (int sig_index = -1; sig_index < connectionLists->count(); ++sig_index) {TRUE | evaluated 30263 times by 231 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFontDialog
- ...
| FALSE | evaluated 3668 times by 231 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFontDialog
- ...
|
| 3668-30263 |
3397 | QObjectPrivate::Connection *c = | - |
3398 | (*connectionLists)[sig_index].first; | - |
3399 | if (disconnectHelper(c, receiver, method_index, slot, senderMutex, disconnectType)) {TRUE | evaluated 8633 times by 228 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFtp
- tst_QFutureWatcher
- ...
| FALSE | evaluated 21630 times by 231 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFontDialog
- ...
|
| 8633-21630 |
3400 | success = true; | - |
3401 | connectionLists->dirty = true; | - |
3402 | }executed 8633 times by 228 tests: end of block Executed by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFtp
- tst_QFutureWatcher
- ...
| 8633 |
3403 | }executed 30263 times by 231 tests: end of block Executed by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFontDialog
- ...
| 30263 |
3404 | } else if (signal_index < connectionLists->count()) {executed 3668 times by 231 tests: end of block Executed by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFontDialog
- ...
TRUE | evaluated 124206 times by 113 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileSystemModel
- ...
| FALSE | evaluated 6054 times by 37 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QComboBox
- tst_QDateTimeEdit
- tst_QDirModel
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QHeaderView
- tst_QItemDelegate
- tst_QItemModel
- tst_QItemSelectionModel
- tst_QItemView
- tst_QLineEdit
- tst_QMainWindow
- tst_QMenu
- tst_QSortFilterProxyModel
- tst_QSplitter
- tst_QSqlQueryModel
- tst_QStandardItemModel
- ...
|
| 3668-124206 |
3405 | QObjectPrivate::Connection *c = | - |
3406 | (*connectionLists)[signal_index].first; | - |
3407 | if (disconnectHelper(c, receiver, method_index, slot, senderMutex, disconnectType)) {TRUE | evaluated 119799 times by 111 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileSystemModel
- ...
| FALSE | evaluated 4407 times by 54 testsEvaluated by:- tst_QAbstractItemView
- tst_QAccessibility
- tst_QApplication
- tst_QCheckBox
- tst_QComboBox
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontComboBox
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLinearLayout
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QHeaderView
- tst_QIdentityProxyModel
- tst_QInputDialog
- tst_QItemDelegate
- tst_QLabel
- tst_QLineEdit
- tst_QListWidget
- tst_QMainWindow
- ...
|
| 4407-119799 |
3408 | success = true; | - |
3409 | connectionLists->dirty = true; | - |
3410 | }executed 119799 times by 111 tests: end of block Executed by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileSystemModel
- ...
| 119799 |
3411 | }executed 124206 times by 113 tests: end of block Executed by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileSystemModel
- ...
| 124206 |
3412 | | - |
3413 | --connectionLists->inUse; | - |
3414 | Q_ASSERT(connectionLists->inUse >= 0); | - |
3415 | if (connectionLists->orphaned && !connectionLists->inUse)TRUE | never evaluated | FALSE | evaluated 133928 times by 305 testsEvaluated by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- ...
|
TRUE | never evaluated | FALSE | never evaluated |
| 0-133928 |
3416 | delete connectionLists; never executed: delete connectionLists; | 0 |
3417 | | - |
3418 | locker.unlock(); | - |
3419 | if (success) {TRUE | evaluated 123231 times by 303 testsEvaluated by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- ...
| FALSE | evaluated 10697 times by 82 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusThreading
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDirModel
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFontDialog
- ...
|
| 10697-123231 |
3420 | QMetaMethod smethod = QMetaObjectPrivate::signal(smeta, signal_index); | - |
3421 | if (smethod.isValid())TRUE | evaluated 119799 times by 111 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileSystemModel
- ...
| FALSE | evaluated 3432 times by 228 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFtp
- tst_QFutureWatcher
- ...
|
| 3432-119799 |
3422 | s->disconnectNotify(smethod);executed 119799 times by 111 tests: s->disconnectNotify(smethod); Executed by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileSystemModel
- ...
| 119799 |
3423 | }executed 123231 times by 303 tests: end of block Executed by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- ...
| 123231 |
3424 | | - |
3425 | return success;executed 133928 times by 305 tests: return success; Executed by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- ...
| 133928 |
3426 | } | - |
3427 | | - |
3428 | | - |
3429 | | - |
3430 | | - |
3431 | | - |
3432 | | - |
3433 | | - |
3434 | | - |
3435 | | - |
3436 | | - |
3437 | | - |
3438 | | - |
3439 | | - |
3440 | | - |
3441 | | - |
3442 | | - |
3443 | | - |
3444 | | - |
3445 | | - |
3446 | | - |
3447 | void QMetaObject::connectSlotsByName(QObject *o) | - |
3448 | { | - |
3449 | if (!o)TRUE | never evaluated | FALSE | evaluated 247 times by 8 testsEvaluated by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QMetaObject
- tst_QObject
- tst_QPrinter
- tst_languageChange
|
| 0-247 |
3450 | return; never executed: return; | 0 |
3451 | const QMetaObject *mo = o->metaObject(); | - |
3452 | Q_ASSERT(mo); | - |
3453 | const QObjectList list = | - |
3454 | o->findChildren<QObject *>(QString()) | - |
3455 | << o; | - |
3456 | | - |
3457 | | - |
3458 | for (int i = 0; i < mo->methodCount(); ++i) {TRUE | evaluated 18214 times by 8 testsEvaluated by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QMetaObject
- tst_QObject
- tst_QPrinter
- tst_languageChange
| FALSE | evaluated 247 times by 8 testsEvaluated by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QMetaObject
- tst_QObject
- tst_QPrinter
- tst_languageChange
|
| 247-18214 |
3459 | const QByteArray slotSignature = mo->method(i).methodSignature(); | - |
3460 | const char *slot = slotSignature.constData(); | - |
3461 | Q_ASSERT(slot); | - |
3462 | | - |
3463 | | - |
3464 | if (slot[0] != 'o' || slot[1] != 'n' || slot[2] != '_')TRUE | evaluated 17704 times by 8 testsEvaluated by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QMetaObject
- tst_QObject
- tst_QPrinter
- tst_languageChange
| FALSE | evaluated 510 times by 8 testsEvaluated by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QMetaObject
- tst_QObject
- tst_QPrinter
- tst_languageChange
|
TRUE | evaluated 481 times by 8 testsEvaluated by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QMetaObject
- tst_QObject
- tst_QPrinter
- tst_languageChange
| FALSE | evaluated 29 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QObject
|
TRUE | evaluated 1 time by 1 test | FALSE | evaluated 28 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QObject
|
| 1-17704 |
3465 | continue;executed 18186 times by 8 tests: continue; Executed by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QMetaObject
- tst_QObject
- tst_QPrinter
- tst_languageChange
| 18186 |
3466 | | - |
3467 | | - |
3468 | bool foundIt = false; | - |
3469 | for(int j = 0; j < list.count(); ++j) {TRUE | evaluated 43 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QObject
| FALSE | evaluated 10 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QObject
|
| 10-43 |
3470 | const QObject *co = list.at(j); | - |
3471 | const QByteArray coName = co->objectName().toLatin1(); | - |
3472 | | - |
3473 | | - |
3474 | if (coName.isEmpty() || qstrncmp(slot + 3, coName.constData(), coName.size()) || slot[coName.size()+3] != '_')TRUE | evaluated 7 times by 1 test | FALSE | evaluated 36 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QObject
|
TRUE | evaluated 18 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QObject
| FALSE | evaluated 18 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QObject
|
TRUE | never evaluated | FALSE | evaluated 18 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QObject
|
| 0-36 |
3475 | continue;executed 25 times by 2 tests: continue; Executed by:- tst_QMetaObject
- tst_QObject
| 25 |
3476 | | - |
3477 | const char *signal = slot + coName.size() + 4; | - |
3478 | | - |
3479 | | - |
3480 | const QMetaObject *smeta; | - |
3481 | int sigIndex = co->d_func()->signalIndex(signal, &smeta); | - |
3482 | if (sigIndex < 0) {TRUE | evaluated 1 time by 1 test | FALSE | evaluated 17 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QObject
|
| 1-17 |
3483 | | - |
3484 | | - |
3485 | | - |
3486 | | - |
3487 | QList<QByteArray> compatibleSignals; | - |
3488 | const QMetaObject *smo = co->metaObject(); | - |
3489 | int sigLen = qstrlen(signal) - 1; | - |
3490 | for (int k = QMetaObjectPrivate::absoluteSignalCount(smo)-1; k >= 0; --k) {TRUE | evaluated 10 times by 1 test | FALSE | evaluated 1 time by 1 test |
| 1-10 |
3491 | const QMetaMethod method = QMetaObjectPrivate::signal(smo, k); | - |
3492 | if (!qstrncmp(method.methodSignature().constData(), signal, sigLen)) {TRUE | evaluated 2 times by 1 test | FALSE | evaluated 8 times by 1 test |
| 2-8 |
3493 | smeta = method.enclosingMetaObject(); | - |
3494 | sigIndex = k; | - |
3495 | compatibleSignals.prepend(method.methodSignature()); | - |
3496 | }executed 2 times by 1 test: end of block | 2 |
3497 | }executed 10 times by 1 test: end of block | 10 |
3498 | if (compatibleSignals.size() > 1)TRUE | evaluated 1 time by 1 test | FALSE | never evaluated |
| 0-1 |
3499 | qWarning() << "QMetaObject::connectSlotsByName: Connecting slot" << slotexecuted 1 time by 1 test: QMessageLogger(__FILE__, 3499, __PRETTY_FUNCTION__).warning() << "QMetaObject::connectSlotsByName: Connecting slot" << slot << "with the first of the following compatible signals:" << compatibleSignals; | 1 |
3500 | << "with the first of the following compatible signals:" << compatibleSignals;executed 1 time by 1 test: QMessageLogger(__FILE__, 3499, __PRETTY_FUNCTION__).warning() << "QMetaObject::connectSlotsByName: Connecting slot" << slot << "with the first of the following compatible signals:" << compatibleSignals; | 1 |
3501 | }executed 1 time by 1 test: end of block | 1 |
3502 | | - |
3503 | if (sigIndex < 0)TRUE | never evaluated | FALSE | evaluated 18 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QObject
|
| 0-18 |
3504 | continue; never executed: continue; | 0 |
3505 | | - |
3506 | | - |
3507 | if (Connection(QMetaObjectPrivate::connect(co, sigIndex, smeta, o, i))) {TRUE | evaluated 18 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QObject
| FALSE | never evaluated |
| 0-18 |
3508 | foundIt = true; | - |
3509 | | - |
3510 | | - |
3511 | | - |
3512 | | - |
3513 | break;executed 18 times by 2 tests: break; Executed by:- tst_QMetaObject
- tst_QObject
| 18 |
3514 | } | - |
3515 | } never executed: end of block | 0 |
3516 | if (foundIt) {TRUE | evaluated 18 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QObject
| FALSE | evaluated 10 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QObject
|
| 10-18 |
3517 | | - |
3518 | while (mo->method(i + 1).attributes() & QMetaMethod::Cloned)TRUE | evaluated 3 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QObject
| FALSE | evaluated 18 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QObject
|
| 3-18 |
3519 | ++i;executed 3 times by 2 tests: ++i; Executed by:- tst_QMetaObject
- tst_QObject
| 3 |
3520 | } else if (!(mo->method(i).attributes() & QMetaMethod::Cloned)) {executed 18 times by 2 tests: end of block Executed by:- tst_QMetaObject
- tst_QObject
TRUE | evaluated 8 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QObject
| FALSE | evaluated 2 times by 1 test |
| 2-18 |
3521 | | - |
3522 | int iParen = slotSignature.indexOf('('); | - |
3523 | int iLastUnderscore = slotSignature.lastIndexOf('_', iParen-1); | - |
3524 | if (iLastUnderscore > 3)TRUE | evaluated 6 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QObject
| FALSE | evaluated 2 times by 1 test |
| 2-6 |
3525 | qWarning("QMetaObject::connectSlotsByName: No matching signal for %s", slot);executed 6 times by 2 tests: QMessageLogger(__FILE__, 3525, __PRETTY_FUNCTION__).warning("QMetaObject::connectSlotsByName: No matching signal for %s", slot); Executed by:- tst_QMetaObject
- tst_QObject
| 6 |
3526 | }executed 8 times by 2 tests: end of block Executed by:- tst_QMetaObject
- tst_QObject
| 8 |
3527 | }executed 28 times by 2 tests: end of block Executed by:- tst_QMetaObject
- tst_QObject
| 28 |
3528 | }executed 247 times by 8 tests: end of block Executed by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QMetaObject
- tst_QObject
- tst_QPrinter
- tst_languageChange
| 247 |
3529 | | - |
3530 | | - |
3531 | | - |
3532 | | - |
3533 | | - |
3534 | | - |
3535 | static void queued_activate(QObject *sender, int signal, QObjectPrivate::Connection *c, void **argv, | - |
3536 | QMutexLocker &locker) | - |
3537 | { | - |
3538 | const int *argumentTypes = c->argumentTypes.load(); | - |
3539 | if (!argumentTypes) {TRUE | evaluated 4172 times by 390 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
| FALSE | evaluated 156930 times by 429 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
|
| 4172-156930 |
3540 | QMetaMethod m = QMetaObjectPrivate::signal(sender->metaObject(), signal); | - |
3541 | argumentTypes = queuedConnectionTypes(m.parameterTypes()); | - |
3542 | if (!argumentTypes) TRUE | never evaluated | FALSE | evaluated 4172 times by 390 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
|
| 0-4172 |
3543 | argumentTypes = &DIRECT_CONNECTION_ONLY; never executed: argumentTypes = &DIRECT_CONNECTION_ONLY; | 0 |
3544 | if (!c->argumentTypes.testAndSetOrdered(0, argumentTypes)) {TRUE | never evaluated | FALSE | evaluated 4172 times by 390 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
|
| 0-4172 |
3545 | if (argumentTypes != &DIRECT_CONNECTION_ONLY)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
3546 | delete [] argumentTypes; never executed: delete [] argumentTypes; | 0 |
3547 | argumentTypes = c->argumentTypes.load(); | - |
3548 | } never executed: end of block | 0 |
3549 | }executed 4172 times by 390 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
| 4172 |
3550 | if (argumentTypes == &DIRECT_CONNECTION_ONLY) TRUE | never evaluated | FALSE | evaluated 161102 times by 433 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
|
| 0-161102 |
3551 | return; never executed: return; | 0 |
3552 | int nargs = 1; | - |
3553 | while (argumentTypes[nargs-1])TRUE | evaluated 59663 times by 176 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
| FALSE | evaluated 161102 times by 433 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
|
| 59663-161102 |
3554 | ++nargs;executed 59663 times by 176 tests: ++nargs; Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
| 59663 |
3555 | int *types = (int *) malloc(nargs*sizeof(int)); | - |
3556 | Q_CHECK_PTR(types); never executed: qBadAlloc(); TRUE | never evaluated | FALSE | evaluated 161102 times by 433 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
|
| 0-161102 |
3557 | void **args = (void **) malloc(nargs*sizeof(void *)); | - |
3558 | Q_CHECK_PTR(args); never executed: qBadAlloc(); TRUE | never evaluated | FALSE | evaluated 161102 times by 433 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
|
| 0-161102 |
3559 | types[0] = 0; | - |
3560 | args[0] = 0; | - |
3561 | | - |
3562 | if (nargs > 1) {TRUE | evaluated 28423 times by 176 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
| FALSE | evaluated 132679 times by 426 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
|
| 28423-132679 |
3563 | for (int n = 1; n < nargs; ++n)TRUE | evaluated 59663 times by 176 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
| FALSE | evaluated 28423 times by 176 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
|
| 28423-59663 |
3564 | types[n] = argumentTypes[n-1];executed 59663 times by 176 tests: types[n] = argumentTypes[n-1]; Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
| 59663 |
3565 | | - |
3566 | locker.unlock(); | - |
3567 | for (int n = 1; n < nargs; ++n)TRUE | evaluated 59663 times by 176 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
| FALSE | evaluated 28423 times by 176 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
|
| 28423-59663 |
3568 | args[n] = QMetaType::create(types[n], argv[n]);executed 59663 times by 176 tests: args[n] = QMetaType::create(types[n], argv[n]); Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
| 59663 |
3569 | locker.relock(); | - |
3570 | | - |
3571 | if (!c->receiver) {TRUE | never evaluated | FALSE | evaluated 28423 times by 176 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
|
| 0-28423 |
3572 | locker.unlock(); | - |
3573 | | - |
3574 | for (int n = 1; n < nargs; ++n)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
3575 | QMetaType::destroy(types[n], args[n]); never executed: QMetaType::destroy(types[n], args[n]); | 0 |
3576 | free(types); | - |
3577 | free(args); | - |
3578 | locker.relock(); | - |
3579 | return; never executed: return; | 0 |
3580 | } | - |
3581 | }executed 28423 times by 176 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
| 28423 |
3582 | | - |
3583 | QMetaCallEvent *ev = c->isSlotObject ?TRUE | evaluated 7525 times by 320 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| FALSE | evaluated 153577 times by 397 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
|
| 7525-153577 |
3584 | new QMetaCallEvent(c->slotObj, sender, signal, nargs, types, args) : | - |
3585 | new QMetaCallEvent(c->method_offset, c->method_relative, c->callFunction, sender, signal, nargs, types, args); | - |
3586 | QCoreApplication::postEvent(c->receiver, ev); | - |
3587 | }executed 161102 times by 433 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| 161102 |
3588 | | - |
3589 | | - |
3590 | | - |
3591 | | - |
3592 | void QMetaObject::activate(QObject *sender, const QMetaObject *m, int local_signal_index, | - |
3593 | void **argv) | - |
3594 | { | - |
3595 | activate(sender, QMetaObjectPrivate::signalOffset(m), local_signal_index, argv); | - |
3596 | }executed 21585615 times by 1079 tests: end of block Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- ...
| 21585615 |
3597 | | - |
3598 | | - |
3599 | | - |
3600 | | - |
3601 | void QMetaObject::activate(QObject *sender, int signalOffset, int local_signal_index, void **argv) | - |
3602 | { | - |
3603 | int signal_index = signalOffset + local_signal_index; | - |
3604 | | - |
3605 | if (!sender->d_func()->isSignalConnected(signal_index)TRUE | evaluated 13826942 times by 1079 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- ...
| FALSE | evaluated 7758679 times by 509 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
|
| 7758679-13826942 |
3606 | && !qt_signal_spy_callback_set.signal_begin_callbackTRUE | evaluated 13826942 times by 1079 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- ...
| FALSE | never evaluated |
| 0-13826942 |
3607 | && !qt_signal_spy_callback_set.signal_end_callback) {TRUE | evaluated 13826942 times by 1079 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- ...
| FALSE | never evaluated |
| 0-13826942 |
3608 | return; executed 13826942 times by 1079 tests: return; Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- ...
| 13826942 |
3609 | } | - |
3610 | | - |
3611 | if (sender->d_func()->blockSig)TRUE | evaluated 43647 times by 33 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QComboBox
- tst_QDateTimeEdit
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFontComboBox
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QHeaderView
- tst_QInputDialog
- tst_QItemDelegate
- tst_QMainWindow
- tst_QMdiArea
- tst_QNetworkReply
- tst_QObject
- tst_QPlainTextEdit
- tst_QPrinter
- tst_QSocks5SocketEngine
- tst_QSortFilterProxyModel
- tst_QSpinBox
- tst_QSslSocket
- ...
| FALSE | evaluated 7715032 times by 509 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
|
| 43647-7715032 |
3612 | return;executed 43647 times by 33 tests: return; Executed by:- tst_QAbstractItemView
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QComboBox
- tst_QDateTimeEdit
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFontComboBox
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QHeaderView
- tst_QInputDialog
- tst_QItemDelegate
- tst_QMainWindow
- tst_QMdiArea
- tst_QNetworkReply
- tst_QObject
- tst_QPlainTextEdit
- tst_QPrinter
- tst_QSocks5SocketEngine
- tst_QSortFilterProxyModel
- tst_QSpinBox
- tst_QSslSocket
- ...
| 43647 |
3613 | | - |
3614 | if (sender->d_func()->declarativeData && QAbstractDeclarativeData::signalEmitted)TRUE | never evaluated | FALSE | evaluated 7715032 times by 509 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
|
TRUE | never evaluated | FALSE | never evaluated |
| 0-7715032 |
3615 | QAbstractDeclarativeData::signalEmitted(sender->d_func()->declarativeData, sender, never executed: QAbstractDeclarativeData::signalEmitted(sender->d_func()->declarativeData, sender, signal_index, argv); | 0 |
3616 | signal_index, argv); never executed: QAbstractDeclarativeData::signalEmitted(sender->d_func()->declarativeData, sender, signal_index, argv); | 0 |
3617 | | - |
3618 | void *empty_argv[] = { 0 }; | - |
3619 | if (qt_signal_spy_callback_set.signal_begin_callback != 0) {TRUE | never evaluated | FALSE | evaluated 7715032 times by 509 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
|
| 0-7715032 |
3620 | qt_signal_spy_callback_set.signal_begin_callback(sender, signal_index, | - |
3621 | argv ? argv : empty_argv); | - |
3622 | } never executed: end of block | 0 |
3623 | | - |
3624 | Qt::HANDLE currentThreadId = QThread::currentThreadId(); | - |
3625 | | - |
3626 | { | - |
3627 | QMutexLocker locker(signalSlotLock(sender)); | - |
3628 | struct ConnectionListsRef { | - |
3629 | QObjectConnectionListVector *connectionLists; | - |
3630 | ConnectionListsRef(QObjectConnectionListVector *connectionLists) : connectionLists(connectionLists) | - |
3631 | { | - |
3632 | if (connectionLists)TRUE | evaluated 7715032 times by 509 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
| FALSE | never evaluated |
| 0-7715032 |
3633 | ++connectionLists->inUse;executed 7715032 times by 509 tests: ++connectionLists->inUse; Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
| 7715032 |
3634 | }executed 7715032 times by 509 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
| 7715032 |
3635 | ~ConnectionListsRef() | - |
3636 | { | - |
3637 | if (!connectionLists)TRUE | never evaluated | FALSE | evaluated 7715029 times by 509 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
|
| 0-7715029 |
3638 | return; never executed: return; | 0 |
3639 | | - |
3640 | --connectionLists->inUse; | - |
3641 | Q_ASSERT(connectionLists->inUse >= 0); | - |
3642 | if (connectionLists->orphaned) {TRUE | evaluated 250 times by 15 testsEvaluated by:- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDialogButtonBox
- tst_QMenu
- tst_QNetworkReply
- tst_QObject
- tst_QProcess
- tst_QPushButton
- tst_QSequentialAnimationGroup
- tst_QStatusBar
- tst_qdbusabstractinterface - unknown status
| FALSE | evaluated 7714779 times by 509 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
|
| 250-7714779 |
3643 | if (!connectionLists->inUse)TRUE | evaluated 249 times by 15 testsEvaluated by:- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDialogButtonBox
- tst_QMenu
- tst_QNetworkReply
- tst_QObject
- tst_QProcess
- tst_QPushButton
- tst_QSequentialAnimationGroup
- tst_QStatusBar
- tst_qdbusabstractinterface - unknown status
| FALSE | evaluated 1 time by 1 test |
| 1-249 |
3644 | delete connectionLists;executed 249 times by 15 tests: delete connectionLists; Executed by:- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDialogButtonBox
- tst_QMenu
- tst_QNetworkReply
- tst_QObject
- tst_QProcess
- tst_QPushButton
- tst_QSequentialAnimationGroup
- tst_QStatusBar
- tst_qdbusabstractinterface - unknown status
| 249 |
3645 | }executed 250 times by 15 tests: end of block Executed by:- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDialogButtonBox
- tst_QMenu
- tst_QNetworkReply
- tst_QObject
- tst_QProcess
- tst_QPushButton
- tst_QSequentialAnimationGroup
- tst_QStatusBar
- tst_qdbusabstractinterface - unknown status
| 250 |
3646 | }executed 7715029 times by 509 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
| 7715029 |
3647 | | - |
3648 | QObjectConnectionListVector *operator->() const { return connectionLists; }executed 54599651 times by 509 tests: return connectionLists; Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
| 54599651 |
3649 | }; | - |
3650 | ConnectionListsRef connectionLists = sender->d_func()->connectionLists; | - |
3651 | if (!connectionLists.connectionLists) {TRUE | never evaluated | FALSE | evaluated 7715032 times by 509 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
|
| 0-7715032 |
3652 | locker.unlock(); | - |
3653 | if (qt_signal_spy_callback_set.signal_end_callback != 0)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
3654 | qt_signal_spy_callback_set.signal_end_callback(sender, signal_index); never executed: qt_signal_spy_callback_set.signal_end_callback(sender, signal_index); | 0 |
3655 | return; never executed: return; | 0 |
3656 | } | - |
3657 | | - |
3658 | const QObjectPrivate::ConnectionList *list; | - |
3659 | if (signal_index < connectionLists->count())TRUE | evaluated 7714626 times by 509 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
| FALSE | evaluated 406 times by 9 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusThreading
- tst_QObject
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuspendingcall - unknown status
- tst_qdbuspendingreply - unknown status
- tst_qdbusreply - unknown status
|
| 406-7714626 |
3660 | list = &connectionLists->at(signal_index);executed 7714626 times by 509 tests: list = &connectionLists->at(signal_index); Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
| 7714626 |
3661 | else | - |
3662 | list = &connectionLists->allsignals;executed 406 times by 9 tests: list = &connectionLists->allsignals; Executed by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusThreading
- tst_QObject
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuspendingcall - unknown status
- tst_qdbuspendingreply - unknown status
- tst_qdbusreply - unknown status
| 406 |
3663 | | - |
3664 | do { | - |
3665 | QObjectPrivate::Connection *c = list->first; | - |
3666 | if (!c) continue;executed 7714477 times by 509 tests: continue; Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
TRUE | evaluated 7714477 times by 509 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
| FALSE | evaluated 7714925 times by 509 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
|
| 7714477-7714925 |
3667 | | - |
3668 | | - |
3669 | QObjectPrivate::Connection *last = list->last; | - |
3670 | | - |
3671 | do { | - |
3672 | if (!c->receiver)TRUE | evaluated 22152 times by 274 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSlider
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDnsLookup_Appless
- tst_QDockWidget
- tst_QDoubleSpinBox
- ...
| FALSE | evaluated 8476691 times by 495 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
|
| 22152-8476691 |
3673 | continue;executed 22152 times by 274 tests: continue; Executed by:- tst_ModelTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSlider
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDnsLookup_Appless
- tst_QDockWidget
- tst_QDoubleSpinBox
- ...
| 22152 |
3674 | | - |
3675 | QObject * const receiver = c->receiver; | - |
3676 | const bool receiverInSameThread = currentThreadId == receiver->d_func()->threadData->threadId; | - |
3677 | | - |
3678 | | - |
3679 | | - |
3680 | if ((c->connectionType == Qt::AutoConnection && !receiverInSameThread)TRUE | evaluated 8254889 times by 436 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- ...
| FALSE | evaluated 221802 times by 477 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
TRUE | evaluated 13135 times by 385 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
| FALSE | evaluated 8241754 times by 345 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- ...
|
| 13135-8254889 |
3681 | || (c->connectionType == Qt::QueuedConnection)) {TRUE | evaluated 147967 times by 429 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- ...
| FALSE | evaluated 8315589 times by 393 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
|
| 147967-8315589 |
3682 | queued_activate(sender, signal_index, c, argv ? argv : empty_argv, locker); | - |
3683 | continue;executed 161102 times by 433 tests: continue; Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| 161102 |
3684 | #ifndef QT_NO_THREAD | - |
3685 | } else if (c->connectionType == Qt::BlockingQueuedConnection) {TRUE | evaluated 4432 times by 315 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- ...
| FALSE | evaluated 8311157 times by 382 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
|
| 4432-8311157 |
3686 | if (receiverInSameThread) {TRUE | never evaluated | FALSE | evaluated 4432 times by 315 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- ...
|
| 0-4432 |
3687 | qWarning("Qt: Dead lock detected while activating a BlockingQueuedConnection: " | - |
3688 | "Sender is %s(%p), receiver is %s(%p)", | - |
3689 | sender->metaObject()->className(), sender, | - |
3690 | receiver->metaObject()->className(), receiver); | - |
3691 | } never executed: end of block | 0 |
3692 | QSemaphore semaphore; | - |
3693 | QMetaCallEvent *ev = c->isSlotObject ?TRUE | evaluated 2317 times by 180 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- ...
| FALSE | evaluated 2115 times by 191 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QDnsLookup
- tst_QDnsLookup_Appless
- tst_QFtp
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- ...
|
| 2115-2317 |
3694 | new QMetaCallEvent(c->slotObj, sender, signal_index, 0, 0, argv ? argv : empty_argv, &semaphore) : | - |
3695 | new QMetaCallEvent(c->method_offset, c->method_relative, c->callFunction, sender, signal_index, 0, 0, argv ? argv : empty_argv, &semaphore); | - |
3696 | QCoreApplication::postEvent(receiver, ev); | - |
3697 | locker.unlock(); | - |
3698 | semaphore.acquire(); | - |
3699 | locker.relock(); | - |
3700 | continue;executed 4431 times by 315 tests: continue; Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- ...
| 4431 |
3701 | #endif | - |
3702 | } | - |
3703 | | - |
3704 | QConnectionSenderSwitcher sw; | - |
3705 | | - |
3706 | if (receiverInSameThread) {TRUE | evaluated 8310663 times by 382 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
| FALSE | evaluated 494 times by 27 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QCoreApplication
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QEventLoop
- tst_QFtp
- tst_QGuiApplication
- tst_QGuiEventLoop
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QObject
- tst_QProcess
- tst_QStateMachine
- tst_QTcpServer
- tst_QTcpSocket
- tst_QThread
- tst_QUdpSocket
- ...
|
| 494-8310663 |
3707 | sw.switchSender(receiver, sender, signal_index); | - |
3708 | }executed 8310663 times by 382 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
| 8310663 |
3709 | const QObjectPrivate::StaticMetaCallFunction callFunction = c->callFunction; | - |
3710 | const int method_relative = c->method_relative; | - |
3711 | if (c->isSlotObject) {TRUE | evaluated 24500 times by 175 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| FALSE | evaluated 8286657 times by 379 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
|
| 24500-8286657 |
3712 | c->slotObj->ref(); | - |
3713 | QScopedPointer<QtPrivate::QSlotObjectBase, QSlotObjectBaseDeleter> obj(c->slotObj); | - |
3714 | locker.unlock(); | - |
3715 | obj->call(receiver, argv ? argv : empty_argv); | - |
3716 | | - |
3717 | | - |
3718 | | - |
3719 | | - |
3720 | obj.reset(); | - |
3721 | | - |
3722 | locker.relock(); | - |
3723 | } else if (callFunction && c->method_offset <= receiver->metaObject()->methodOffset()) {executed 24498 times by 175 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
TRUE | evaluated 8272795 times by 365 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- ...
| FALSE | evaluated 13862 times by 134 testsEvaluated by:- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QDataWidgetMapper
- ...
|
TRUE | evaluated 8269472 times by 365 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- ...
| FALSE | evaluated 3323 times by 45 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemView
- tst_QAccessibility
- tst_QApplication
- tst_QColorDialog
- tst_QComboBox
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDialogButtonBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QHeaderView
- tst_QInputDialog
- tst_QItemDelegate
- tst_QItemView
- tst_QLineEdit
- tst_QListView
- tst_QListWidget
- tst_QLocalSocket
- tst_QMdiArea
- tst_QMdiSubWindow
- ...
|
| 3323-8272795 |
3724 | | - |
3725 | locker.unlock(); | - |
3726 | const int methodIndex = c->method(); | - |
3727 | if (qt_signal_spy_callback_set.slot_begin_callback != 0)TRUE | never evaluated | FALSE | evaluated 8269472 times by 365 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- ...
|
| 0-8269472 |
3728 | qt_signal_spy_callback_set.slot_begin_callback(receiver, methodIndex, argv ? argv : empty_argv); never executed: qt_signal_spy_callback_set.slot_begin_callback(receiver, methodIndex, argv ? argv : empty_argv); | 0 |
3729 | | - |
3730 | callFunction(receiver, QMetaObject::InvokeMetaMethod, method_relative, argv ? argv : empty_argv); | - |
3731 | | - |
3732 | if (qt_signal_spy_callback_set.slot_end_callback != 0)TRUE | never evaluated | FALSE | evaluated 8269469 times by 365 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- ...
|
| 0-8269469 |
3733 | qt_signal_spy_callback_set.slot_end_callback(receiver, methodIndex); never executed: qt_signal_spy_callback_set.slot_end_callback(receiver, methodIndex); | 0 |
3734 | locker.relock(); | - |
3735 | } else {executed 8269469 times by 365 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- ...
| 8269469 |
3736 | const int method = method_relative + c->method_offset; | - |
3737 | locker.unlock(); | - |
3738 | | - |
3739 | if (qt_signal_spy_callback_set.slot_begin_callback != 0) {TRUE | never evaluated | FALSE | evaluated 17185 times by 148 testsEvaluated by:- tst_ModelTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusServiceWatcher
- ...
|
| 0-17185 |
3740 | qt_signal_spy_callback_set.slot_begin_callback(receiver, | - |
3741 | method, | - |
3742 | argv ? argv : empty_argv); | - |
3743 | } never executed: end of block | 0 |
3744 | | - |
3745 | metacall(receiver, QMetaObject::InvokeMetaMethod, method, argv ? argv : empty_argv); | - |
3746 | | - |
3747 | if (qt_signal_spy_callback_set.slot_end_callback != 0)TRUE | never evaluated | FALSE | evaluated 17185 times by 148 testsEvaluated by:- tst_ModelTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusServiceWatcher
- ...
|
| 0-17185 |
3748 | qt_signal_spy_callback_set.slot_end_callback(receiver, method); never executed: qt_signal_spy_callback_set.slot_end_callback(receiver, method); | 0 |
3749 | | - |
3750 | locker.relock(); | - |
3751 | }executed 17185 times by 148 tests: end of block Executed by:- tst_ModelTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusServiceWatcher
- ...
| 17185 |
3752 | | - |
3753 | if (connectionLists->orphaned)TRUE | evaluated 249 times by 15 testsEvaluated by:- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDialogButtonBox
- tst_QMenu
- tst_QNetworkReply
- tst_QObject
- tst_QProcess
- tst_QPushButton
- tst_QSequentialAnimationGroup
- tst_QStatusBar
- tst_qdbusabstractinterface - unknown status
| FALSE | evaluated 8310903 times by 382 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
|
| 249-8310903 |
3754 | break;executed 249 times by 15 tests: break; Executed by:- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDialogButtonBox
- tst_QMenu
- tst_QNetworkReply
- tst_QObject
- tst_QProcess
- tst_QPushButton
- tst_QSequentialAnimationGroup
- tst_QStatusBar
- tst_qdbusabstractinterface - unknown status
| 249 |
3755 | } while (c != last && (c = c->nextConnectionList) != 0);executed 8310903 times by 382 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
TRUE | evaluated 783918 times by 151 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- ...
| FALSE | evaluated 7714670 times by 509 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
|
TRUE | evaluated 783918 times by 151 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- ...
| FALSE | never evaluated |
| 0-8310903 |
3756 | | - |
3757 | if (connectionLists->orphaned)TRUE | evaluated 250 times by 15 testsEvaluated by:- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDialogButtonBox
- tst_QMenu
- tst_QNetworkReply
- tst_QObject
- tst_QProcess
- tst_QPushButton
- tst_QSequentialAnimationGroup
- tst_QStatusBar
- tst_qdbusabstractinterface - unknown status
| FALSE | evaluated 7714669 times by 509 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
|
| 250-7714669 |
3758 | break;executed 250 times by 15 tests: break; Executed by:- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDialogButtonBox
- tst_QMenu
- tst_QNetworkReply
- tst_QObject
- tst_QProcess
- tst_QPushButton
- tst_QSequentialAnimationGroup
- tst_QStatusBar
- tst_qdbusabstractinterface - unknown status
| 250 |
3759 | } while (list != &connectionLists->allsignals &&executed 7714669 times by 509 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
TRUE | evaluated 7714370 times by 509 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
| FALSE | evaluated 7714776 times by 509 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
|
| 7714370-7714776 |
3760 | | - |
3761 | ((list = &connectionLists->allsignals), true)); | - |
3762 | | - |
3763 | } | - |
3764 | | - |
3765 | if (qt_signal_spy_callback_set.signal_end_callback != 0)TRUE | never evaluated | FALSE | evaluated 7715026 times by 509 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
|
| 0-7715026 |
3766 | qt_signal_spy_callback_set.signal_end_callback(sender, signal_index); never executed: qt_signal_spy_callback_set.signal_end_callback(sender, signal_index); | 0 |
3767 | | - |
3768 | }executed 7715026 times by 509 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- ...
| 7715026 |
3769 | | - |
3770 | | - |
3771 | | - |
3772 | | - |
3773 | | - |
3774 | void QMetaObject::activate(QObject *sender, int signal_index, void **argv) | - |
3775 | { | - |
3776 | const QMetaObject *mo = sender->metaObject(); | - |
3777 | while (mo->methodOffset() > signal_index)TRUE | never evaluated | FALSE | evaluated 3 times by 1 test |
| 0-3 |
3778 | mo = mo->superClass(); never executed: mo = mo->superClass(); | 0 |
3779 | activate(sender, mo, signal_index - mo->methodOffset(), argv); | - |
3780 | }executed 3 times by 1 test: end of block | 3 |
3781 | | - |
3782 | | - |
3783 | | - |
3784 | | - |
3785 | | - |
3786 | | - |
3787 | | - |
3788 | | - |
3789 | | - |
3790 | | - |
3791 | int QObjectPrivate::signalIndex(const char *signalName, | - |
3792 | const QMetaObject **meta) const | - |
3793 | { | - |
3794 | Q_Q(const QObject); | - |
3795 | const QMetaObject *base = q->metaObject(); | - |
3796 | Q_ASSERT(QMetaObjectPrivate::get(base)->revision >= 7); | - |
3797 | QArgumentTypeArray types; | - |
3798 | QByteArray name = QMetaObjectPrivate::decodeMethodSignature(signalName, types); | - |
3799 | int relative_index = QMetaObjectPrivate::indexOfSignalRelative( | - |
3800 | &base, name, types.size(), types.constData()); | - |
3801 | if (relative_index < 0)TRUE | evaluated 1 time by 1 test | FALSE | evaluated 1862 times by 45 testsEvaluated by:- tst_Gestures
- tst_QAccessibility
- tst_QAnimationGroup
- tst_QColumnView
- tst_QDialog
- tst_QDockWidget
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- tst_QGraphicsLinearLayout
- tst_QGraphicsPixmapItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsSceneIndex
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QLineEdit
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMetaObject
- ...
|
| 1-1862 |
3802 | return relative_index;executed 1 time by 1 test: return relative_index; | 1 |
3803 | relative_index = QMetaObjectPrivate::originalClone(base, relative_index); | - |
3804 | if (meta)TRUE | evaluated 17 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QObject
| FALSE | evaluated 1845 times by 44 testsEvaluated by:- tst_Gestures
- tst_QAccessibility
- tst_QAnimationGroup
- tst_QColumnView
- tst_QDialog
- tst_QDockWidget
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- tst_QGraphicsLinearLayout
- tst_QGraphicsPixmapItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsSceneIndex
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QLineEdit
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QObject
- ...
|
| 17-1845 |
3805 | *meta = base;executed 17 times by 2 tests: *meta = base; Executed by:- tst_QMetaObject
- tst_QObject
| 17 |
3806 | return relative_index + QMetaObjectPrivate::signalOffset(base);executed 1862 times by 45 tests: return relative_index + QMetaObjectPrivate::signalOffset(base); Executed by:- tst_Gestures
- tst_QAccessibility
- tst_QAnimationGroup
- tst_QColumnView
- tst_QDialog
- tst_QDockWidget
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- tst_QGraphicsLinearLayout
- tst_QGraphicsPixmapItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsSceneIndex
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QLineEdit
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMetaObject
- ...
| 1862 |
3807 | } | - |
3808 | | - |
3809 | | - |
3810 | | - |
3811 | | - |
3812 | | - |
3813 | #ifndef QT_NO_PROPERTIES | - |
3814 | | - |
3815 | | - |
3816 | | - |
3817 | | - |
3818 | | - |
3819 | | - |
3820 | | - |
3821 | | - |
3822 | | - |
3823 | | - |
3824 | | - |
3825 | | - |
3826 | | - |
3827 | | - |
3828 | | - |
3829 | | - |
3830 | | - |
3831 | | - |
3832 | | - |
3833 | | - |
3834 | | - |
3835 | | - |
3836 | bool QObject::setProperty(const char *name, const QVariant &value) | - |
3837 | { | - |
3838 | Q_D(QObject); | - |
3839 | const QMetaObject* meta = metaObject(); | - |
3840 | if (!name || !meta)TRUE | never evaluated | FALSE | evaluated 20356 times by 120 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QAnimationGroup
- tst_QApplication
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDBusThreading
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- ...
|
TRUE | never evaluated | FALSE | evaluated 20356 times by 120 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QAnimationGroup
- tst_QApplication
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDBusThreading
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- ...
|
| 0-20356 |
3841 | return false; never executed: return false; | 0 |
3842 | | - |
3843 | int id = meta->indexOfProperty(name); | - |
3844 | if (id < 0) {TRUE | evaluated 19328 times by 88 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QAnimationGroup
- tst_QApplication
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDBusThreading
- tst_QEventLoop
- tst_QFileDialog2
- tst_QFiledialog
- ...
| FALSE | evaluated 1028 times by 50 testsEvaluated by:- tst_QAbstractItemView
- tst_QAccessibility
- tst_QApplication
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QEasingCurve
- tst_QErrorMessage
- tst_QGraphicsItem
- tst_QGraphicsObject
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QInputDialog
- tst_QItemDelegate
- tst_QItemView
- tst_QLabel
- tst_QListWidget
- tst_QMainWindow
- tst_QMatrixNxN
- tst_QMdiArea
- ...
|
| 1028-19328 |
3845 | if (!d->extraData)TRUE | evaluated 12977 times by 74 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAnimationGroup
- tst_QComboBox
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDBusThreading
- tst_QEventLoop
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsProxyWidget
- tst_QGraphicsView
- tst_QGuiEventLoop
- ...
| FALSE | evaluated 6351 times by 53 testsEvaluated by:- tst_QAbstractItemView
- tst_QAccessibility
- tst_QAnimationGroup
- tst_QApplication
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsProxyWidget
- tst_QGraphicsView
- tst_QHttpNetworkConnection
- tst_QLabel
- ...
|
| 6351-12977 |
3846 | d->extraData = new QObjectPrivate::ExtraData;executed 12977 times by 74 tests: d->extraData = new QObjectPrivate::ExtraData; Executed by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAnimationGroup
- tst_QComboBox
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDBusThreading
- tst_QEventLoop
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsProxyWidget
- tst_QGraphicsView
- tst_QGuiEventLoop
- ...
| 12977 |
3847 | | - |
3848 | const int idx = d->extraData->propertyNames.indexOf(name); | - |
3849 | | - |
3850 | if (!value.isValid()) {TRUE | evaluated 8413 times by 35 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QApplication
- tst_QComboBox
- tst_QEventLoop
- tst_QFontDialog
- tst_QFtp
- tst_QGuiEventLoop
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QHttpSocketEngine
- tst_QIODevice
- tst_QImageReader
- tst_QLocalSocket
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkReply
- tst_QNetworkSession
- tst_QObject
- tst_QSocketNotifier
- tst_QSocks5SocketEngine
- tst_QSslSocket
- tst_QSslSocket_onDemandCertificates_member
- tst_QSslSocket_onDemandCertificates_static
- tst_QStateMachine
- ...
| FALSE | evaluated 10915 times by 69 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QAnimationGroup
- tst_QApplication
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDBusThreading
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontDialog
- ...
|
| 8413-10915 |
3851 | if (idx == -1)TRUE | evaluated 8374 times by 33 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QApplication
- tst_QComboBox
- tst_QEventLoop
- tst_QFontDialog
- tst_QFtp
- tst_QGuiEventLoop
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QHttpSocketEngine
- tst_QIODevice
- tst_QImageReader
- tst_QLocalSocket
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkReply
- tst_QNetworkSession
- tst_QObject
- tst_QSocketNotifier
- tst_QSocks5SocketEngine
- tst_QSslSocket
- tst_QSslSocket_onDemandCertificates_member
- tst_QSslSocket_onDemandCertificates_static
- tst_QStyleSheetStyle
- ...
| FALSE | evaluated 39 times by 5 testsEvaluated by:- tst_QApplication
- tst_QObject
- tst_QStateMachine
- tst_QStyleSheetStyle
- tst_QWidget
|
| 39-8374 |
3852 | return false;executed 8374 times by 33 tests: return false; Executed by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QApplication
- tst_QComboBox
- tst_QEventLoop
- tst_QFontDialog
- tst_QFtp
- tst_QGuiEventLoop
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QHttpSocketEngine
- tst_QIODevice
- tst_QImageReader
- tst_QLocalSocket
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkReply
- tst_QNetworkSession
- tst_QObject
- tst_QSocketNotifier
- tst_QSocks5SocketEngine
- tst_QSslSocket
- tst_QSslSocket_onDemandCertificates_member
- tst_QSslSocket_onDemandCertificates_static
- tst_QStyleSheetStyle
- ...
| 8374 |
3853 | d->extraData->propertyNames.removeAt(idx); | - |
3854 | d->extraData->propertyValues.removeAt(idx); | - |
3855 | } else {executed 39 times by 5 tests: end of block Executed by:- tst_QApplication
- tst_QObject
- tst_QStateMachine
- tst_QStyleSheetStyle
- tst_QWidget
| 39 |
3856 | if (idx == -1) {TRUE | evaluated 9290 times by 69 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QAnimationGroup
- tst_QApplication
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDBusThreading
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontDialog
- ...
| FALSE | evaluated 1625 times by 27 testsEvaluated by:- tst_QAnimationGroup
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QFtp
- tst_QHttpNetworkConnection
- tst_QMainWindow
- tst_QMenu
- tst_QObject
- tst_QParallelAnimationGroup
- tst_QPauseAnimation
- tst_QPropertyAnimation
- tst_QSequentialAnimationGroup
- tst_QState
- tst_QStateMachine
- tst_QStyleSheetStyle
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- ...
|
| 1625-9290 |
3857 | d->extraData->propertyNames.append(name); | - |
3858 | d->extraData->propertyValues.append(value); | - |
3859 | } else {executed 9290 times by 69 tests: end of block Executed by:- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QAnimationGroup
- tst_QApplication
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDBusThreading
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontDialog
- ...
| 9290 |
3860 | if (value == d->extraData->propertyValues.at(idx))TRUE | evaluated 523 times by 11 testsEvaluated by:- tst_QAnimationGroup
- tst_QFtp
- tst_QMainWindow
- tst_QMenu
- tst_QObject
- tst_QParallelAnimationGroup
- tst_QPauseAnimation
- tst_QPropertyAnimation
- tst_QSequentialAnimationGroup
- tst_QStateMachine
- tst_QStyleSheetStyle
| FALSE | evaluated 1102 times by 23 testsEvaluated by:- tst_QAnimationGroup
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QHttpNetworkConnection
- tst_QMenu
- tst_QPauseAnimation
- tst_QPropertyAnimation
- tst_QSequentialAnimationGroup
- tst_QState
- tst_QStateMachine
- tst_QStyleSheetStyle
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
|
| 523-1102 |
3861 | return false;executed 523 times by 11 tests: return false; Executed by:- tst_QAnimationGroup
- tst_QFtp
- tst_QMainWindow
- tst_QMenu
- tst_QObject
- tst_QParallelAnimationGroup
- tst_QPauseAnimation
- tst_QPropertyAnimation
- tst_QSequentialAnimationGroup
- tst_QStateMachine
- tst_QStyleSheetStyle
| 523 |
3862 | d->extraData->propertyValues[idx] = value; | - |
3863 | }executed 1102 times by 23 tests: end of block Executed by:- tst_QAnimationGroup
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QHttpNetworkConnection
- tst_QMenu
- tst_QPauseAnimation
- tst_QPropertyAnimation
- tst_QSequentialAnimationGroup
- tst_QState
- tst_QStateMachine
- tst_QStyleSheetStyle
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
| 1102 |
3864 | } | - |
3865 | | - |
3866 | QDynamicPropertyChangeEvent ev(name); | - |
3867 | QCoreApplication::sendEvent(this, &ev); | - |
3868 | | - |
3869 | return false;executed 10431 times by 69 tests: return false; Executed by:- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QAnimationGroup
- tst_QApplication
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDBusThreading
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontDialog
- ...
| 10431 |
3870 | } | - |
3871 | QMetaProperty p = meta->property(id); | - |
3872 | #ifndef QT_NO_DEBUG | - |
3873 | if (!p.isWritable())TRUE | never evaluated | FALSE | evaluated 1028 times by 50 testsEvaluated by:- tst_QAbstractItemView
- tst_QAccessibility
- tst_QApplication
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QEasingCurve
- tst_QErrorMessage
- tst_QGraphicsItem
- tst_QGraphicsObject
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QInputDialog
- tst_QItemDelegate
- tst_QItemView
- tst_QLabel
- tst_QListWidget
- tst_QMainWindow
- tst_QMatrixNxN
- tst_QMdiArea
- ...
|
| 0-1028 |
3874 | qWarning("%s::setProperty: Property \"%s\" invalid," never executed: QMessageLogger(__FILE__, 3874, __PRETTY_FUNCTION__).warning("%s::setProperty: Property \"%s\" invalid," " read-only or does not exist", metaObject()->className(), name); | 0 |
3875 | " read-only or does not exist", metaObject()->className(), name); never executed: QMessageLogger(__FILE__, 3874, __PRETTY_FUNCTION__).warning("%s::setProperty: Property \"%s\" invalid," " read-only or does not exist", metaObject()->className(), name); | 0 |
3876 | #endif | - |
3877 | return p.write(this, value);executed 1028 times by 50 tests: return p.write(this, value); Executed by:- tst_QAbstractItemView
- tst_QAccessibility
- tst_QApplication
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QEasingCurve
- tst_QErrorMessage
- tst_QGraphicsItem
- tst_QGraphicsObject
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QInputDialog
- tst_QItemDelegate
- tst_QItemView
- tst_QLabel
- tst_QListWidget
- tst_QMainWindow
- tst_QMatrixNxN
- tst_QMdiArea
- ...
| 1028 |
3878 | } | - |
3879 | | - |
3880 | | - |
3881 | | - |
3882 | | - |
3883 | | - |
3884 | | - |
3885 | | - |
3886 | | - |
3887 | | - |
3888 | | - |
3889 | | - |
3890 | QVariant QObject::property(const char *name) const | - |
3891 | { | - |
3892 | Q_D(const QObject); | - |
3893 | const QMetaObject* meta = metaObject(); | - |
3894 | if (!name || !meta)TRUE | never evaluated | FALSE | evaluated 64817 times by 199 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
TRUE | never evaluated | FALSE | evaluated 64817 times by 199 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
| 0-64817 |
3895 | return QVariant(); never executed: return QVariant(); | 0 |
3896 | | - |
3897 | int id = meta->indexOfProperty(name); | - |
3898 | if (id < 0) {TRUE | evaluated 43928 times by 180 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- ...
| FALSE | evaluated 20889 times by 150 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
|
| 20889-43928 |
3899 | if (!d->extraData)TRUE | evaluated 9799 times by 79 testsEvaluated by:- tst_Lancelot
- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAccessibility
- tst_QApplication
- tst_QBackingStore
- tst_QComboBox
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDBusThreading
- tst_QEventLoop
- tst_QFileDialog2
- tst_QFocusEvent
- tst_QFontDialog
- ...
| FALSE | evaluated 34129 times by 153 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- ...
|
| 9799-34129 |
3900 | return QVariant();executed 9799 times by 79 tests: return QVariant(); Executed by:- tst_Lancelot
- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAccessibility
- tst_QApplication
- tst_QBackingStore
- tst_QComboBox
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusMarshall
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDBusThreading
- tst_QEventLoop
- tst_QFileDialog2
- tst_QFocusEvent
- tst_QFontDialog
- ...
| 9799 |
3901 | const int i = d->extraData->propertyNames.indexOf(name); | - |
3902 | return d->extraData->propertyValues.value(i);executed 34129 times by 153 tests: return d->extraData->propertyValues.value(i); Executed by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- ...
| 34129 |
3903 | } | - |
3904 | QMetaProperty p = meta->property(id); | - |
3905 | #ifndef QT_NO_DEBUG | - |
3906 | if (!p.isReadable())TRUE | never evaluated | FALSE | evaluated 20889 times by 150 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
|
| 0-20889 |
3907 | qWarning("%s::property: Property \"%s\" invalid or does not exist", never executed: QMessageLogger(__FILE__, 3907, __PRETTY_FUNCTION__).warning("%s::property: Property \"%s\" invalid or does not exist", metaObject()->className(), name); | 0 |
3908 | metaObject()->className(), name); never executed: QMessageLogger(__FILE__, 3907, __PRETTY_FUNCTION__).warning("%s::property: Property \"%s\" invalid or does not exist", metaObject()->className(), name); | 0 |
3909 | #endif | - |
3910 | return p.read(this);executed 20889 times by 150 tests: return p.read(this); Executed by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
| 20889 |
3911 | } | - |
3912 | | - |
3913 | | - |
3914 | | - |
3915 | | - |
3916 | | - |
3917 | | - |
3918 | | - |
3919 | QList<QByteArray> QObject::dynamicPropertyNames() const | - |
3920 | { | - |
3921 | Q_D(const QObject); | - |
3922 | if (d->extraData)TRUE | evaluated 9566 times by 124 testsEvaluated by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDial
- tst_QDialog
- ...
| FALSE | evaluated 3349 times by 127 testsEvaluated by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDial
- tst_QDialog
- ...
|
| 3349-9566 |
3923 | return d->extraData->propertyNames;executed 9566 times by 124 tests: return d->extraData->propertyNames; Executed by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDial
- tst_QDialog
- ...
| 9566 |
3924 | return QList<QByteArray>();executed 3349 times by 127 tests: return QList<QByteArray>(); Executed by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDial
- tst_QDialog
- ...
| 3349 |
3925 | } | - |
3926 | | - |
3927 | #endif // QT_NO_PROPERTIES | - |
3928 | | - |
3929 | | - |
3930 | | - |
3931 | | - |
3932 | | - |
3933 | | - |
3934 | static void dumpRecursive(int level, QObject *object) | - |
3935 | { | - |
3936 | #if defined(QT_DEBUG) | - |
3937 | if (object) {TRUE | never evaluated | FALSE | never evaluated |
| 0 |
3938 | QByteArray buf; | - |
3939 | buf.fill(' ', level / 2 * 8); | - |
3940 | if (level % 2)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
3941 | buf += " "; never executed: buf += " "; | 0 |
3942 | QString name = object->objectName(); | - |
3943 | QString flags = QLatin1String(""); | - |
3944 | #if 0 | - |
3945 | if (qApp->focusWidget() == object) | - |
3946 | flags += 'F'; | - |
3947 | if (object->isWidgetType()) { | - |
3948 | QWidget * w = (QWidget *)object; | - |
3949 | if (w->isVisible()) { | - |
3950 | QString t("<%1,%2,%3,%4>"); | - |
3951 | flags += t.arg(w->x()).arg(w->y()).arg(w->width()).arg(w->height()); | - |
3952 | } else { | - |
3953 | flags += 'I'; | - |
3954 | } | - |
3955 | } | - |
3956 | #endif | - |
3957 | qDebug("%s%s::%s %s", (const char*)buf, object->metaObject()->className(), name.toLocal8Bit().data(), | - |
3958 | flags.toLatin1().data()); | - |
3959 | QObjectList children = object->children(); | - |
3960 | if (!children.isEmpty()) {TRUE | never evaluated | FALSE | never evaluated |
| 0 |
3961 | for (int i = 0; i < children.size(); ++i)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
3962 | dumpRecursive(level+1, children.at(i)); never executed: dumpRecursive(level+1, children.at(i)); | 0 |
3963 | } never executed: end of block | 0 |
3964 | } never executed: end of block | 0 |
3965 | #else | - |
3966 | Q_UNUSED(level) | - |
3967 | Q_UNUSED(object) | - |
3968 | #endif | - |
3969 | } never executed: end of block | 0 |
3970 | | - |
3971 | | - |
3972 | | - |
3973 | | - |
3974 | | - |
3975 | | - |
3976 | | - |
3977 | | - |
3978 | | - |
3979 | | - |
3980 | | - |
3981 | void QObject::dumpObjectTree() | - |
3982 | { | - |
3983 | dumpRecursive(0, this); | - |
3984 | } never executed: end of block | 0 |
3985 | | - |
3986 | | - |
3987 | | - |
3988 | | - |
3989 | | - |
3990 | | - |
3991 | | - |
3992 | | - |
3993 | | - |
3994 | | - |
3995 | | - |
3996 | | - |
3997 | void QObject::dumpObjectInfo() | - |
3998 | { | - |
3999 | #if defined(QT_DEBUG) | - |
4000 | qDebug("OBJECT %s::%s", metaObject()->className(), | - |
4001 | objectName().isEmpty() ? "unnamed" : objectName().toLocal8Bit().data()); | - |
4002 | | - |
4003 | Q_D(QObject); | - |
4004 | QMutexLocker locker(signalSlotLock(this)); | - |
4005 | | - |
4006 | | - |
4007 | qDebug(" SIGNALS OUT"); | - |
4008 | | - |
4009 | if (d->connectionLists) {TRUE | evaluated 1 time by 1 test | FALSE | never evaluated |
| 0-1 |
4010 | for (int signal_index = 0; signal_index < d->connectionLists->count(); ++signal_index) {TRUE | evaluated 1 time by 1 test | FALSE | evaluated 1 time by 1 test |
| 1 |
4011 | const QMetaMethod signal = QMetaObjectPrivate::signal(metaObject(), signal_index); | - |
4012 | qDebug(" signal: %s", signal.methodSignature().constData()); | - |
4013 | | - |
4014 | | - |
4015 | const QObjectPrivate::Connection *c = | - |
4016 | d->connectionLists->at(signal_index).first; | - |
4017 | while (c) {TRUE | evaluated 1 time by 1 test | FALSE | evaluated 1 time by 1 test |
| 1 |
4018 | if (!c->receiver) {TRUE | evaluated 1 time by 1 test | FALSE | never evaluated |
| 0-1 |
4019 | qDebug(" <Disconnected receiver>"); | - |
4020 | c = c->nextConnectionList; | - |
4021 | continue;executed 1 time by 1 test: continue; | 1 |
4022 | } | - |
4023 | if (c->isSlotObject) {TRUE | never evaluated | FALSE | never evaluated |
| 0 |
4024 | qDebug(" <functor or function pointer>"); | - |
4025 | c = c->nextConnectionList; | - |
4026 | continue; never executed: continue; | 0 |
4027 | } | - |
4028 | const QMetaObject *receiverMetaObject = c->receiver->metaObject(); | - |
4029 | const QMetaMethod method = receiverMetaObject->method(c->method()); | - |
4030 | qDebug(" --> %s::%s %s", | - |
4031 | receiverMetaObject->className(), | - |
4032 | c->receiver->objectName().isEmpty() ? "unnamed" : qPrintable(c->receiver->objectName()), | - |
4033 | method.methodSignature().constData()); | - |
4034 | c = c->nextConnectionList; | - |
4035 | } never executed: end of block | 0 |
4036 | }executed 1 time by 1 test: end of block | 1 |
4037 | } else {executed 1 time by 1 test: end of block | 1 |
4038 | qDebug( " <None>" ); | - |
4039 | } never executed: end of block | 0 |
4040 | | - |
4041 | | - |
4042 | qDebug(" SIGNALS IN"); | - |
4043 | | - |
4044 | if (d->senders) {TRUE | never evaluated | FALSE | evaluated 1 time by 1 test |
| 0-1 |
4045 | for (QObjectPrivate::Connection *s = d->senders; s; s = s->next) {TRUE | never evaluated | FALSE | never evaluated |
| 0 |
4046 | QByteArray slotName = QByteArrayLiteral("<unknown>"); never executed: return ba; | 0 |
4047 | if (!s->isSlotObject) {TRUE | never evaluated | FALSE | never evaluated |
| 0 |
4048 | const QMetaMethod slot = metaObject()->method(s->method()); | - |
4049 | slotName = slot.methodSignature(); | - |
4050 | } never executed: end of block | 0 |
4051 | qDebug(" <-- %s::%s %s", | - |
4052 | s->sender->metaObject()->className(), | - |
4053 | s->sender->objectName().isEmpty() ? "unnamed" : qPrintable(s->sender->objectName()), | - |
4054 | slotName.constData()); | - |
4055 | } never executed: end of block | 0 |
4056 | } else { never executed: end of block | 0 |
4057 | qDebug(" <None>"); | - |
4058 | }executed 1 time by 1 test: end of block | 1 |
4059 | #endif | - |
4060 | } | - |
4061 | | - |
4062 | #ifndef QT_NO_USERDATA | - |
4063 | | - |
4064 | | - |
4065 | | - |
4066 | uint QObject::registerUserData() | - |
4067 | { | - |
4068 | static int user_data_registration = 0; | - |
4069 | return user_data_registration++;executed 100 times by 1 test: return user_data_registration++; | 100 |
4070 | } | - |
4071 | | - |
4072 | | - |
4073 | | - |
4074 | | - |
4075 | QObjectUserData::~QObjectUserData() | - |
4076 | { | - |
4077 | } | - |
4078 | | - |
4079 | | - |
4080 | | - |
4081 | | - |
4082 | void QObject::setUserData(uint id, QObjectUserData* data) | - |
4083 | { | - |
4084 | Q_D(QObject); | - |
4085 | if (!d->extraData)TRUE | evaluated 1 time by 1 test | FALSE | evaluated 99 times by 1 test |
| 1-99 |
4086 | d->extraData = new QObjectPrivate::ExtraData;executed 1 time by 1 test: d->extraData = new QObjectPrivate::ExtraData; | 1 |
4087 | | - |
4088 | if (d->extraData->userData.size() <= (int) id)TRUE | evaluated 4 times by 1 test | FALSE | evaluated 96 times by 1 test |
| 4-96 |
4089 | d->extraData->userData.resize((int) id + 1);executed 4 times by 1 test: d->extraData->userData.resize((int) id + 1); | 4 |
4090 | d->extraData->userData[id] = data; | - |
4091 | }executed 100 times by 1 test: end of block | 100 |
4092 | | - |
4093 | | - |
4094 | | - |
4095 | | - |
4096 | QObjectUserData* QObject::userData(uint id) const | - |
4097 | { | - |
4098 | Q_D(const QObject); | - |
4099 | if (!d->extraData)TRUE | never evaluated | FALSE | evaluated 100 times by 1 test |
| 0-100 |
4100 | return 0; never executed: return 0; | 0 |
4101 | if ((int)id < d->extraData->userData.size())TRUE | evaluated 100 times by 1 test | FALSE | never evaluated |
| 0-100 |
4102 | return d->extraData->userData.at(id);executed 100 times by 1 test: return d->extraData->userData.at(id); | 100 |
4103 | return 0; never executed: return 0; | 0 |
4104 | } | - |
4105 | | - |
4106 | #endif // QT_NO_USERDATA | - |
4107 | | - |
4108 | | - |
4109 | #ifndef QT_NO_DEBUG_STREAM | - |
4110 | QDebug operator<<(QDebug dbg, const QObject *o) | - |
4111 | { | - |
4112 | QDebugStateSaver saver(dbg); | - |
4113 | if (!o)TRUE | evaluated 15 times by 4 testsEvaluated by:- tst_ModelTest
- tst_QAccessibility
- tst_QNetworkDiskCache
- tst_QVariant
| FALSE | evaluated 4 times by 3 testsEvaluated by:- tst_ModelTest
- tst_QAccessibility
- tst_QVariant
|
| 4-15 |
4114 | return dbg << "QObject(0x0)";executed 15 times by 4 tests: return dbg << "QObject(0x0)"; Executed by:- tst_ModelTest
- tst_QAccessibility
- tst_QNetworkDiskCache
- tst_QVariant
| 15 |
4115 | dbg.nospace() << o->metaObject()->className() << '(' << (const void *)o; | - |
4116 | if (!o->objectName().isEmpty())TRUE | never evaluated | FALSE | evaluated 4 times by 3 testsEvaluated by:- tst_ModelTest
- tst_QAccessibility
- tst_QVariant
|
| 0-4 |
4117 | dbg << ", name = " << o->objectName(); never executed: dbg << ", name = " << o->objectName(); | 0 |
4118 | dbg << ')'; | - |
4119 | return dbg;executed 4 times by 3 tests: return dbg; Executed by:- tst_ModelTest
- tst_QAccessibility
- tst_QVariant
| 4 |
4120 | } | - |
4121 | #endif | - |
4122 | | - |
4123 | | - |
4124 | | - |
4125 | | - |
4126 | | - |
4127 | | - |
4128 | | - |
4129 | | - |
4130 | | - |
4131 | | - |
4132 | | - |
4133 | | - |
4134 | | - |
4135 | | - |
4136 | | - |
4137 | | - |
4138 | | - |
4139 | | - |
4140 | | - |
4141 | | - |
4142 | | - |
4143 | | - |
4144 | | - |
4145 | | - |
4146 | | - |
4147 | | - |
4148 | | - |
4149 | | - |
4150 | | - |
4151 | | - |
4152 | | - |
4153 | | - |
4154 | | - |
4155 | | - |
4156 | | - |
4157 | | - |
4158 | | - |
4159 | | - |
4160 | | - |
4161 | | - |
4162 | | - |
4163 | | - |
4164 | | - |
4165 | | - |
4166 | | - |
4167 | | - |
4168 | | - |
4169 | | - |
4170 | | - |
4171 | | - |
4172 | | - |
4173 | | - |
4174 | | - |
4175 | | - |
4176 | | - |
4177 | | - |
4178 | | - |
4179 | | - |
4180 | | - |
4181 | | - |
4182 | | - |
4183 | | - |
4184 | | - |
4185 | | - |
4186 | | - |
4187 | | - |
4188 | | - |
4189 | | - |
4190 | | - |
4191 | | - |
4192 | | - |
4193 | | - |
4194 | | - |
4195 | | - |
4196 | | - |
4197 | | - |
4198 | | - |
4199 | | - |
4200 | | - |
4201 | | - |
4202 | | - |
4203 | | - |
4204 | | - |
4205 | | - |
4206 | | - |
4207 | | - |
4208 | | - |
4209 | | - |
4210 | | - |
4211 | | - |
4212 | | - |
4213 | | - |
4214 | | - |
4215 | | - |
4216 | | - |
4217 | | - |
4218 | | - |
4219 | | - |
4220 | | - |
4221 | | - |
4222 | | - |
4223 | | - |
4224 | | - |
4225 | | - |
4226 | | - |
4227 | | - |
4228 | | - |
4229 | | - |
4230 | | - |
4231 | | - |
4232 | | - |
4233 | | - |
4234 | | - |
4235 | | - |
4236 | | - |
4237 | | - |
4238 | | - |
4239 | | - |
4240 | | - |
4241 | | - |
4242 | | - |
4243 | | - |
4244 | | - |
4245 | | - |
4246 | | - |
4247 | | - |
4248 | | - |
4249 | | - |
4250 | | - |
4251 | | - |
4252 | | - |
4253 | | - |
4254 | | - |
4255 | | - |
4256 | | - |
4257 | | - |
4258 | | - |
4259 | | - |
4260 | | - |
4261 | | - |
4262 | | - |
4263 | | - |
4264 | | - |
4265 | | - |
4266 | | - |
4267 | | - |
4268 | | - |
4269 | | - |
4270 | | - |
4271 | | - |
4272 | | - |
4273 | | - |
4274 | | - |
4275 | | - |
4276 | | - |
4277 | | - |
4278 | | - |
4279 | | - |
4280 | | - |
4281 | | - |
4282 | | - |
4283 | | - |
4284 | | - |
4285 | | - |
4286 | | - |
4287 | | - |
4288 | | - |
4289 | | - |
4290 | | - |
4291 | | - |
4292 | | - |
4293 | | - |
4294 | | - |
4295 | | - |
4296 | | - |
4297 | | - |
4298 | | - |
4299 | | - |
4300 | | - |
4301 | | - |
4302 | | - |
4303 | | - |
4304 | | - |
4305 | | - |
4306 | | - |
4307 | | - |
4308 | | - |
4309 | | - |
4310 | | - |
4311 | | - |
4312 | | - |
4313 | | - |
4314 | | - |
4315 | | - |
4316 | | - |
4317 | | - |
4318 | | - |
4319 | | - |
4320 | | - |
4321 | | - |
4322 | | - |
4323 | | - |
4324 | | - |
4325 | | - |
4326 | | - |
4327 | | - |
4328 | | - |
4329 | | - |
4330 | | - |
4331 | | - |
4332 | | - |
4333 | | - |
4334 | | - |
4335 | | - |
4336 | | - |
4337 | | - |
4338 | | - |
4339 | | - |
4340 | | - |
4341 | | - |
4342 | | - |
4343 | | - |
4344 | | - |
4345 | | - |
4346 | | - |
4347 | | - |
4348 | | - |
4349 | | - |
4350 | | - |
4351 | | - |
4352 | | - |
4353 | | - |
4354 | | - |
4355 | | - |
4356 | | - |
4357 | | - |
4358 | | - |
4359 | | - |
4360 | | - |
4361 | | - |
4362 | | - |
4363 | | - |
4364 | | - |
4365 | | - |
4366 | | - |
4367 | | - |
4368 | | - |
4369 | | - |
4370 | | - |
4371 | | - |
4372 | | - |
4373 | | - |
4374 | | - |
4375 | | - |
4376 | | - |
4377 | | - |
4378 | | - |
4379 | | - |
4380 | | - |
4381 | | - |
4382 | | - |
4383 | | - |
4384 | | - |
4385 | | - |
4386 | | - |
4387 | | - |
4388 | | - |
4389 | | - |
4390 | | - |
4391 | | - |
4392 | | - |
4393 | | - |
4394 | | - |
4395 | | - |
4396 | | - |
4397 | | - |
4398 | | - |
4399 | | - |
4400 | | - |
4401 | | - |
4402 | | - |
4403 | | - |
4404 | | - |
4405 | | - |
4406 | | - |
4407 | | - |
4408 | | - |
4409 | | - |
4410 | | - |
4411 | | - |
4412 | | - |
4413 | | - |
4414 | | - |
4415 | | - |
4416 | | - |
4417 | | - |
4418 | | - |
4419 | | - |
4420 | | - |
4421 | | - |
4422 | | - |
4423 | | - |
4424 | | - |
4425 | | - |
4426 | | - |
4427 | | - |
4428 | | - |
4429 | | - |
4430 | | - |
4431 | | - |
4432 | | - |
4433 | | - |
4434 | | - |
4435 | | - |
4436 | | - |
4437 | | - |
4438 | | - |
4439 | | - |
4440 | | - |
4441 | | - |
4442 | | - |
4443 | | - |
4444 | | - |
4445 | | - |
4446 | | - |
4447 | | - |
4448 | | - |
4449 | | - |
4450 | | - |
4451 | | - |
4452 | | - |
4453 | | - |
4454 | | - |
4455 | | - |
4456 | | - |
4457 | | - |
4458 | | - |
4459 | | - |
4460 | | - |
4461 | | - |
4462 | | - |
4463 | | - |
4464 | | - |
4465 | | - |
4466 | | - |
4467 | | - |
4468 | | - |
4469 | | - |
4470 | void qDeleteInEventHandler(QObject *o) | - |
4471 | { | - |
4472 | delete o; | - |
4473 | }executed 34998 times by 186 tests: end of block Executed by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- ...
| 34998 |
4474 | | - |
4475 | | - |
4476 | | - |
4477 | | - |
4478 | | - |
4479 | | - |
4480 | | - |
4481 | | - |
4482 | | - |
4483 | | - |
4484 | | - |
4485 | | - |
4486 | | - |
4487 | | - |
4488 | | - |
4489 | | - |
4490 | | - |
4491 | | - |
4492 | | - |
4493 | | - |
4494 | | - |
4495 | | - |
4496 | | - |
4497 | | - |
4498 | | - |
4499 | | - |
4500 | | - |
4501 | | - |
4502 | | - |
4503 | | - |
4504 | | - |
4505 | | - |
4506 | | - |
4507 | | - |
4508 | | - |
4509 | | - |
4510 | | - |
4511 | | - |
4512 | | - |
4513 | | - |
4514 | | - |
4515 | | - |
4516 | | - |
4517 | | - |
4518 | | - |
4519 | | - |
4520 | | - |
4521 | | - |
4522 | | - |
4523 | | - |
4524 | | - |
4525 | | - |
4526 | | - |
4527 | | - |
4528 | | - |
4529 | | - |
4530 | | - |
4531 | | - |
4532 | | - |
4533 | | - |
4534 | | - |
4535 | | - |
4536 | | - |
4537 | | - |
4538 | | - |
4539 | | - |
4540 | | - |
4541 | | - |
4542 | | - |
4543 | | - |
4544 | | - |
4545 | | - |
4546 | | - |
4547 | | - |
4548 | | - |
4549 | | - |
4550 | | - |
4551 | | - |
4552 | | - |
4553 | | - |
4554 | | - |
4555 | | - |
4556 | | - |
4557 | | - |
4558 | | - |
4559 | | - |
4560 | | - |
4561 | | - |
4562 | | - |
4563 | | - |
4564 | | - |
4565 | | - |
4566 | | - |
4567 | | - |
4568 | | - |
4569 | | - |
4570 | | - |
4571 | | - |
4572 | | - |
4573 | | - |
4574 | | - |
4575 | | - |
4576 | | - |
4577 | | - |
4578 | | - |
4579 | | - |
4580 | | - |
4581 | | - |
4582 | | - |
4583 | | - |
4584 | | - |
4585 | | - |
4586 | | - |
4587 | | - |
4588 | | - |
4589 | | - |
4590 | | - |
4591 | | - |
4592 | | - |
4593 | | - |
4594 | | - |
4595 | | - |
4596 | | - |
4597 | | - |
4598 | | - |
4599 | | - |
4600 | | - |
4601 | | - |
4602 | | - |
4603 | | - |
4604 | | - |
4605 | | - |
4606 | | - |
4607 | | - |
4608 | | - |
4609 | | - |
4610 | | - |
4611 | | - |
4612 | | - |
4613 | | - |
4614 | | - |
4615 | | - |
4616 | | - |
4617 | | - |
4618 | | - |
4619 | | - |
4620 | | - |
4621 | | - |
4622 | | - |
4623 | | - |
4624 | | - |
4625 | | - |
4626 | | - |
4627 | | - |
4628 | | - |
4629 | | - |
4630 | | - |
4631 | | - |
4632 | | - |
4633 | QMetaObject::Connection QObject::connectImpl(const QObject *sender, void **signal, | - |
4634 | const QObject *receiver, void **slot, | - |
4635 | QtPrivate::QSlotObjectBase *slotObj, Qt::ConnectionType type, | - |
4636 | const int *types, const QMetaObject *senderMetaObject) | - |
4637 | { | - |
4638 | if (!signal) {TRUE | never evaluated | FALSE | evaluated 215716 times by 177 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
|
| 0-215716 |
4639 | qWarning("QObject::connect: invalid null parameter"); | - |
4640 | if (slotObj)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
4641 | slotObj->destroyIfLastRef(); never executed: slotObj->destroyIfLastRef(); | 0 |
4642 | return QMetaObject::Connection(); never executed: return QMetaObject::Connection(); | 0 |
4643 | } | - |
4644 | | - |
4645 | int signal_index = -1; | - |
4646 | void *args[] = { &signal_index, signal }; | - |
4647 | for (; senderMetaObject && signal_index < 0; senderMetaObject = senderMetaObject->superClass()) {TRUE | evaluated 215719 times by 177 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| FALSE | evaluated 2 times by 2 testsEvaluated by:- tst_QMetaObjectBuilder
- tst_QObject
|
TRUE | evaluated 215719 times by 177 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| FALSE | never evaluated |
| 0-215719 |
4648 | senderMetaObject->static_metacall(QMetaObject::IndexOfMethod, 0, args); | - |
4649 | if (signal_index >= 0 && signal_index < QMetaObjectPrivate::get(senderMetaObject)->signalCount)TRUE | evaluated 215714 times by 177 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| FALSE | evaluated 5 times by 2 testsEvaluated by:- tst_QMetaObjectBuilder
- tst_QObject
|
TRUE | evaluated 215714 times by 177 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| FALSE | never evaluated |
| 0-215714 |
4650 | break;executed 215714 times by 177 tests: break; Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| 215714 |
4651 | }executed 5 times by 2 tests: end of block Executed by:- tst_QMetaObjectBuilder
- tst_QObject
| 5 |
4652 | if (!senderMetaObject) {TRUE | evaluated 2 times by 2 testsEvaluated by:- tst_QMetaObjectBuilder
- tst_QObject
| FALSE | evaluated 215714 times by 177 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
|
| 2-215714 |
4653 | qWarning("QObject::connect: signal not found in %s", sender->metaObject()->className()); | - |
4654 | slotObj->destroyIfLastRef(); | - |
4655 | return QMetaObject::Connection(0);executed 2 times by 2 tests: return QMetaObject::Connection(0); Executed by:- tst_QMetaObjectBuilder
- tst_QObject
| 2 |
4656 | } | - |
4657 | signal_index += QMetaObjectPrivate::signalOffset(senderMetaObject); | - |
4658 | return QObjectPrivate::connectImpl(sender, signal_index, receiver, slot, slotObj, type, types, senderMetaObject);executed 215714 times by 177 tests: return QObjectPrivate::connectImpl(sender, signal_index, receiver, slot, slotObj, type, types, senderMetaObject); Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| 215714 |
4659 | } | - |
4660 | | - |
4661 | | - |
4662 | | - |
4663 | | - |
4664 | | - |
4665 | | - |
4666 | | - |
4667 | | - |
4668 | QMetaObject::Connection QObjectPrivate::connectImpl(const QObject *sender, int signal_index, | - |
4669 | const QObject *receiver, void **slot, | - |
4670 | QtPrivate::QSlotObjectBase *slotObj, Qt::ConnectionType type, | - |
4671 | const int *types, const QMetaObject *senderMetaObject) | - |
4672 | { | - |
4673 | if (!sender || !slotObj || !senderMetaObject) {TRUE | never evaluated | FALSE | evaluated 215715 times by 177 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
|
TRUE | never evaluated | FALSE | evaluated 215715 times by 177 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
|
TRUE | never evaluated | FALSE | evaluated 215715 times by 177 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
|
| 0-215715 |
4674 | qWarning("QObject::connect: invalid null parameter"); | - |
4675 | if (slotObj)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
4676 | slotObj->destroyIfLastRef(); never executed: slotObj->destroyIfLastRef(); | 0 |
4677 | return QMetaObject::Connection(); never executed: return QMetaObject::Connection(); | 0 |
4678 | } | - |
4679 | | - |
4680 | QObject *s = const_cast<QObject *>(sender); | - |
4681 | QObject *r = const_cast<QObject *>(receiver); | - |
4682 | | - |
4683 | QOrderedMutexLocker locker(signalSlotLock(sender), | - |
4684 | signalSlotLock(receiver)); | - |
4685 | | - |
4686 | if (type & Qt::UniqueConnection && slot) {TRUE | evaluated 14 times by 1 test | FALSE | evaluated 215701 times by 177 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
|
TRUE | evaluated 13 times by 1 test | FALSE | evaluated 1 time by 1 test |
| 1-215701 |
4687 | QObjectConnectionListVector *connectionLists = QObjectPrivate::get(s)->connectionLists; | - |
4688 | if (connectionLists && connectionLists->count() > signal_index) {TRUE | evaluated 11 times by 1 test | FALSE | evaluated 2 times by 1 test |
TRUE | evaluated 9 times by 1 test | FALSE | evaluated 2 times by 1 test |
| 2-11 |
4689 | const QObjectPrivate::Connection *c2 = | - |
4690 | (*connectionLists)[signal_index].first; | - |
4691 | | - |
4692 | while (c2) {TRUE | evaluated 12 times by 1 test | FALSE | evaluated 5 times by 1 test |
| 5-12 |
4693 | if (c2->receiver == receiver && c2->isSlotObject && c2->slotObj->compare(slot)) {TRUE | evaluated 6 times by 1 test | FALSE | evaluated 6 times by 1 test |
TRUE | evaluated 6 times by 1 test | FALSE | never evaluated |
TRUE | evaluated 4 times by 1 test | FALSE | evaluated 2 times by 1 test |
| 0-6 |
4694 | slotObj->destroyIfLastRef(); | - |
4695 | return QMetaObject::Connection();executed 4 times by 1 test: return QMetaObject::Connection(); | 4 |
4696 | } | - |
4697 | c2 = c2->nextConnectionList; | - |
4698 | }executed 8 times by 1 test: end of block | 8 |
4699 | }executed 5 times by 1 test: end of block | 5 |
4700 | type = static_cast<Qt::ConnectionType>(type ^ Qt::UniqueConnection); | - |
4701 | }executed 9 times by 1 test: end of block | 9 |
4702 | | - |
4703 | QScopedPointer<QObjectPrivate::Connection> c(new QObjectPrivate::Connection); | - |
4704 | c->sender = s; | - |
4705 | c->signal_index = signal_index; | - |
4706 | c->receiver = r; | - |
4707 | c->slotObj = slotObj; | - |
4708 | c->connectionType = type; | - |
4709 | c->isSlotObject = true; | - |
4710 | if (types) {TRUE | evaluated 864 times by 162 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- ...
| FALSE | evaluated 214847 times by 177 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
|
| 864-214847 |
4711 | c->argumentTypes.store(types); | - |
4712 | c->ownArgumentTypes = false; | - |
4713 | }executed 864 times by 162 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- ...
| 864 |
4714 | | - |
4715 | QObjectPrivate::get(s)->addConnection(signal_index, c.data()); | - |
4716 | QMetaObject::Connection ret(c.take()); | - |
4717 | locker.unlock(); | - |
4718 | | - |
4719 | QMetaMethod method = QMetaObjectPrivate::signal(senderMetaObject, signal_index); | - |
4720 | Q_ASSERT(method.isValid()); | - |
4721 | s->connectNotify(method); | - |
4722 | | - |
4723 | return ret;executed 215711 times by 177 tests: return ret; Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| 215711 |
4724 | } | - |
4725 | | - |
4726 | | - |
4727 | | - |
4728 | | - |
4729 | | - |
4730 | | - |
4731 | | - |
4732 | | - |
4733 | | - |
4734 | bool QObject::disconnect(const QMetaObject::Connection &connection) | - |
4735 | { | - |
4736 | QObjectPrivate::Connection *c = static_cast<QObjectPrivate::Connection *>(connection.d_ptr); | - |
4737 | | - |
4738 | if (!c || !c->receiver)TRUE | evaluated 3 times by 1 test | FALSE | evaluated 12 times by 1 test |
TRUE | evaluated 1 time by 1 test | FALSE | evaluated 11 times by 1 test |
| 1-12 |
4739 | return false;executed 4 times by 1 test: return false; | 4 |
4740 | | - |
4741 | QMutex *senderMutex = signalSlotLock(c->sender); | - |
4742 | QMutex *receiverMutex = signalSlotLock(c->receiver); | - |
4743 | | - |
4744 | { | - |
4745 | QOrderedMutexLocker locker(senderMutex, receiverMutex); | - |
4746 | | - |
4747 | QObjectConnectionListVector *connectionLists = QObjectPrivate::get(c->sender)->connectionLists; | - |
4748 | Q_ASSERT(connectionLists); | - |
4749 | connectionLists->dirty = true; | - |
4750 | | - |
4751 | *c->prev = c->next; | - |
4752 | if (c->next)TRUE | evaluated 1 time by 1 test | FALSE | evaluated 10 times by 1 test |
| 1-10 |
4753 | c->next->prev = c->prev;executed 1 time by 1 test: c->next->prev = c->prev; | 1 |
4754 | c->receiver = 0; | - |
4755 | } | - |
4756 | | - |
4757 | | - |
4758 | if (c->isSlotObject) {TRUE | evaluated 10 times by 1 test | FALSE | evaluated 1 time by 1 test |
| 1-10 |
4759 | c->slotObj->destroyIfLastRef(); | - |
4760 | c->isSlotObject = false; | - |
4761 | }executed 10 times by 1 test: end of block | 10 |
4762 | | - |
4763 | c->sender->disconnectNotify(QMetaObjectPrivate::signal(c->sender->metaObject(), | - |
4764 | c->signal_index)); | - |
4765 | | - |
4766 | const_cast<QMetaObject::Connection &>(connection).d_ptr = 0; | - |
4767 | c->deref(); | - |
4768 | | - |
4769 | return true;executed 11 times by 1 test: return true; | 11 |
4770 | } | - |
4771 | | - |
4772 | | - |
4773 | | - |
4774 | | - |
4775 | | - |
4776 | | - |
4777 | | - |
4778 | | - |
4779 | | - |
4780 | | - |
4781 | | - |
4782 | | - |
4783 | | - |
4784 | | - |
4785 | | - |
4786 | | - |
4787 | | - |
4788 | | - |
4789 | | - |
4790 | | - |
4791 | | - |
4792 | | - |
4793 | | - |
4794 | | - |
4795 | | - |
4796 | | - |
4797 | | - |
4798 | | - |
4799 | | - |
4800 | | - |
4801 | | - |
4802 | | - |
4803 | | - |
4804 | | - |
4805 | | - |
4806 | | - |
4807 | | - |
4808 | | - |
4809 | | - |
4810 | | - |
4811 | | - |
4812 | | - |
4813 | | - |
4814 | | - |
4815 | | - |
4816 | | - |
4817 | | - |
4818 | | - |
4819 | | - |
4820 | | - |
4821 | | - |
4822 | | - |
4823 | | - |
4824 | | - |
4825 | | - |
4826 | | - |
4827 | | - |
4828 | | - |
4829 | | - |
4830 | | - |
4831 | | - |
4832 | bool QObject::disconnectImpl(const QObject *sender, void **signal, const QObject *receiver, void **slot, const QMetaObject *senderMetaObject) | - |
4833 | { | - |
4834 | if (sender == 0 || (receiver == 0 && slot != 0)) {TRUE | never evaluated | FALSE | evaluated 18 times by 4 testsEvaluated by:- tst_QMetaObjectBuilder
- tst_QObject
- tst_QProcess
- tst_QScrollBar
|
TRUE | evaluated 4 times by 2 tests | FALSE | evaluated 14 times by 3 testsEvaluated by:- tst_QMetaObjectBuilder
- tst_QObject
- tst_QScrollBar
|
TRUE | never evaluated | FALSE | evaluated 4 times by 2 tests |
| 0-18 |
4835 | qWarning("QObject::disconnect: Unexpected null parameter"); | - |
4836 | return false; never executed: return false; | 0 |
4837 | } | - |
4838 | | - |
4839 | int signal_index = -1; | - |
4840 | if (signal) {TRUE | evaluated 18 times by 4 testsEvaluated by:- tst_QMetaObjectBuilder
- tst_QObject
- tst_QProcess
- tst_QScrollBar
| FALSE | never evaluated |
| 0-18 |
4841 | void *args[] = { &signal_index, signal }; | - |
4842 | for (; senderMetaObject && signal_index < 0; senderMetaObject = senderMetaObject->superClass()) {TRUE | evaluated 19 times by 4 testsEvaluated by:- tst_QMetaObjectBuilder
- tst_QObject
- tst_QProcess
- tst_QScrollBar
| FALSE | never evaluated |
TRUE | evaluated 19 times by 4 testsEvaluated by:- tst_QMetaObjectBuilder
- tst_QObject
- tst_QProcess
- tst_QScrollBar
| FALSE | never evaluated |
| 0-19 |
4843 | senderMetaObject->static_metacall(QMetaObject::IndexOfMethod, 0, args); | - |
4844 | if (signal_index >= 0 && signal_index < QMetaObjectPrivate::get(senderMetaObject)->signalCount)TRUE | evaluated 18 times by 4 testsEvaluated by:- tst_QMetaObjectBuilder
- tst_QObject
- tst_QProcess
- tst_QScrollBar
| FALSE | evaluated 1 time by 1 test |
TRUE | evaluated 18 times by 4 testsEvaluated by:- tst_QMetaObjectBuilder
- tst_QObject
- tst_QProcess
- tst_QScrollBar
| FALSE | never evaluated |
| 0-18 |
4845 | break;executed 18 times by 4 tests: break; Executed by:- tst_QMetaObjectBuilder
- tst_QObject
- tst_QProcess
- tst_QScrollBar
| 18 |
4846 | }executed 1 time by 1 test: end of block | 1 |
4847 | if (!senderMetaObject) {TRUE | never evaluated | FALSE | evaluated 18 times by 4 testsEvaluated by:- tst_QMetaObjectBuilder
- tst_QObject
- tst_QProcess
- tst_QScrollBar
|
| 0-18 |
4848 | qWarning("QObject::disconnect: signal not found in %s", sender->metaObject()->className()); | - |
4849 | return QMetaObject::Connection(0); never executed: return QMetaObject::Connection(0); | 0 |
4850 | } | - |
4851 | signal_index += QMetaObjectPrivate::signalOffset(senderMetaObject); | - |
4852 | }executed 18 times by 4 tests: end of block Executed by:- tst_QMetaObjectBuilder
- tst_QObject
- tst_QProcess
- tst_QScrollBar
| 18 |
4853 | | - |
4854 | return QMetaObjectPrivate::disconnect(sender, signal_index, senderMetaObject, receiver, -1, slot);executed 18 times by 4 tests: return QMetaObjectPrivate::disconnect(sender, signal_index, senderMetaObject, receiver, -1, slot); Executed by:- tst_QMetaObjectBuilder
- tst_QObject
- tst_QProcess
- tst_QScrollBar
| 18 |
4855 | } | - |
4856 | | - |
4857 | | - |
4858 | | - |
4859 | | - |
4860 | | - |
4861 | | - |
4862 | | - |
4863 | QMetaObject::Connection QObjectPrivate::connect(const QObject *sender, int signal_index, QtPrivate::QSlotObjectBase *slotObj, Qt::ConnectionType type) | - |
4864 | { | - |
4865 | if (!sender) {TRUE | never evaluated | FALSE | evaluated 1 time by 1 test |
| 0-1 |
4866 | qWarning("QObject::connect: invalid null parameter"); | - |
4867 | if (slotObj)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
4868 | slotObj->destroyIfLastRef(); never executed: slotObj->destroyIfLastRef(); | 0 |
4869 | return QMetaObject::Connection(); never executed: return QMetaObject::Connection(); | 0 |
4870 | } | - |
4871 | const QMetaObject *senderMetaObject = sender->metaObject(); | - |
4872 | signal_index = methodIndexToSignalIndex(&senderMetaObject, signal_index); | - |
4873 | | - |
4874 | return QObjectPrivate::connectImpl(sender, signal_index, sender, 0, slotObj, type, 0, senderMetaObject);executed 1 time by 1 test: return QObjectPrivate::connectImpl(sender, signal_index, sender, 0, slotObj, type, 0, senderMetaObject); | 1 |
4875 | } | - |
4876 | | - |
4877 | | - |
4878 | | - |
4879 | | - |
4880 | | - |
4881 | | - |
4882 | | - |
4883 | bool QObjectPrivate::disconnect(const QObject *sender, int signal_index, void **slot) | - |
4884 | { | - |
4885 | const QMetaObject *senderMetaObject = sender->metaObject(); | - |
4886 | signal_index = methodIndexToSignalIndex(&senderMetaObject, signal_index); | - |
4887 | | - |
4888 | return QMetaObjectPrivate::disconnect(sender, signal_index, senderMetaObject, sender, -1, slot);executed 1 time by 1 test: return QMetaObjectPrivate::disconnect(sender, signal_index, senderMetaObject, sender, -1, slot); | 1 |
4889 | } | - |
4890 | | - |
4891 | | - |
4892 | | - |
4893 | | - |
4894 | | - |
4895 | | - |
4896 | | - |
4897 | | - |
4898 | | - |
4899 | | - |
4900 | | - |
4901 | | - |
4902 | | - |
4903 | QMetaObject::Connection::Connection(const QMetaObject::Connection &other) : d_ptr(other.d_ptr) | - |
4904 | { | - |
4905 | if (d_ptr)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
4906 | static_cast<QObjectPrivate::Connection *>(d_ptr)->ref(); never executed: static_cast<QObjectPrivate::Connection *>(d_ptr)->ref(); | 0 |
4907 | } never executed: end of block | 0 |
4908 | | - |
4909 | QMetaObject::Connection& QMetaObject::Connection::operator=(const QMetaObject::Connection& other) | - |
4910 | { | - |
4911 | if (other.d_ptr != d_ptr) {TRUE | evaluated 1 time by 1 test | FALSE | never evaluated |
| 0-1 |
4912 | if (d_ptr)TRUE | never evaluated | FALSE | evaluated 1 time by 1 test |
| 0-1 |
4913 | static_cast<QObjectPrivate::Connection *>(d_ptr)->deref(); never executed: static_cast<QObjectPrivate::Connection *>(d_ptr)->deref(); | 0 |
4914 | d_ptr = other.d_ptr; | - |
4915 | if (other.d_ptr)TRUE | evaluated 1 time by 1 test | FALSE | never evaluated |
| 0-1 |
4916 | static_cast<QObjectPrivate::Connection *>(other.d_ptr)->ref();executed 1 time by 1 test: static_cast<QObjectPrivate::Connection *>(other.d_ptr)->ref(); | 1 |
4917 | }executed 1 time by 1 test: end of block | 1 |
4918 | return *this;executed 1 time by 1 test: return *this; | 1 |
4919 | } | - |
4920 | | - |
4921 | | - |
4922 | | - |
4923 | | - |
4924 | | - |
4925 | QMetaObject::Connection::Connection() : d_ptr(0) {}executed 11 times by 1 test: end of block | 11 |
4926 | | - |
4927 | | - |
4928 | | - |
4929 | | - |
4930 | QMetaObject::Connection::~Connection() | - |
4931 | { | - |
4932 | if (d_ptr)TRUE | evaluated 844350 times by 276 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| FALSE | evaluated 739816 times by 265 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 739816-844350 |
4933 | static_cast<QObjectPrivate::Connection *>(d_ptr)->deref();executed 844350 times by 276 tests: static_cast<QObjectPrivate::Connection *>(d_ptr)->deref(); Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| 844350 |
4934 | }executed 1584166 times by 276 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| 1584166 |
4935 | | - |
4936 | | - |
4937 | bool QMetaObject::Connection::isConnected_helper() const | - |
4938 | { | - |
4939 | Q_ASSERT(d_ptr); | - |
4940 | QObjectPrivate::Connection *c = static_cast<QObjectPrivate::Connection *>(d_ptr); | - |
4941 | | - |
4942 | return c->receiver;executed 108758 times by 117 tests: return c->receiver; Executed by:- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSlider
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDBusServiceWatcher
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDial
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QDoubleValidator
- ...
| 108758 |
4943 | } | - |
4944 | | - |
4945 | | - |
4946 | | - |
4947 | | - |
4948 | | - |
4949 | | - |
4950 | | - |
4951 | | - |
4952 | | - |
4953 | | - |
4954 | | - |
4955 | | - |
4956 | QT_END_NAMESPACE | - |
4957 | | - |
4958 | #include "moc_qobject.cpp" | - |
| | |