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 | | - |
36 | | - |
37 | | - |
38 | | - |
39 | | - |
40 | | - |
41 | #include "qmetaobject.h" | - |
42 | #include "qmetatype.h" | - |
43 | #include "qobject.h" | - |
44 | #include "qmetaobject_p.h" | - |
45 | | - |
46 | #include <qcoreapplication.h> | - |
47 | #include <qcoreevent.h> | - |
48 | #include <qdatastream.h> | - |
49 | #include <qstringlist.h> | - |
50 | #include <qthread.h> | - |
51 | #include <qvariant.h> | - |
52 | #include <qdebug.h> | - |
53 | #include <qsemaphore.h> | - |
54 | | - |
55 | #include "private/qobject_p.h" | - |
56 | #include "private/qmetaobject_p.h" | - |
57 | | - |
58 | | - |
59 | #include "private/qmetaobject_moc_p.h" | - |
60 | | - |
61 | #include <ctype.h> | - |
62 | | - |
63 | QT_BEGIN_NAMESPACE | - |
64 | | - |
65 | | - |
66 | | - |
67 | | - |
68 | | - |
69 | | - |
70 | | - |
71 | | - |
72 | | - |
73 | | - |
74 | | - |
75 | | - |
76 | | - |
77 | | - |
78 | | - |
79 | | - |
80 | | - |
81 | | - |
82 | | - |
83 | | - |
84 | | - |
85 | | - |
86 | | - |
87 | | - |
88 | | - |
89 | | - |
90 | | - |
91 | | - |
92 | | - |
93 | | - |
94 | | - |
95 | | - |
96 | | - |
97 | | - |
98 | | - |
99 | | - |
100 | | - |
101 | | - |
102 | | - |
103 | | - |
104 | | - |
105 | | - |
106 | | - |
107 | | - |
108 | | - |
109 | | - |
110 | | - |
111 | | - |
112 | | - |
113 | | - |
114 | | - |
115 | | - |
116 | | - |
117 | | - |
118 | | - |
119 | | - |
120 | | - |
121 | | - |
122 | | - |
123 | | - |
124 | | - |
125 | | - |
126 | | - |
127 | | - |
128 | | - |
129 | | - |
130 | | - |
131 | | - |
132 | | - |
133 | | - |
134 | | - |
135 | | - |
136 | | - |
137 | | - |
138 | | - |
139 | | - |
140 | | - |
141 | | - |
142 | | - |
143 | | - |
144 | | - |
145 | static inline const QMetaObjectPrivate *priv(const uint* data) | - |
146 | {executed 134356086 times by 1014 tests: return reinterpret_cast<const QMetaObjectPrivate*>(data); 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
- ...
return reinterpret_cast<const QMetaObjectPrivate*>(data); }executed 134356086 times by 1014 tests: return reinterpret_cast<const QMetaObjectPrivate*>(data); 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
- ...
| 134356086 |
147 | | - |
148 | static inline const QByteArray stringData(const QMetaObject *mo, int index) | - |
149 | { | - |
150 | Q_ASSERT(priv(mo->d.data)->revision >= 7); | - |
151 | const QByteArrayDataPtr data = { const_cast<QByteArrayData*>(&mo->d.stringdata[index]) }; | - |
152 | Q_ASSERT(data.ptr->ref.isStatic()); | - |
153 | Q_ASSERT(data.ptr->alloc == 0); | - |
154 | Q_ASSERT(data.ptr->capacityReserved == 0); | - |
155 | Q_ASSERT(data.ptr->size >= 0); | - |
156 | return data;executed 13199584 times by 539 tests: return data; 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
- ...
| 13199584 |
157 | } | - |
158 | | - |
159 | static inline const char *rawStringData(const QMetaObject *mo, int index) | - |
160 | { | - |
161 | return stringData(mo, index).data();executed 5072121 times by 517 tests: return stringData(mo, index).data(); 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
- ...
| 5072121 |
162 | } | - |
163 | | - |
164 | static inline QByteArray typeNameFromTypeInfo(const QMetaObject *mo, uint typeInfo) | - |
165 | { | - |
166 | if (typeInfo & IsUnresolvedType) {TRUE | evaluated 150338 times by 218 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_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 29950 times by 206 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
- ...
|
| 29950-150338 |
167 | return stringData(mo, typeInfo & TypeNameIndexMask);executed 150338 times by 218 tests: return stringData(mo, typeInfo & TypeNameIndexMask); Executed 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_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| 150338 |
168 | } else { | - |
169 | | - |
170 | const char *t = QMetaType::typeName(typeInfo); | - |
171 | return QByteArray::fromRawData(t, qstrlen(t));executed 29950 times by 206 tests: return QByteArray::fromRawData(t, qstrlen(t)); 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
- ...
| 29950 |
172 | } | - |
173 | } | - |
174 | | - |
175 | static inline const char *rawTypeNameFromTypeInfo(const QMetaObject *mo, uint typeInfo) | - |
176 | { | - |
177 | return typeNameFromTypeInfo(mo, typeInfo).constData();executed 1096 times by 23 tests: return typeNameFromTypeInfo(mo, typeInfo).constData(); Executed by:- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
- tst_QMetaType
- tst_QObject
- tst_QSyntaxHighlighter
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
| 1096 |
178 | } | - |
179 | | - |
180 | static inline int typeFromTypeInfo(const QMetaObject *mo, uint typeInfo) | - |
181 | { | - |
182 | if (!(typeInfo & IsUnresolvedType))TRUE | evaluated 1337052 times by 529 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 156258 times by 141 testsEvaluated by:- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusMarshall
- tst_QDBusMetaObject
- tst_QDBusPendingCall
- ...
|
| 156258-1337052 |
183 | return typeInfo;executed 1337052 times by 529 tests: return typeInfo; 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
- ...
| 1337052 |
184 | return QMetaType::type(stringData(mo, typeInfo & TypeNameIndexMask));executed 156258 times by 141 tests: return QMetaType::type(stringData(mo, typeInfo & TypeNameIndexMask)); Executed by:- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusMarshall
- tst_QDBusMetaObject
- tst_QDBusPendingCall
- ...
| 156258 |
185 | } | - |
186 | | - |
187 | class QMetaMethodPrivate : public QMetaMethod | - |
188 | { | - |
189 | public: | - |
190 | static const QMetaMethodPrivate *get(const QMetaMethod *q) | - |
191 | { return static_cast<const QMetaMethodPrivate *>(q); }executed 799098 times by 750 tests: return static_cast<const QMetaMethodPrivate *>(q); 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
- ...
| 799098 |
192 | | - |
193 | inline QByteArray signature() const; | - |
194 | inline QByteArray name() const; | - |
195 | inline int typesDataIndex() const; | - |
196 | inline const char *rawReturnTypeName() const; | - |
197 | inline int returnType() const; | - |
198 | inline int parameterCount() const; | - |
199 | inline int parametersDataIndex() const; | - |
200 | inline uint parameterTypeInfo(int index) const; | - |
201 | inline int parameterType(int index) const; | - |
202 | inline void getParameterTypes(int *types) const; | - |
203 | inline QList<QByteArray> parameterTypes() const; | - |
204 | inline QList<QByteArray> parameterNames() const; | - |
205 | inline QByteArray tag() const; | - |
206 | inline int ownMethodIndex() const; | - |
207 | | - |
208 | private: | - |
209 | QMetaMethodPrivate(); | - |
210 | }; | - |
211 | | - |
212 | | - |
213 | | - |
214 | | - |
215 | | - |
216 | | - |
217 | | - |
218 | | - |
219 | | - |
220 | | - |
221 | | - |
222 | | - |
223 | | - |
224 | | - |
225 | QObject *QMetaObject::newInstance(QGenericArgument val0, | - |
226 | QGenericArgument val1, | - |
227 | QGenericArgument val2, | - |
228 | QGenericArgument val3, | - |
229 | QGenericArgument val4, | - |
230 | QGenericArgument val5, | - |
231 | QGenericArgument val6, | - |
232 | QGenericArgument val7, | - |
233 | QGenericArgument val8, | - |
234 | QGenericArgument val9) const | - |
235 | { | - |
236 | QByteArray constructorName = className(); | - |
237 | { | - |
238 | int idx = constructorName.lastIndexOf(':'); | - |
239 | if (idx != -1)TRUE | evaluated 1 time by 1 test | FALSE | evaluated 4 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
|
| 1-4 |
240 | constructorName.remove(0, idx+1); executed 1 time by 1 test: constructorName.remove(0, idx+1); | 1 |
241 | } | - |
242 | QVarLengthArray<char, 512> sig; | - |
243 | sig.append(constructorName.constData(), constructorName.length()); | - |
244 | sig.append('('); | - |
245 | | - |
246 | enum { MaximumParamCount = 10 }; | - |
247 | const char *typeNames[] = {val0.name(), val1.name(), val2.name(), val3.name(), val4.name(), | - |
248 | val5.name(), val6.name(), val7.name(), val8.name(), val9.name()}; | - |
249 | | - |
250 | int paramCount; | - |
251 | for (paramCount = 0; paramCount < MaximumParamCount; ++paramCount) {TRUE | evaluated 8 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
| FALSE | never evaluated |
| 0-8 |
252 | int len = qstrlen(typeNames[paramCount]); | - |
253 | if (len <= 0)TRUE | evaluated 5 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
| FALSE | evaluated 3 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
|
| 3-5 |
254 | break;executed 5 times by 2 tests: break; Executed by:- tst_QMetaObject
- tst_QMetaObjectBuilder
| 5 |
255 | sig.append(typeNames[paramCount], len); | - |
256 | sig.append(','); | - |
257 | }executed 3 times by 2 tests: end of block Executed by:- tst_QMetaObject
- tst_QMetaObjectBuilder
| 3 |
258 | if (paramCount == 0)TRUE | evaluated 2 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
| FALSE | evaluated 3 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
|
| 2-3 |
259 | sig.append(')'); executed 2 times by 2 tests: sig.append(')'); Executed by:- tst_QMetaObject
- tst_QMetaObjectBuilder
| 2 |
260 | else | - |
261 | sig[sig.size() - 1] = ')';executed 3 times by 2 tests: sig[sig.size() - 1] = ')'; Executed by:- tst_QMetaObject
- tst_QMetaObjectBuilder
| 3 |
262 | sig.append('\0'); | - |
263 | | - |
264 | int idx = indexOfConstructor(sig.constData()); | - |
265 | if (idx < 0) {TRUE | evaluated 1 time by 1 test | FALSE | evaluated 4 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
|
| 1-4 |
266 | QByteArray norm = QMetaObject::normalizedSignature(sig.constData()); | - |
267 | idx = indexOfConstructor(norm.constData()); | - |
268 | }executed 1 time by 1 test: end of block | 1 |
269 | if (idx < 0)TRUE | evaluated 1 time by 1 test | FALSE | evaluated 4 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
|
| 1-4 |
270 | return 0;executed 1 time by 1 test: return 0; | 1 |
271 | | - |
272 | QObject *returnValue = 0; | - |
273 | void *param[] = {&returnValue, val0.data(), val1.data(), val2.data(), val3.data(), val4.data(), | - |
274 | val5.data(), val6.data(), val7.data(), val8.data(), val9.data()}; | - |
275 | | - |
276 | if (static_metacall(CreateInstance, idx, param) >= 0)TRUE | never evaluated | FALSE | evaluated 4 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
|
| 0-4 |
277 | return 0; never executed: return 0; | 0 |
278 | return returnValue;executed 4 times by 2 tests: return returnValue; Executed by:- tst_QMetaObject
- tst_QMetaObjectBuilder
| 4 |
279 | } | - |
280 | | - |
281 | | - |
282 | | - |
283 | | - |
284 | int QMetaObject::static_metacall(Call cl, int idx, void **argv) const | - |
285 | { | - |
286 | Q_ASSERT(priv(d.data)->revision >= 6); | - |
287 | if (!d.static_metacall)TRUE | evaluated 3 times by 1 test | FALSE | evaluated 226865 times by 207 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_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
| 3-226865 |
288 | return 0;executed 3 times by 1 test: return 0; | 3 |
289 | d.static_metacall(0, cl, idx, argv); | - |
290 | return -1;executed 226865 times by 207 tests: return -1; 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_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| 226865 |
291 | } | - |
292 | | - |
293 | | - |
294 | | - |
295 | | - |
296 | int QMetaObject::metacall(QObject *object, Call cl, int idx, void **argv) | - |
297 | { | - |
298 | if (object->d_ptr->metaObject)TRUE | never evaluated | FALSE | evaluated 41273 times by 202 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- 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_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
| 0-41273 |
299 | return object->d_ptr->metaObject->metaCall(object, cl, idx, argv); never executed: return object->d_ptr->metaObject->metaCall(object, cl, idx, argv); | 0 |
300 | else | - |
301 | return object->qt_metacall(cl, idx, argv);executed 41273 times by 202 tests: return object->qt_metacall(cl, idx, argv); Executed by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- 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_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| 41273 |
302 | } | - |
303 | | - |
304 | static inline const char *objectClassName(const QMetaObject *m) | - |
305 | { | - |
306 | return rawStringData(m, priv(m->d.data)->className);executed 855829 times by 515 tests: return rawStringData(m, priv(m->d.data)->className); 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
- ...
| 855829 |
307 | } | - |
308 | | - |
309 | | - |
310 | | - |
311 | | - |
312 | | - |
313 | | - |
314 | const char *QMetaObject::className() const | - |
315 | { | - |
316 | return objectClassName(this); | - |
317 | } | - |
318 | | - |
319 | | - |
320 | | - |
321 | | - |
322 | | - |
323 | | - |
324 | | - |
325 | | - |
326 | | - |
327 | | - |
328 | | - |
329 | | - |
330 | | - |
331 | | - |
332 | | - |
333 | | - |
334 | | - |
335 | | - |
336 | bool QMetaObject::inherits(const QMetaObject *metaObject) const Q_DECL_NOEXCEPT | - |
337 | { | - |
338 | const QMetaObject *m = this; | - |
339 | do { | - |
340 | if (metaObject == m)TRUE | evaluated 10998745 times by 545 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 11516969 times by 264 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- 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_QBrush
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
|
| 10998745-11516969 |
341 | return true;executed 10998745 times by 545 tests: return true; 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
- ...
| 10998745 |
342 | } while ((m = m->d.superdata));executed 11516969 times by 264 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- 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_QBrush
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
TRUE | evaluated 10480169 times by 264 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- 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_QBrush
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| FALSE | evaluated 1036800 times by 215 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
|
| 1036800-11516969 |
343 | return false;executed 1036800 times by 215 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_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
| 1036800 |
344 | } | - |
345 | | - |
346 | | - |
347 | | - |
348 | | - |
349 | | - |
350 | | - |
351 | | - |
352 | QObject *QMetaObject::cast(QObject *obj) const | - |
353 | { | - |
354 | | - |
355 | return const_cast<QObject*>(cast(const_cast<const QObject*>(obj)));executed 12063925 times by 655 tests: return const_cast<QObject*>(cast(const_cast<const QObject*>(obj))); 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
- ...
| 12063925 |
356 | } | - |
357 | | - |
358 | | - |
359 | | - |
360 | | - |
361 | | - |
362 | | - |
363 | | - |
364 | const QObject *QMetaObject::cast(const QObject *obj) const | - |
365 | { | - |
366 | return (obj && obj->metaObject()->inherits(this)) ? obj : nullptr;executed 12338177 times by 655 tests: return (obj && obj->metaObject()->inherits(this)) ? obj : nullptr; 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
- ...
| 12338177 |
367 | } | - |
368 | | - |
369 | #ifndef QT_NO_TRANSLATION | - |
370 | | - |
371 | | - |
372 | | - |
373 | QString QMetaObject::tr(const char *s, const char *c, int n) const | - |
374 | { | - |
375 | return QCoreApplication::translate(objectClassName(this), s, c, n); | - |
376 | } | - |
377 | #endif // QT_NO_TRANSLATION | - |
378 | | - |
379 | | - |
380 | | - |
381 | | - |
382 | | - |
383 | | - |
384 | | - |
385 | | - |
386 | | - |
387 | | - |
388 | | - |
389 | int QMetaObject::methodOffset() const | - |
390 | { | - |
391 | int offset = 0; | - |
392 | const QMetaObject *m = d.superdata; | - |
393 | while (m) {TRUE | evaluated 31248541 times by 550 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 11645589 times by 553 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
- ...
|
| 11645589-31248541 |
394 | offset += priv(m->d.data)->methodCount; | - |
395 | m = m->d.superdata; | - |
396 | }executed 31248541 times by 550 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
- ...
| 31248541 |
397 | return offset;executed 11645589 times by 553 tests: return offset; 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
- ...
| 11645589 |
398 | } | - |
399 | | - |
400 | | - |
401 | | - |
402 | | - |
403 | | - |
404 | | - |
405 | | - |
406 | | - |
407 | | - |
408 | | - |
409 | | - |
410 | | - |
411 | int QMetaObject::enumeratorOffset() const | - |
412 | { | - |
413 | int offset = 0; | - |
414 | const QMetaObject *m = d.superdata; | - |
415 | while (m) {TRUE | evaluated 48131 times by 86 testsEvaluated by:- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QComboBox
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDoubleValidator
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFormLayout
- tst_QFrame
- tst_QGraphicsProxyWidget
- tst_QGraphicsView
- tst_QHeaderView
- ...
| FALSE | evaluated 142454 times by 144 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QBrush
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QCollator
- tst_QComboBox
- tst_QCompleter
- tst_QCssParser
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataStream
- tst_QDataWidgetMapper
- ...
|
| 48131-142454 |
416 | offset += priv(m->d.data)->enumeratorCount; | - |
417 | m = m->d.superdata; | - |
418 | }executed 48131 times by 86 tests: end of block Executed by:- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QComboBox
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDoubleValidator
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFormLayout
- tst_QFrame
- tst_QGraphicsProxyWidget
- tst_QGraphicsView
- tst_QHeaderView
- ...
| 48131 |
419 | return offset;executed 142454 times by 144 tests: return offset; Executed by:- tst_Gestures
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QBrush
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QCollator
- tst_QComboBox
- tst_QCompleter
- tst_QCssParser
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataStream
- tst_QDataWidgetMapper
- ...
| 142454 |
420 | } | - |
421 | | - |
422 | | - |
423 | | - |
424 | | - |
425 | | - |
426 | | - |
427 | | - |
428 | | - |
429 | | - |
430 | | - |
431 | | - |
432 | int QMetaObject::propertyOffset() const | - |
433 | { | - |
434 | int offset = 0; | - |
435 | const QMetaObject *m = d.superdata; | - |
436 | while (m) {TRUE | evaluated 183326 times by 156 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
- ...
| FALSE | evaluated 101723 times by 156 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
- ...
|
| 101723-183326 |
437 | offset += priv(m->d.data)->propertyCount; | - |
438 | m = m->d.superdata; | - |
439 | }executed 183326 times by 156 tests: end of block 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
- ...
| 183326 |
440 | return offset;executed 101723 times by 156 tests: return offset; 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
- ...
| 101723 |
441 | } | - |
442 | | - |
443 | | - |
444 | | - |
445 | | - |
446 | | - |
447 | | - |
448 | | - |
449 | | - |
450 | | - |
451 | | - |
452 | | - |
453 | int QMetaObject::classInfoOffset() const | - |
454 | { | - |
455 | int offset = 0; | - |
456 | const QMetaObject *m = d.superdata; | - |
457 | while (m) {TRUE | evaluated 9796 times by 16 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuscpp2xml
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
| FALSE | evaluated 7001 times by 16 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuscpp2xml
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
|
| 7001-9796 |
458 | offset += priv(m->d.data)->classInfoCount; | - |
459 | m = m->d.superdata; | - |
460 | }executed 9796 times by 16 tests: end of block Executed by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuscpp2xml
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
| 9796 |
461 | return offset;executed 7001 times by 16 tests: return offset; Executed by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuscpp2xml
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
| 7001 |
462 | } | - |
463 | | - |
464 | | - |
465 | | - |
466 | | - |
467 | | - |
468 | | - |
469 | | - |
470 | | - |
471 | int QMetaObject::constructorCount() const | - |
472 | { | - |
473 | Q_ASSERT(priv(d.data)->revision >= 2); | - |
474 | return priv(d.data)->constructorCount;executed 40 times by 2 tests: return priv(d.data)->constructorCount; Executed by:- tst_QMetaMethod
- tst_QMetaObjectBuilder
| 40 |
475 | } | - |
476 | | - |
477 | | - |
478 | | - |
479 | | - |
480 | | - |
481 | | - |
482 | | - |
483 | | - |
484 | | - |
485 | | - |
486 | | - |
487 | | - |
488 | | - |
489 | int QMetaObject::methodCount() const | - |
490 | { | - |
491 | int n = priv(d.data)->methodCount; | - |
492 | const QMetaObject *m = d.superdata; | - |
493 | while (m) {TRUE | evaluated 283140 times by 515 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 373366 times by 518 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
- ...
|
| 283140-373366 |
494 | n += priv(m->d.data)->methodCount; | - |
495 | m = m->d.superdata; | - |
496 | }executed 283140 times by 515 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
- ...
| 283140 |
497 | return n;executed 373366 times by 518 tests: return n; 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
- ...
| 373366 |
498 | } | - |
499 | | - |
500 | | - |
501 | | - |
502 | | - |
503 | | - |
504 | | - |
505 | int QMetaObject::enumeratorCount() const | - |
506 | { | - |
507 | int n = priv(d.data)->enumeratorCount; | - |
508 | const QMetaObject *m = d.superdata; | - |
509 | while (m) {TRUE | evaluated 140 times by 2 testsEvaluated by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
| FALSE | evaluated 87 times by 2 testsEvaluated by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
|
| 87-140 |
510 | n += priv(m->d.data)->enumeratorCount; | - |
511 | m = m->d.superdata; | - |
512 | }executed 140 times by 2 tests: end of block Executed by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
| 140 |
513 | return n;executed 87 times by 2 tests: return n; Executed by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
| 87 |
514 | } | - |
515 | | - |
516 | | - |
517 | | - |
518 | | - |
519 | | - |
520 | | - |
521 | | - |
522 | | - |
523 | | - |
524 | | - |
525 | | - |
526 | | - |
527 | int QMetaObject::propertyCount() const | - |
528 | { | - |
529 | int n = priv(d.data)->propertyCount; | - |
530 | const QMetaObject *m = d.superdata; | - |
531 | while (m) {TRUE | evaluated 1914 times by 22 testsEvaluated by:- tst_QAbstractItemView
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QDataWidgetMapper
- tst_QItemDelegate
- tst_QItemEditorFactory
- tst_QItemView
- tst_QListWidget
- tst_QMetaObjectBuilder
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
- tst_qdbusabstractadaptor - unknown status
- tst_qdbuscpp2xml
| FALSE | evaluated 1178 times by 23 testsEvaluated by:- tst_QAbstractItemView
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QDataWidgetMapper
- tst_QItemDelegate
- tst_QItemEditorFactory
- tst_QItemView
- tst_QListWidget
- tst_QMetaObjectBuilder
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
- tst_qdbusabstractadaptor - unknown status
- tst_qdbuscpp2xml
|
| 1178-1914 |
532 | n += priv(m->d.data)->propertyCount; | - |
533 | m = m->d.superdata; | - |
534 | }executed 1914 times by 22 tests: end of block Executed by:- tst_QAbstractItemView
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QDataWidgetMapper
- tst_QItemDelegate
- tst_QItemEditorFactory
- tst_QItemView
- tst_QListWidget
- tst_QMetaObjectBuilder
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
- tst_qdbusabstractadaptor - unknown status
- tst_qdbuscpp2xml
| 1914 |
535 | return n;executed 1178 times by 23 tests: return n; Executed by:- tst_QAbstractItemView
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QDataWidgetMapper
- tst_QItemDelegate
- tst_QItemEditorFactory
- tst_QItemView
- tst_QListWidget
- tst_QMetaObjectBuilder
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
- tst_qdbusabstractadaptor - unknown status
- tst_qdbuscpp2xml
| 1178 |
536 | } | - |
537 | | - |
538 | | - |
539 | | - |
540 | | - |
541 | | - |
542 | | - |
543 | int QMetaObject::classInfoCount() const | - |
544 | { | - |
545 | int n = priv(d.data)->classInfoCount; | - |
546 | const QMetaObject *m = d.superdata; | - |
547 | while (m) {TRUE | evaluated 140 times by 2 testsEvaluated by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
| FALSE | evaluated 87 times by 2 testsEvaluated by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
|
| 87-140 |
548 | n += priv(m->d.data)->classInfoCount; | - |
549 | m = m->d.superdata; | - |
550 | }executed 140 times by 2 tests: end of block Executed by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
| 140 |
551 | return n;executed 87 times by 2 tests: return n; Executed by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
| 87 |
552 | } | - |
553 | | - |
554 | | - |
555 | | - |
556 | | - |
557 | static bool methodMatch(const QMetaObject *m, int handle, | - |
558 | const QByteArray &name, int argc, | - |
559 | const QArgumentType *types) | - |
560 | { | - |
561 | Q_ASSERT(priv(m->d.data)->revision >= 7); | - |
562 | if (int(m->d.data[handle + 1]) != argc)TRUE | evaluated 12857242 times by 535 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 7730209 times by 537 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
- ...
|
| 7730209-12857242 |
563 | return false;executed 12857242 times by 535 tests: return false; 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
- ...
| 12857242 |
564 | | - |
565 | if (stringData(m, m->d.data[handle]) != name)TRUE | evaluated 6370834 times by 536 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 1359375 times by 467 testsEvaluated by:- tst_Collections
- 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_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- ...
|
| 1359375-6370834 |
566 | return false;executed 6370834 times by 536 tests: return false; 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
- ...
| 6370834 |
567 | | - |
568 | int paramsIndex = m->d.data[handle + 2] + 1; | - |
569 | for (int i = 0; i < argc; ++i) {TRUE | evaluated 1605652 times by 270 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 1354517 times by 467 testsEvaluated by:- tst_Collections
- 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_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- ...
|
| 1354517-1605652 |
570 | uint typeInfo = m->d.data[paramsIndex + i]; | - |
571 | if (types[i].type()) {TRUE | evaluated 1458150 times by 269 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 147502 times by 172 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_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
|
| 147502-1458150 |
572 | if (types[i].type() != typeFromTypeInfo(m, typeInfo))TRUE | evaluated 1360 times by 28 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QComboBox
- tst_QCompleter
- tst_QDBusInterface
- tst_QDateTimeEdit
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QInputDialog
- tst_QItemDelegate
- tst_QItemEditorFactory
- tst_QLineEdit
- tst_QListWidget
- tst_QMetaMethod
- tst_QObject
- tst_QPrinter
- tst_QSignalMapper
- tst_QSpinBox
- ...
| FALSE | evaluated 1456790 times by 269 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
- ...
|
| 1360-1456790 |
573 | return false;executed 1360 times by 28 tests: return false; Executed by:- tst_QAbstractItemView
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QComboBox
- tst_QCompleter
- tst_QDBusInterface
- tst_QDateTimeEdit
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QInputDialog
- tst_QItemDelegate
- tst_QItemEditorFactory
- tst_QLineEdit
- tst_QListWidget
- tst_QMetaMethod
- tst_QObject
- tst_QPrinter
- tst_QSignalMapper
- tst_QSpinBox
- ...
| 1360 |
574 | } else {executed 1456790 times by 269 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
- ...
| 1456790 |
575 | if (types[i].name() != typeNameFromTypeInfo(m, typeInfo))TRUE | evaluated 3498 times by 25 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_QNetworkReply
- tst_QObject
- tst_QSslSocket
- tst_QSslSocket_onDemandCertificates_member
- tst_QSslSocket_onDemandCertificates_static
- tst_QTcpServer
- tst_QTcpSocket
- tst_QTextDocument
- tst_QUdpSocket
- tst_QXmlInputSource
- tst_QXmlStream
- tst_Spdy
| FALSE | evaluated 144004 times by 172 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_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
|
| 3498-144004 |
576 | return false;executed 3498 times by 25 tests: return false; 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_QNetworkReply
- tst_QObject
- tst_QSslSocket
- tst_QSslSocket_onDemandCertificates_member
- tst_QSslSocket_onDemandCertificates_static
- tst_QTcpServer
- tst_QTcpSocket
- tst_QTextDocument
- tst_QUdpSocket
- tst_QXmlInputSource
- tst_QXmlStream
- tst_Spdy
| 3498 |
577 | }executed 144004 times by 172 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_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| 144004 |
578 | } | - |
579 | | - |
580 | return true;executed 1354517 times by 467 tests: return true; Executed by:- tst_Collections
- 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_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- ...
| 1354517 |
581 | } | - |
582 | | - |
583 | | - |
584 | | - |
585 | | - |
586 | | - |
587 | | - |
588 | | - |
589 | template<int MethodType> | - |
590 | static inline int indexOfMethodRelative(const QMetaObject **baseObject, | - |
591 | const QByteArray &name, int argc, | - |
592 | const QArgumentType *types) | - |
593 | { | - |
594 | for (const QMetaObject *m = *baseObject; m; m = m->d.superdata) {TRUE | evaluated 3057119 times by 537 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 631939 times by 515 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
- ...
|
| 631939-3057119 |
595 | Q_ASSERT(priv(m->d.data)->revision >= 7); | - |
596 | int i = (MethodType == MethodSignal)TRUE | evaluated 1283344 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_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| FALSE | evaluated 1773775 times by 537 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
- ...
|
| 1283344-1773775 |
597 | ? (priv(m->d.data)->signalCount - 1) : (priv(m->d.data)->methodCount - 1); | - |
598 | const int end = (MethodType == MethodSlot) | - |
599 | ? (priv(m->d.data)->signalCount) : 0; | - |
600 | | - |
601 | for (; i >= end; --i) {TRUE | evaluated 20587141 times by 537 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 1702616 times by 516 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
- ...
|
| 1702616-20587141 |
602 | int handle = priv(m->d.data)->methodData + 5*i; | - |
603 | if (methodMatch(m, handle, name, argc, types)) {TRUE | evaluated 1354503 times by 467 testsEvaluated by:- tst_Collections
- 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_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- ...
| FALSE | evaluated 19232897 times by 536 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
- ...
|
| 1354503-19232897 |
604 | *baseObject = m; | - |
605 | return i;executed 1354503 times by 467 tests: return i; Executed by:- tst_Collections
- 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_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- ...
| 1354503 |
606 | } | - |
607 | }executed 19232848 times by 536 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
- ...
| 19232848 |
608 | }executed 1702616 times by 516 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
- ...
| 1702616 |
609 | return -1;executed 631939 times by 515 tests: return -1; 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
- ...
| 631939 |
610 | } | - |
611 | | - |
612 | | - |
613 | | - |
614 | | - |
615 | | - |
616 | | - |
617 | | - |
618 | | - |
619 | | - |
620 | | - |
621 | | - |
622 | | - |
623 | int QMetaObject::indexOfConstructor(const char *constructor) const | - |
624 | { | - |
625 | Q_ASSERT(priv(d.data)->revision >= 7); | - |
626 | QArgumentTypeArray types; | - |
627 | QByteArray name = QMetaObjectPrivate::decodeMethodSignature(constructor, types); | - |
628 | return QMetaObjectPrivate::indexOfConstructor(this, name, types.size(), types.constData());executed 16 times by 4 tests: return QMetaObjectPrivate::indexOfConstructor(this, name, types.size(), types.constData()); Executed by:- tst_QMetaMethod
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QObject
| 16 |
629 | } | - |
630 | | - |
631 | | - |
632 | | - |
633 | | - |
634 | | - |
635 | | - |
636 | | - |
637 | | - |
638 | | - |
639 | int QMetaObject::indexOfMethod(const char *method) const | - |
640 | { | - |
641 | const QMetaObject *m = this; | - |
642 | int i; | - |
643 | Q_ASSERT(priv(m->d.data)->revision >= 7); | - |
644 | QArgumentTypeArray types; | - |
645 | QByteArray name = QMetaObjectPrivate::decodeMethodSignature(method, types); | - |
646 | i = indexOfMethodRelative<0>(&m, name, types.size(), types.constData()); | - |
647 | if (i >= 0)TRUE | evaluated 138552 times by 452 testsEvaluated by:- tst_Collections
- 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_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- ...
| FALSE | evaluated 14198 times by 507 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
- ...
|
| 14198-138552 |
648 | i += m->methodOffset();executed 138552 times by 452 tests: i += m->methodOffset(); Executed by:- tst_Collections
- 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_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- ...
| 138552 |
649 | return i;executed 152750 times by 534 tests: return i; 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
- ...
| 152750 |
650 | } | - |
651 | | - |
652 | | - |
653 | | - |
654 | static void argumentTypesFromString(const char *str, const char *end, | - |
655 | QArgumentTypeArray &types) | - |
656 | { | - |
657 | Q_ASSERT(str <= end); | - |
658 | while (str != end) {TRUE | evaluated 1611862 times by 270 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 1371930 times by 537 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
- ...
|
| 1371930-1611862 |
659 | if (!types.isEmpty())TRUE | evaluated 756902 times by 185 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_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- ...
| FALSE | evaluated 854960 times by 270 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
- ...
|
| 756902-854960 |
660 | ++str; executed 756902 times by 185 tests: ++str; Executed 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_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- ...
| 756902 |
661 | const char *begin = str; | - |
662 | int level = 0; | - |
663 | while (str != end && (level > 0 || *str != ',')) {TRUE | evaluated 13895634 times by 270 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 854960 times by 270 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
- ...
|
TRUE | evaluated 766212 times by 102 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDirModel
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- ...
| FALSE | evaluated 13129422 times by 270 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
- ...
|
TRUE | evaluated 12372520 times by 270 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 756902 times by 185 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_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- ...
|
| 756902-13895634 |
664 | if (*str == '<')TRUE | evaluated 54750 times by 102 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDirModel
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- ...
| FALSE | evaluated 13081459 times by 270 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
- ...
|
| 54750-13081459 |
665 | ++level;executed 54750 times by 102 tests: ++level; Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDirModel
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- ...
| 54750 |
666 | else if (*str == '>')TRUE | evaluated 54750 times by 102 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDirModel
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- ...
| FALSE | evaluated 13029232 times by 270 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
- ...
|
| 54750-13029232 |
667 | --level;executed 54750 times by 102 tests: --level; Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDirModel
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- ...
| 54750 |
668 | ++str; | - |
669 | }executed 13136202 times by 270 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
- ...
| 13136202 |
670 | types += QArgumentType(QByteArray(begin, str - begin)); | - |
671 | }executed 1611862 times by 270 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
- ...
| 1611862 |
672 | }executed 1371930 times by 537 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
- ...
| 1371930 |
673 | | - |
674 | | - |
675 | | - |
676 | QByteArray QMetaObjectPrivate::decodeMethodSignature( | - |
677 | const char *signature, QArgumentTypeArray &types) | - |
678 | { | - |
679 | Q_ASSERT(signature != 0); | - |
680 | const char *lparens = strchr(signature, '('); | - |
681 | if (!lparens)TRUE | never evaluated | FALSE | evaluated 1371930 times by 537 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-1371930 |
682 | return QByteArray(); never executed: return QByteArray(); | 0 |
683 | const char *rparens = strrchr(lparens + 1, ')'); | - |
684 | if (!rparens || *(rparens+1))TRUE | never evaluated | FALSE | evaluated 1371238 times by 537 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 | never evaluated | FALSE | evaluated 1371930 times by 537 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-1371930 |
685 | return QByteArray(); never executed: return QByteArray(); | 0 |
686 | int nameLength = lparens - signature; | - |
687 | argumentTypesFromString(lparens + 1, rparens, types); | - |
688 | return QByteArray::fromRawData(signature, nameLength);executed 1371930 times by 537 tests: return QByteArray::fromRawData(signature, nameLength); 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
- ...
| 1371930 |
689 | } | - |
690 | | - |
691 | | - |
692 | | - |
693 | | - |
694 | | - |
695 | | - |
696 | | - |
697 | | - |
698 | | - |
699 | | - |
700 | | - |
701 | | - |
702 | int QMetaObject::indexOfSignal(const char *signal) const | - |
703 | { | - |
704 | const QMetaObject *m = this; | - |
705 | int i; | - |
706 | Q_ASSERT(priv(m->d.data)->revision >= 7); | - |
707 | QArgumentTypeArray types; | - |
708 | QByteArray name = QMetaObjectPrivate::decodeMethodSignature(signal, types); | - |
709 | i = QMetaObjectPrivate::indexOfSignalRelative(&m, name, types.size(), types.constData()); | - |
710 | if (i >= 0)TRUE | evaluated 109842 times by 106 testsEvaluated by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDial
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QDoubleSpinBox
- ...
| FALSE | evaluated 276 times by 5 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QMetaMethod
- tst_QMetaObject
- tst_QStateMachine
- tst_qdbusabstractadaptor - unknown status
|
| 276-109842 |
711 | i += m->methodOffset();executed 109842 times by 106 tests: i += m->methodOffset(); Executed by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDial
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QDoubleSpinBox
- ...
| 109842 |
712 | return i;executed 110118 times by 108 tests: return i; Executed by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDial
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDockWidget
- ...
| 110118 |
713 | } | - |
714 | | - |
715 | | - |
716 | | - |
717 | | - |
718 | | - |
719 | | - |
720 | | - |
721 | int QMetaObjectPrivate::indexOfSignalRelative(const QMetaObject **baseObject, | - |
722 | const QByteArray &name, int argc, | - |
723 | const QArgumentType *types) | - |
724 | { | - |
725 | int i = indexOfMethodRelative<MethodSignal>(baseObject, name, argc, types); | - |
726 | #ifndef QT_NO_DEBUG | - |
727 | const QMetaObject *m = *baseObject; | - |
728 | if (i >= 0 && m && m->d.superdata) {TRUE | evaluated 685810 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_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| FALSE | evaluated 27811 times by 116 testsEvaluated by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- 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_QFileDialog2
- ...
|
TRUE | evaluated 685810 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_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| FALSE | never evaluated |
TRUE | evaluated 561486 times by 257 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 124324 times by 174 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- 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_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
|
| 0-685810 |
729 | int conflict = indexOfMethod(m->d.superdata, name, argc, types); | - |
730 | if (conflict >= 0) {TRUE | evaluated 4 times by 1 test | FALSE | evaluated 561482 times by 257 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
- ...
|
| 4-561482 |
731 | QMetaMethod conflictMethod = m->d.superdata->method(conflict); | - |
732 | qWarning("QMetaObject::indexOfSignal: signal %s from %s redefined in %s", | - |
733 | conflictMethod.methodSignature().constData(), | - |
734 | objectClassName(m->d.superdata), objectClassName(m)); | - |
735 | }executed 4 times by 1 test: end of block | 4 |
736 | }executed 561486 times by 257 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
- ...
| 561486 |
737 | #endif | - |
738 | return i;executed 713264 times by 264 tests: return i; 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
- ...
| 713264 |
739 | } | - |
740 | | - |
741 | | - |
742 | | - |
743 | | - |
744 | | - |
745 | | - |
746 | | - |
747 | | - |
748 | | - |
749 | int QMetaObject::indexOfSlot(const char *slot) const | - |
750 | { | - |
751 | const QMetaObject *m = this; | - |
752 | int i; | - |
753 | Q_ASSERT(priv(m->d.data)->revision >= 7); | - |
754 | QArgumentTypeArray types; | - |
755 | QByteArray name = QMetaObjectPrivate::decodeMethodSignature(slot, types); | - |
756 | i = QMetaObjectPrivate::indexOfSlotRelative(&m, name, types.size(), types.constData()); | - |
757 | if (i >= 0)TRUE | evaluated 4956 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
- ...
| FALSE | evaluated 4 times by 1 test |
| 4-4956 |
758 | i += m->methodOffset();executed 4956 times by 161 tests: i += m->methodOffset(); 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
- ...
| 4956 |
759 | return i;executed 4960 times by 161 tests: return 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_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- ...
| 4960 |
760 | } | - |
761 | | - |
762 | | - |
763 | int QMetaObjectPrivate::indexOfSlotRelative(const QMetaObject **m, | - |
764 | const QByteArray &name, int argc, | - |
765 | const QArgumentType *types) | - |
766 | { | - |
767 | return indexOfMethodRelative<MethodSlot>(m, name, argc, types);executed 504467 times by 260 tests: return indexOfMethodRelative<MethodSlot>(m, name, argc, types); 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
- ...
| 504467 |
768 | } | - |
769 | | - |
770 | int QMetaObjectPrivate::indexOfSignal(const QMetaObject *m, const QByteArray &name, | - |
771 | int argc, const QArgumentType *types) | - |
772 | { | - |
773 | int i = indexOfSignalRelative(&m, name, argc, types); | - |
774 | if (i >= 0)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
775 | i += m->methodOffset(); never executed: i += m->methodOffset(); | 0 |
776 | return i; never executed: return i; | 0 |
777 | } | - |
778 | | - |
779 | int QMetaObjectPrivate::indexOfSlot(const QMetaObject *m, const QByteArray &name, | - |
780 | int argc, const QArgumentType *types) | - |
781 | { | - |
782 | int i = indexOfSlotRelative(&m, name, argc, types); | - |
783 | if (i >= 0)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
784 | i += m->methodOffset(); never executed: i += m->methodOffset(); | 0 |
785 | return i; never executed: return i; | 0 |
786 | } | - |
787 | | - |
788 | int QMetaObjectPrivate::indexOfMethod(const QMetaObject *m, const QByteArray &name, | - |
789 | int argc, const QArgumentType *types) | - |
790 | { | - |
791 | int i = indexOfMethodRelative<0>(&m, name, argc, types); | - |
792 | if (i >= 0)TRUE | evaluated 27346 times by 111 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 588258 times by 257 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
- ...
|
| 27346-588258 |
793 | i += m->methodOffset();executed 27346 times by 111 tests: i += m->methodOffset(); 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
- ...
| 27346 |
794 | return i;executed 615604 times by 257 tests: return i; 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
- ...
| 615604 |
795 | } | - |
796 | | - |
797 | int QMetaObjectPrivate::indexOfConstructor(const QMetaObject *m, const QByteArray &name, | - |
798 | int argc, const QArgumentType *types) | - |
799 | { | - |
800 | for (int i = priv(m->d.data)->constructorCount-1; i >= 0; --i) {TRUE | evaluated 51 times by 4 testsEvaluated by:- tst_QMetaMethod
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QObject
| FALSE | evaluated 2 times by 1 test |
| 2-51 |
801 | int handle = priv(m->d.data)->constructorData + 5*i; | - |
802 | if (methodMatch(m, handle, name, argc, types))TRUE | evaluated 14 times by 4 testsEvaluated by:- tst_QMetaMethod
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QObject
| FALSE | evaluated 37 times by 3 testsEvaluated by:- tst_QMetaMethod
- tst_QMetaObject
- tst_QMetaObjectBuilder
|
| 14-37 |
803 | return i;executed 14 times by 4 tests: return i; Executed by:- tst_QMetaMethod
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QObject
| 14 |
804 | }executed 37 times by 3 tests: end of block Executed by:- tst_QMetaMethod
- tst_QMetaObject
- tst_QMetaObjectBuilder
| 37 |
805 | return -1;executed 2 times by 1 test: return -1; | 2 |
806 | } | - |
807 | | - |
808 | | - |
809 | | - |
810 | | - |
811 | | - |
812 | | - |
813 | | - |
814 | | - |
815 | | - |
816 | | - |
817 | | - |
818 | int QMetaObjectPrivate::signalOffset(const QMetaObject *m) | - |
819 | { | - |
820 | Q_ASSERT(m != 0); | - |
821 | int offset = 0; | - |
822 | for (m = m->d.superdata; m; m = m->d.superdata)TRUE | evaluated 32863477 times by 1013 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 24668415 times by 1013 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
- ...
|
| 24668415-32863477 |
823 | offset += priv(m->d.data)->signalCount;executed 32863455 times by 1013 tests: offset += priv(m->d.data)->signalCount; 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
- ...
| 32863455 |
824 | return offset;executed 24668418 times by 1013 tests: return offset; 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
- ...
| 24668418 |
825 | } | - |
826 | | - |
827 | | - |
828 | | - |
829 | | - |
830 | | - |
831 | | - |
832 | | - |
833 | | - |
834 | | - |
835 | | - |
836 | | - |
837 | int QMetaObjectPrivate::absoluteSignalCount(const QMetaObject *m) | - |
838 | { | - |
839 | Q_ASSERT(m != 0); | - |
840 | int n = priv(m->d.data)->signalCount; | - |
841 | for (m = m->d.superdata; m; m = m->d.superdata)TRUE | evaluated 3 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QObject
| FALSE | evaluated 4 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QObject
|
| 3-4 |
842 | n += priv(m->d.data)->signalCount;executed 3 times by 2 tests: n += priv(m->d.data)->signalCount; Executed by:- tst_QMetaObject
- tst_QObject
| 3 |
843 | return n;executed 4 times by 2 tests: return n; Executed by:- tst_QMetaObject
- tst_QObject
| 4 |
844 | } | - |
845 | | - |
846 | | - |
847 | | - |
848 | | - |
849 | | - |
850 | | - |
851 | | - |
852 | | - |
853 | | - |
854 | | - |
855 | int QMetaObjectPrivate::signalIndex(const QMetaMethod &m) | - |
856 | { | - |
857 | if (!m.mobj)TRUE | never evaluated | FALSE | evaluated 14 times by 1 test |
| 0-14 |
858 | return -1; never executed: return -1; | 0 |
859 | return QMetaMethodPrivate::get(&m)->ownMethodIndex() + signalOffset(m.mobj);executed 14 times by 1 test: return QMetaMethodPrivate::get(&m)->ownMethodIndex() + signalOffset(m.mobj); | 14 |
860 | } | - |
861 | | - |
862 | | - |
863 | | - |
864 | | - |
865 | | - |
866 | | - |
867 | | - |
868 | | - |
869 | | - |
870 | | - |
871 | QMetaMethod QMetaObjectPrivate::signal(const QMetaObject *m, int signal_index) | - |
872 | { | - |
873 | QMetaMethod result; | - |
874 | if (signal_index < 0)TRUE | evaluated 4547 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 1838758 times by 515 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
- ...
|
| 4547-1838758 |
875 | return result;executed 4547 times by 228 tests: return result; 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
- ...
| 4547 |
876 | Q_ASSERT(m != 0); | - |
877 | int i = signal_index; | - |
878 | i -= signalOffset(m); | - |
879 | if (i < 0 && m->d.superdata)TRUE | evaluated 147108 times by 414 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- 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
- tst_QCommandLinkButton
- tst_QCompleter
- ...
| FALSE | evaluated 1691650 times by 515 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 147108 times by 414 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- 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
- tst_QCommandLinkButton
- tst_QCompleter
- ...
| FALSE | never evaluated |
| 0-1691650 |
880 | return signal(m->d.superdata, signal_index);executed 147108 times by 414 tests: return signal(m->d.superdata, signal_index); Executed by:- tst_Gestures
- tst_ModelTest
- 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
- tst_QCommandLinkButton
- tst_QCompleter
- ...
| 147108 |
881 | | - |
882 | if (i >= 0 && i < priv(m->d.data)->signalCount) {TRUE | evaluated 1691650 times by 515 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 |
TRUE | evaluated 1691182 times by 515 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 468 times by 13 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QMainWindow
- tst_QMenu
- tst_QNetworkReply
- tst_QObject
- tst_QPrinter
- tst_QStyle
- tst_QToolBar
- tst_QWidget
- tst_QWidgetAction
- tst_QWidget_window
- tst_Spdy
- tst_qdbusabstractadaptor - unknown status
|
| 0-1691650 |
883 | result.mobj = m; | - |
884 | result.handle = priv(m->d.data)->methodData + 5*i; | - |
885 | }executed 1691182 times by 515 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
- ...
| 1691182 |
886 | return result;executed 1691650 times by 515 tests: return result; 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
- ...
| 1691650 |
887 | } | - |
888 | | - |
889 | | - |
890 | | - |
891 | | - |
892 | | - |
893 | | - |
894 | | - |
895 | bool QMetaObjectPrivate::checkConnectArgs(int signalArgc, const QArgumentType *signalTypes, | - |
896 | int methodArgc, const QArgumentType *methodTypes) | - |
897 | { | - |
898 | if (signalArgc < methodArgc)TRUE | never evaluated | FALSE | evaluated 521740 times by 260 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-521740 |
899 | return false; never executed: return false; | 0 |
900 | for (int i = 0; i < methodArgc; ++i) {TRUE | evaluated 547851 times by 202 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 | evaluated 521739 times by 260 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
- ...
|
| 521739-547851 |
901 | if (signalTypes[i] != methodTypes[i])TRUE | evaluated 1 time by 1 test | FALSE | evaluated 547850 times by 202 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
- ...
|
| 1-547850 |
902 | return false;executed 1 time by 1 test: return false; | 1 |
903 | }executed 547850 times by 202 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_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- ...
| 547850 |
904 | return true;executed 521739 times by 260 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
- ...
| 521739 |
905 | } | - |
906 | | - |
907 | | - |
908 | | - |
909 | | - |
910 | | - |
911 | | - |
912 | | - |
913 | bool QMetaObjectPrivate::checkConnectArgs(const QMetaMethodPrivate *signal, | - |
914 | const QMetaMethodPrivate *method) | - |
915 | { | - |
916 | if (signal->methodType() != QMetaMethod::Signal)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
917 | return false; never executed: return false; | 0 |
918 | if (signal->parameterCount() < method->parameterCount())TRUE | never evaluated | FALSE | never evaluated |
| 0 |
919 | return false; never executed: return false; | 0 |
920 | const QMetaObject *smeta = signal->enclosingMetaObject(); | - |
921 | const QMetaObject *rmeta = method->enclosingMetaObject(); | - |
922 | for (int i = 0; i < method->parameterCount(); ++i) {TRUE | never evaluated | FALSE | never evaluated |
| 0 |
923 | uint sourceTypeInfo = signal->parameterTypeInfo(i); | - |
924 | uint targetTypeInfo = method->parameterTypeInfo(i); | - |
925 | if ((sourceTypeInfo & IsUnresolvedType)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
926 | || (targetTypeInfo & IsUnresolvedType)) {TRUE | never evaluated | FALSE | never evaluated |
| 0 |
927 | QByteArray sourceName = typeNameFromTypeInfo(smeta, sourceTypeInfo); | - |
928 | QByteArray targetName = typeNameFromTypeInfo(rmeta, targetTypeInfo); | - |
929 | if (sourceName != targetName)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
930 | return false; never executed: return false; | 0 |
931 | } else { never executed: end of block | 0 |
932 | int sourceType = typeFromTypeInfo(smeta, sourceTypeInfo); | - |
933 | int targetType = typeFromTypeInfo(rmeta, targetTypeInfo); | - |
934 | if (sourceType != targetType)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
935 | return false; never executed: return false; | 0 |
936 | } never executed: end of block | 0 |
937 | } | - |
938 | return true; never executed: return true; | 0 |
939 | } | - |
940 | | - |
941 | static const QMetaObject *QMetaObject_findMetaObject(const QMetaObject *self, const char *name) | - |
942 | { | - |
943 | while (self) {TRUE | evaluated 108 times by 13 testsEvaluated by:- tst_QAbstractProxyModel
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QItemDelegate
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
- tst_QMetaType
- tst_QObject
- tst_QSyntaxHighlighter
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
| FALSE | never evaluated |
| 0-108 |
944 | if (strcmp(objectClassName(self), name) == 0)TRUE | evaluated 101 times by 13 testsEvaluated by:- tst_QAbstractProxyModel
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QItemDelegate
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
- tst_QMetaType
- tst_QObject
- tst_QSyntaxHighlighter
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
| FALSE | evaluated 7 times by 1 test |
| 7-101 |
945 | return self;executed 101 times by 13 tests: return self; Executed by:- tst_QAbstractProxyModel
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QItemDelegate
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
- tst_QMetaType
- tst_QObject
- tst_QSyntaxHighlighter
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
| 101 |
946 | if (self->d.relatedMetaObjects) {TRUE | evaluated 7 times by 1 test | FALSE | never evaluated |
| 0-7 |
947 | Q_ASSERT(priv(self->d.data)->revision >= 2); | - |
948 | const QMetaObject * const *e = self->d.relatedMetaObjects; | - |
949 | if (e) {TRUE | evaluated 7 times by 1 test | FALSE | never evaluated |
| 0-7 |
950 | while (*e) {TRUE | evaluated 7 times by 1 test | FALSE | never evaluated |
| 0-7 |
951 | if (const QMetaObject *m =QMetaObject_findMetaObject((*e), name))TRUE | evaluated 7 times by 1 test | FALSE | never evaluated |
| 0-7 |
952 | return m;executed 7 times by 1 test: return m; | 7 |
953 | ++e; | - |
954 | } never executed: end of block | 0 |
955 | } never executed: end of block | 0 |
956 | } never executed: end of block | 0 |
957 | self = self->d.superdata; | - |
958 | } never executed: end of block | 0 |
959 | return self; never executed: return self; | 0 |
960 | } | - |
961 | | - |
962 | | - |
963 | | - |
964 | | - |
965 | | - |
966 | | - |
967 | | - |
968 | int QMetaObject::indexOfEnumerator(const char *name) const | - |
969 | { | - |
970 | const QMetaObject *m = this; | - |
971 | while (m) {TRUE | evaluated 72340 times by 144 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QBrush
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QCollator
- tst_QComboBox
- tst_QCompleter
- tst_QCssParser
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataStream
- tst_QDataWidgetMapper
- ...
| FALSE | evaluated 766 times by 23 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
- tst_QMetaType
- tst_QObject
- tst_QSyntaxHighlighter
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
|
| 766-72340 |
972 | const QMetaObjectPrivate *d = priv(m->d.data); | - |
973 | for (int i = d->enumeratorCount - 1; i >= 0; --i) {TRUE | evaluated 1613972 times by 137 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QBrush
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QCollator
- tst_QComboBox
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDataWidgetMapper
- tst_QDateTime
- tst_QDateTimeEdit
- tst_QDialogButtonBox
- ...
| FALSE | evaluated 2237 times by 23 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
- tst_QMetaType
- tst_QObject
- tst_QSyntaxHighlighter
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
|
| 2237-1613972 |
974 | const char *prop = rawStringData(m, m->d.data[d->enumeratorData + 4*i]); | - |
975 | if (name[0] == prop[0] && strcmp(name + 1, prop + 1) == 0) {TRUE | evaluated 95954 times by 136 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QBrush
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QCollator
- tst_QComboBox
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDataWidgetMapper
- tst_QDateTime
- tst_QDateTimeEdit
- tst_QDialogButtonBox
- ...
| FALSE | evaluated 1518018 times by 98 testsEvaluated by:- tst_Gestures
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QBrush
- tst_QCalendarWidget
- tst_QCollator
- tst_QComboBox
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDataWidgetMapper
- tst_QDateTime
- tst_QDateTimeEdit
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QDrag
- tst_QEventDispatcher
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFormLayout
- ...
|
TRUE | evaluated 70103 times by 136 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QBrush
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QCollator
- tst_QComboBox
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDataWidgetMapper
- tst_QDateTime
- tst_QDateTimeEdit
- tst_QDialogButtonBox
- ...
| FALSE | evaluated 25851 times by 81 testsEvaluated by:- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractItemView
- tst_QAbstractSpinBox
- tst_QCalendarWidget
- tst_QCollator
- tst_QComboBox
- tst_QCompleter
- tst_QDataStream
- tst_QDataWidgetMapper
- tst_QDateTime
- tst_QDateTimeEdit
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QDrag
- tst_QFrame
- tst_QGraphicsItem
- tst_QGraphicsLinearLayout
- tst_QGraphicsPixmapItem
- tst_QGraphicsPolygonItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QGridLayout
- ...
|
| 25851-1518018 |
976 | i += m->enumeratorOffset(); | - |
977 | return i;executed 70103 times by 136 tests: return i; Executed by:- tst_Gestures
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QBrush
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QCollator
- tst_QComboBox
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDataWidgetMapper
- tst_QDateTime
- tst_QDateTimeEdit
- tst_QDialogButtonBox
- ...
| 70103 |
978 | } | - |
979 | }executed 1543869 times by 105 tests: end of block Executed by:- tst_Gestures
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QBrush
- tst_QCalendarWidget
- tst_QCollator
- tst_QComboBox
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDataWidgetMapper
- tst_QDateTime
- tst_QDateTimeEdit
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QDrag
- tst_QEventDispatcher
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontComboBox
- ...
| 1543869 |
980 | m = m->d.superdata; | - |
981 | }executed 2237 times by 23 tests: end of block Executed by:- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
- tst_QMetaType
- tst_QObject
- tst_QSyntaxHighlighter
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
| 2237 |
982 | return -1;executed 766 times by 23 tests: return -1; Executed by:- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
- tst_QMetaType
- tst_QObject
- tst_QSyntaxHighlighter
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
| 766 |
983 | } | - |
984 | | - |
985 | | - |
986 | | - |
987 | | - |
988 | | - |
989 | | - |
990 | | - |
991 | int QMetaObject::indexOfProperty(const char *name) const | - |
992 | { | - |
993 | const QMetaObject *m = this; | - |
994 | while (m) {TRUE | evaluated 244247 times by 202 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
- ...
| FALSE | evaluated 60516 times by 181 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
- ...
|
| 60516-244247 |
995 | const QMetaObjectPrivate *d = priv(m->d.data); | - |
996 | for (int i = d->propertyCount-1; i >= 0; --i) {TRUE | evaluated 2509034 times by 202 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
- ...
| FALSE | evaluated 221148 times by 181 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
- ...
|
| 221148-2509034 |
997 | const char *prop = rawStringData(m, m->d.data[d->propertyData + 3*i]); | - |
998 | if (name[0] == prop[0] && strcmp(name + 1, prop + 1) == 0) {TRUE | evaluated 45766 times by 155 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
- ...
| FALSE | evaluated 2463268 times by 184 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_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
|
TRUE | evaluated 23099 times by 154 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
- ...
| FALSE | evaluated 22667 times by 51 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAnimationGroup
- tst_QApplication
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDataWidgetMapper
- tst_QErrorMessage
- tst_QFontDialog
- tst_QFormLayout
- tst_QGraphicsItem
- tst_QGraphicsObject
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QItemDelegate
- tst_QLabel
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMessageBox
- ...
|
| 22667-2463268 |
999 | i += m->propertyOffset(); | - |
1000 | return i;executed 23099 times by 154 tests: return i; 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
- ...
| 23099 |
1001 | } | - |
1002 | }executed 2485935 times by 189 tests: end of block Executed 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_QCoreApplication
- ...
| 2485935 |
1003 | m = m->d.superdata; | - |
1004 | }executed 221148 times by 181 tests: end of block Executed 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
- ...
| 221148 |
1005 | | - |
1006 | Q_ASSERT(priv(this->d.data)->revision >= 3); | - |
1007 | if (priv(this->d.data)->flags & DynamicMetaObject) {TRUE | never evaluated | FALSE | evaluated 60516 times by 181 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
- ...
|
| 0-60516 |
1008 | QAbstractDynamicMetaObject *me = | - |
1009 | const_cast<QAbstractDynamicMetaObject *>(static_cast<const QAbstractDynamicMetaObject *>(this)); | - |
1010 | | - |
1011 | return me->createProperty(name, 0); never executed: return me->createProperty(name, 0); | 0 |
1012 | } | - |
1013 | | - |
1014 | return -1;executed 60516 times by 181 tests: return -1; Executed 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
- ...
| 60516 |
1015 | } | - |
1016 | | - |
1017 | | - |
1018 | | - |
1019 | | - |
1020 | | - |
1021 | | - |
1022 | | - |
1023 | int QMetaObject::indexOfClassInfo(const char *name) const | - |
1024 | { | - |
1025 | int i = -1; | - |
1026 | const QMetaObject *m = this; | - |
1027 | while (m && i < 0) {TRUE | evaluated 5507 times by 15 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QMetaObject
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuscpp2xml
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
| FALSE | evaluated 301 times by 10 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_qdbusabstractadaptor - unknown status
- tst_qdbuscpp2xml
|
TRUE | evaluated 3100 times by 15 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QMetaObject
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuscpp2xml
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
| FALSE | evaluated 2407 times by 15 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QMetaObject
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuscpp2xml
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
|
| 301-5507 |
1028 | for (i = priv(m->d.data)->classInfoCount-1; i >= 0; --i)TRUE | evaluated 2610 times by 15 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QMetaObject
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuscpp2xml
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
| FALSE | evaluated 693 times by 11 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QMetaObject
- tst_qdbusabstractadaptor - unknown status
- tst_qdbuscpp2xml
|
| 693-2610 |
1029 | if (strcmp(name, rawStringData(m, m->d.data[priv(m->d.data)->classInfoData + 2*i])) == 0) {TRUE | evaluated 2407 times by 15 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QMetaObject
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuscpp2xml
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
| FALSE | evaluated 203 times by 9 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_qdbusabstractadaptor - unknown status
- tst_qdbuscpp2xml
- tst_qdbusinterface - unknown status
|
| 203-2407 |
1030 | i += m->classInfoOffset(); | - |
1031 | break;executed 2407 times by 15 tests: break; Executed by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QMetaObject
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuscpp2xml
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
| 2407 |
1032 | } | - |
1033 | m = m->d.superdata; | - |
1034 | }executed 3100 times by 15 tests: end of block Executed by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QMetaObject
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuscpp2xml
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
| 3100 |
1035 | return i;executed 2708 times by 15 tests: return i; Executed by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QMetaObject
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuscpp2xml
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
| 2708 |
1036 | } | - |
1037 | | - |
1038 | | - |
1039 | | - |
1040 | | - |
1041 | | - |
1042 | | - |
1043 | | - |
1044 | | - |
1045 | QMetaMethod QMetaObject::constructor(int index) const | - |
1046 | { | - |
1047 | int i = index; | - |
1048 | QMetaMethod result; | - |
1049 | Q_ASSERT(priv(d.data)->revision >= 2); | - |
1050 | if (i >= 0 && i < priv(d.data)->constructorCount) {TRUE | evaluated 103 times by 3 testsEvaluated by:- tst_QMetaMethod
- tst_QMetaObjectBuilder
- tst_QObject
| FALSE | never evaluated |
TRUE | evaluated 103 times by 3 testsEvaluated by:- tst_QMetaMethod
- tst_QMetaObjectBuilder
- tst_QObject
| FALSE | never evaluated |
| 0-103 |
1051 | result.mobj = this; | - |
1052 | result.handle = priv(d.data)->constructorData + 5*i; | - |
1053 | }executed 103 times by 3 tests: end of block Executed by:- tst_QMetaMethod
- tst_QMetaObjectBuilder
- tst_QObject
| 103 |
1054 | return result;executed 103 times by 3 tests: return result; Executed by:- tst_QMetaMethod
- tst_QMetaObjectBuilder
- tst_QObject
| 103 |
1055 | } | - |
1056 | | - |
1057 | | - |
1058 | | - |
1059 | | - |
1060 | | - |
1061 | | - |
1062 | QMetaMethod QMetaObject::method(int index) const | - |
1063 | { | - |
1064 | int i = index; | - |
1065 | i -= methodOffset(); | - |
1066 | if (i < 0 && d.superdata)TRUE | evaluated 173066 times by 509 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 828330 times by 537 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 173063 times by 509 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 3 times by 1 test |
| 3-828330 |
1067 | return d.superdata->method(index);executed 173063 times by 509 tests: return d.superdata->method(index); 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
- ...
| 173063 |
1068 | | - |
1069 | QMetaMethod result; | - |
1070 | if (i >= 0 && i < priv(d.data)->methodCount) {TRUE | evaluated 828330 times by 537 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 3 times by 1 test |
TRUE | evaluated 828326 times by 537 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 4 times by 3 testsEvaluated by:- tst_QMetaMethod
- tst_QMetaObject
- tst_QObject
|
| 3-828330 |
1071 | result.mobj = this; | - |
1072 | result.handle = priv(d.data)->methodData + 5*i; | - |
1073 | }executed 828326 times by 537 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
- ...
| 828326 |
1074 | return result;executed 828333 times by 537 tests: return result; 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
- ...
| 828333 |
1075 | } | - |
1076 | | - |
1077 | | - |
1078 | | - |
1079 | | - |
1080 | | - |
1081 | | - |
1082 | QMetaEnum QMetaObject::enumerator(int index) const | - |
1083 | { | - |
1084 | int i = index; | - |
1085 | i -= enumeratorOffset(); | - |
1086 | if (i < 0 && d.superdata)TRUE | evaluated 2229 times by 23 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
- tst_QMetaType
- tst_QObject
- tst_QSyntaxHighlighter
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
| FALSE | evaluated 70117 times by 136 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QBrush
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QCollator
- tst_QComboBox
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDataWidgetMapper
- tst_QDateTime
- tst_QDateTimeEdit
- tst_QDialogButtonBox
- ...
|
TRUE | evaluated 1465 times by 23 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
- tst_QMetaType
- tst_QObject
- tst_QSyntaxHighlighter
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
| FALSE | evaluated 764 times by 23 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
- tst_QMetaType
- tst_QObject
- tst_QSyntaxHighlighter
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
|
| 764-70117 |
1087 | return d.superdata->enumerator(index);executed 1465 times by 23 tests: return d.superdata->enumerator(index); Executed by:- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
- tst_QMetaType
- tst_QObject
- tst_QSyntaxHighlighter
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
| 1465 |
1088 | | - |
1089 | QMetaEnum result; | - |
1090 | if (i >= 0 && i < priv(d.data)->enumeratorCount) {TRUE | evaluated 70117 times by 136 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QBrush
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QCollator
- tst_QComboBox
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDataWidgetMapper
- tst_QDateTime
- tst_QDateTimeEdit
- tst_QDialogButtonBox
- ...
| FALSE | evaluated 764 times by 23 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
- tst_QMetaType
- tst_QObject
- tst_QSyntaxHighlighter
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
|
TRUE | evaluated 70117 times by 136 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QBrush
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QCollator
- tst_QComboBox
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDataWidgetMapper
- tst_QDateTime
- tst_QDateTimeEdit
- tst_QDialogButtonBox
- ...
| FALSE | never evaluated |
| 0-70117 |
1091 | result.mobj = this; | - |
1092 | result.handle = priv(d.data)->enumeratorData + 4*i; | - |
1093 | }executed 70117 times by 136 tests: end of block Executed by:- tst_Gestures
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QBrush
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QCollator
- tst_QComboBox
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDataWidgetMapper
- tst_QDateTime
- tst_QDateTimeEdit
- tst_QDialogButtonBox
- ...
| 70117 |
1094 | return result;executed 70881 times by 144 tests: return result; Executed by:- tst_Gestures
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QBrush
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QCollator
- tst_QComboBox
- tst_QCompleter
- tst_QCssParser
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataStream
- tst_QDataWidgetMapper
- ...
| 70881 |
1095 | } | - |
1096 | | - |
1097 | | - |
1098 | | - |
1099 | | - |
1100 | | - |
1101 | | - |
1102 | | - |
1103 | QMetaProperty QMetaObject::property(int index) const | - |
1104 | { | - |
1105 | int i = index; | - |
1106 | i -= propertyOffset(); | - |
1107 | if (i < 0 && d.superdata)TRUE | evaluated 28462 times by 36 testsEvaluated by:- tst_Gestures
- tst_QAbstractItemView
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDockWidget
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QInputDialog
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMetaObjectBuilder
- tst_QPrinter
- tst_QPropertyAnimation
- tst_QShortcut
- tst_QStateMachine
- ...
| FALSE | evaluated 28830 times by 156 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
- ...
|
TRUE | evaluated 28462 times by 36 testsEvaluated by:- tst_Gestures
- tst_QAbstractItemView
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDockWidget
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QInputDialog
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMetaObjectBuilder
- tst_QPrinter
- tst_QPropertyAnimation
- tst_QShortcut
- tst_QStateMachine
- ...
| FALSE | never evaluated |
| 0-28830 |
1108 | return d.superdata->property(index);executed 28462 times by 36 tests: return d.superdata->property(index); Executed by:- tst_Gestures
- tst_QAbstractItemView
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDockWidget
- tst_QFontDialog
- tst_QGraphicsProxyWidget
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QInputDialog
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMetaObjectBuilder
- tst_QPrinter
- tst_QPropertyAnimation
- tst_QShortcut
- tst_QStateMachine
- ...
| 28462 |
1109 | | - |
1110 | QMetaProperty result; | - |
1111 | if (i >= 0 && i < priv(d.data)->propertyCount) {TRUE | evaluated 28830 times by 156 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
- ...
| FALSE | never evaluated |
TRUE | evaluated 28830 times by 156 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
- ...
| FALSE | never evaluated |
| 0-28830 |
1112 | int handle = priv(d.data)->propertyData + 3*i; | - |
1113 | int flags = d.data[handle + 2]; | - |
1114 | result.mobj = this; | - |
1115 | result.handle = handle; | - |
1116 | result.idx = i; | - |
1117 | | - |
1118 | if (flags & EnumOrFlag) {TRUE | evaluated 988 times by 23 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
- tst_QMetaType
- tst_QObject
- tst_QSyntaxHighlighter
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
| FALSE | evaluated 27842 times by 155 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractButton
- tst_QAbstractItemView
- 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
- tst_QDBusAbstractInterface
- ...
|
| 988-27842 |
1119 | const char *type = rawTypeNameFromTypeInfo(this, d.data[handle + 1]); | - |
1120 | result.menum = enumerator(indexOfEnumerator(type)); | - |
1121 | if (!result.menum.isValid()) {TRUE | evaluated 670 times by 23 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
- tst_QMetaType
- tst_QObject
- tst_QSyntaxHighlighter
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
| FALSE | evaluated 318 times by 12 testsEvaluated by:- tst_QAbstractItemView
- tst_QDataWidgetMapper
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QObject
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
|
| 318-670 |
1122 | const char *enum_name = type; | - |
1123 | const char *scope_name = objectClassName(this); | - |
1124 | char *scope_buffer = 0; | - |
1125 | | - |
1126 | const char *colon = strrchr(enum_name, ':'); | - |
1127 | | - |
1128 | Q_ASSERT(colon <= enum_name || *(colon-1) == ':'); | - |
1129 | if (colon > enum_name) {TRUE | evaluated 576 times by 13 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractSpinBox
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
| FALSE | evaluated 94 times by 12 testsEvaluated by:- tst_QAbstractProxyModel
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QItemDelegate
- tst_QMetaObject
- tst_QMetaProperty
- tst_QMetaType
- tst_QObject
- tst_QSyntaxHighlighter
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
|
| 94-576 |
1130 | int len = colon-enum_name-1; | - |
1131 | scope_buffer = (char *)malloc(len+1); | - |
1132 | memcpy(scope_buffer, enum_name, len); | - |
1133 | scope_buffer[len] = '\0'; | - |
1134 | scope_name = scope_buffer; | - |
1135 | enum_name = colon+1; | - |
1136 | }executed 576 times by 13 tests: end of block Executed by:- tst_QAbstractItemView
- tst_QAbstractSpinBox
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
| 576 |
1137 | | - |
1138 | const QMetaObject *scope = 0; | - |
1139 | if (qstrcmp(scope_name, "Qt") == 0)TRUE | evaluated 569 times by 12 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractSpinBox
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMetaObject
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
| FALSE | evaluated 101 times by 13 testsEvaluated by:- tst_QAbstractProxyModel
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QItemDelegate
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
- tst_QMetaType
- tst_QObject
- tst_QSyntaxHighlighter
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
|
| 101-569 |
1140 | scope = &QObject::staticQtMetaObject;executed 569 times by 12 tests: scope = &QObject::staticQtMetaObject; Executed by:- tst_QAbstractItemView
- tst_QAbstractSpinBox
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMetaObject
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
| 569 |
1141 | else | - |
1142 | scope = QMetaObject_findMetaObject(this, scope_name);executed 101 times by 13 tests: scope = QMetaObject_findMetaObject(this, scope_name); Executed by:- tst_QAbstractProxyModel
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QItemDelegate
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
- tst_QMetaType
- tst_QObject
- tst_QSyntaxHighlighter
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
| 101 |
1143 | if (scope)TRUE | evaluated 670 times by 23 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
- tst_QMetaType
- tst_QObject
- tst_QSyntaxHighlighter
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
| FALSE | never evaluated |
| 0-670 |
1144 | result.menum = scope->enumerator(scope->indexOfEnumerator(enum_name));executed 670 times by 23 tests: result.menum = scope->enumerator(scope->indexOfEnumerator(enum_name)); Executed by:- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
- tst_QMetaType
- tst_QObject
- tst_QSyntaxHighlighter
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
| 670 |
1145 | if (scope_buffer)TRUE | evaluated 576 times by 13 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractSpinBox
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
| FALSE | evaluated 94 times by 12 testsEvaluated by:- tst_QAbstractProxyModel
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QItemDelegate
- tst_QMetaObject
- tst_QMetaProperty
- tst_QMetaType
- tst_QObject
- tst_QSyntaxHighlighter
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
|
| 94-576 |
1146 | free(scope_buffer);executed 576 times by 13 tests: free(scope_buffer); Executed by:- tst_QAbstractItemView
- tst_QAbstractSpinBox
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
| 576 |
1147 | }executed 670 times by 23 tests: end of block Executed by:- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
- tst_QMetaType
- tst_QObject
- tst_QSyntaxHighlighter
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
| 670 |
1148 | }executed 988 times by 23 tests: end of block Executed by:- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
- tst_QMetaType
- tst_QObject
- tst_QSyntaxHighlighter
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
| 988 |
1149 | }executed 28830 times by 156 tests: end of block 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
- ...
| 28830 |
1150 | return result;executed 28830 times by 156 tests: return result; 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
- ...
| 28830 |
1151 | } | - |
1152 | | - |
1153 | | - |
1154 | | - |
1155 | | - |
1156 | | - |
1157 | | - |
1158 | | - |
1159 | | - |
1160 | QMetaProperty QMetaObject::userProperty() const | - |
1161 | { | - |
1162 | const int propCount = propertyCount(); | - |
1163 | for (int i = propCount - 1; i >= 0; --i) {TRUE | evaluated 5183 times by 10 testsEvaluated by:- tst_QAbstractItemView
- tst_QDataWidgetMapper
- tst_QItemDelegate
- tst_QItemEditorFactory
- tst_QItemView
- tst_QListWidget
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
| FALSE | evaluated 3 times by 1 test |
| 3-5183 |
1164 | const QMetaProperty prop = property(i); | - |
1165 | if (prop.isUser())TRUE | evaluated 315 times by 10 testsEvaluated by:- tst_QAbstractItemView
- tst_QDataWidgetMapper
- tst_QItemDelegate
- tst_QItemEditorFactory
- tst_QItemView
- tst_QListWidget
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
| FALSE | evaluated 4868 times by 10 testsEvaluated by:- tst_QAbstractItemView
- tst_QDataWidgetMapper
- tst_QItemDelegate
- tst_QItemEditorFactory
- tst_QItemView
- tst_QListWidget
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
|
| 315-4868 |
1166 | return prop;executed 315 times by 10 tests: return prop; Executed by:- tst_QAbstractItemView
- tst_QDataWidgetMapper
- tst_QItemDelegate
- tst_QItemEditorFactory
- tst_QItemView
- tst_QListWidget
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
| 315 |
1167 | }executed 4868 times by 10 tests: end of block Executed by:- tst_QAbstractItemView
- tst_QDataWidgetMapper
- tst_QItemDelegate
- tst_QItemEditorFactory
- tst_QItemView
- tst_QListWidget
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
| 4868 |
1168 | return QMetaProperty();executed 3 times by 1 test: return QMetaProperty(); | 3 |
1169 | } | - |
1170 | | - |
1171 | | - |
1172 | | - |
1173 | | - |
1174 | | - |
1175 | | - |
1176 | | - |
1177 | | - |
1178 | | - |
1179 | | - |
1180 | | - |
1181 | QMetaClassInfo QMetaObject::classInfo(int index) const | - |
1182 | { | - |
1183 | int i = index; | - |
1184 | i -= classInfoOffset(); | - |
1185 | if (i < 0 && d.superdata)TRUE | evaluated 1 time by 1 test | FALSE | evaluated 2426 times by 16 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuscpp2xml
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
|
TRUE | evaluated 1 time by 1 test | FALSE | never evaluated |
| 0-2426 |
1186 | return d.superdata->classInfo(index);executed 1 time by 1 test: return d.superdata->classInfo(index); | 1 |
1187 | | - |
1188 | QMetaClassInfo result; | - |
1189 | if (i >= 0 && i < priv(d.data)->classInfoCount) {TRUE | evaluated 2426 times by 16 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuscpp2xml
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
| FALSE | never evaluated |
TRUE | evaluated 2426 times by 16 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuscpp2xml
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
| FALSE | never evaluated |
| 0-2426 |
1190 | result.mobj = this; | - |
1191 | result.handle = priv(d.data)->classInfoData + 2*i; | - |
1192 | }executed 2426 times by 16 tests: end of block Executed by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuscpp2xml
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
| 2426 |
1193 | return result;executed 2426 times by 16 tests: return result; Executed by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuscpp2xml
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
| 2426 |
1194 | } | - |
1195 | | - |
1196 | | - |
1197 | | - |
1198 | | - |
1199 | | - |
1200 | | - |
1201 | | - |
1202 | | - |
1203 | | - |
1204 | bool QMetaObject::checkConnectArgs(const char *signal, const char *method) | - |
1205 | { | - |
1206 | const char *s1 = signal; | - |
1207 | const char *s2 = method; | - |
1208 | while (*s1++ != '(') { } executed 161 times by 1 test: end of block TRUE | evaluated 161 times by 1 test | FALSE | evaluated 23 times by 1 test |
| 23-161 |
1209 | while (*s2++ != '(') { }executed 115 times by 1 test: end of block TRUE | evaluated 115 times by 1 test | FALSE | evaluated 23 times by 1 test |
| 23-115 |
1210 | if (*s2 == ')' || qstrcmp(s1,s2) == 0) TRUE | evaluated 23 times by 1 test | FALSE | never evaluated |
TRUE | never evaluated | FALSE | never evaluated |
| 0-23 |
1211 | return true; executed 23 times by 1 test: return true; | 23 |
1212 | int s1len = qstrlen(s1); | - |
1213 | int s2len = qstrlen(s2); | - |
1214 | if (s2len < s1len && strncmp(s1,s2,s2len-1)==0 && s1[s2len-1]==',')TRUE | never evaluated | FALSE | never evaluated |
TRUE | never evaluated | FALSE | never evaluated |
TRUE | never evaluated | FALSE | never evaluated |
| 0 |
1215 | return true; never executed: return true; | 0 |
1216 | return false; never executed: return false; | 0 |
1217 | } | - |
1218 | | - |
1219 | | - |
1220 | | - |
1221 | | - |
1222 | | - |
1223 | | - |
1224 | | - |
1225 | | - |
1226 | bool QMetaObject::checkConnectArgs(const QMetaMethod &signal, | - |
1227 | const QMetaMethod &method) | - |
1228 | { | - |
1229 | return QMetaObjectPrivate::checkConnectArgs( never executed: return QMetaObjectPrivate::checkConnectArgs( QMetaMethodPrivate::get(&signal), QMetaMethodPrivate::get(&method)); | 0 |
1230 | QMetaMethodPrivate::get(&signal), never executed: return QMetaObjectPrivate::checkConnectArgs( QMetaMethodPrivate::get(&signal), QMetaMethodPrivate::get(&method)); | 0 |
1231 | QMetaMethodPrivate::get(&method)); never executed: return QMetaObjectPrivate::checkConnectArgs( QMetaMethodPrivate::get(&signal), QMetaMethodPrivate::get(&method)); | 0 |
1232 | } | - |
1233 | | - |
1234 | static void qRemoveWhitespace(const char *s, char *d) | - |
1235 | { | - |
1236 | char last = 0; | - |
1237 | while (*s && is_space(*s))TRUE | evaluated 118069 times by 330 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- ...
| FALSE | never evaluated |
TRUE | evaluated 10 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QMetaType
| FALSE | evaluated 118059 times by 330 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- ...
|
| 0-118069 |
1238 | s++;executed 10 times by 2 tests: s++; Executed by:- tst_QMetaObject
- tst_QMetaType
| 10 |
1239 | while (*s) {TRUE | evaluated 133333 times by 330 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- ...
| FALSE | evaluated 118059 times by 330 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- ...
|
| 118059-133333 |
1240 | while (*s && !is_space(*s))TRUE | evaluated 3034282 times by 330 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- ...
| FALSE | evaluated 118048 times by 330 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- ...
|
TRUE | evaluated 3018997 times by 330 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- ...
| FALSE | evaluated 15285 times by 102 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QColorDialog
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusMarshall
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDialog
- tst_QDockWidget
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- ...
|
| 15285-3034282 |
1241 | last = *d++ = *s++;executed 3018997 times by 330 tests: last = *d++ = *s++; Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- ...
| 3018997 |
1242 | while (*s && is_space(*s))TRUE | evaluated 30566 times by 102 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QColorDialog
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusMarshall
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDialog
- tst_QDockWidget
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- ...
| FALSE | evaluated 118059 times by 330 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- ...
|
TRUE | evaluated 15292 times by 102 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QColorDialog
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusMarshall
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDialog
- tst_QDockWidget
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- ...
| FALSE | evaluated 15274 times by 102 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QColorDialog
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusMarshall
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDialog
- tst_QDockWidget
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- ...
|
| 15274-118059 |
1243 | s++;executed 15292 times by 102 tests: s++; Executed by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QColorDialog
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusMarshall
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDialog
- tst_QDockWidget
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- ...
| 15292 |
1244 | if (*s && ((is_ident_char(*s) && is_ident_char(last))TRUE | evaluated 15274 times by 102 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QColorDialog
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusMarshall
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDialog
- tst_QDockWidget
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- ...
| FALSE | evaluated 118059 times by 330 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- ...
|
TRUE | evaluated 12988 times by 82 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QColorDialog
- tst_QComboBox
- tst_QCompleter
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDialog
- tst_QDockWidget
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFormLayout
- tst_QFtp
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- ...
| FALSE | evaluated 2286 times by 53 testsEvaluated by:- tst_Gestures
- tst_QAbstractItemModel
- tst_QAbstractNetworkCache
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QButtonGroup
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusMarshall
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- tst_QGraphicsLinearLayout
- tst_QGraphicsObject
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsSceneIndex
- tst_QGraphicsView
- ...
|
TRUE | evaluated 1759 times by 68 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QColorDialog
- tst_QComboBox
- tst_QCompleter
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDialog
- tst_QDockWidget
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFormLayout
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsWidget
- ...
| FALSE | evaluated 11229 times by 32 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QButtonGroup
- tst_QFtp
- tst_QGraphicsScene
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QItemDelegate
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaType
- tst_QNetworkAccessManager
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QObject
- tst_QPlainTextEdit
- tst_QSslSocket
- tst_QSslSocket_onDemandCertificates_member
- tst_QSslSocket_onDemandCertificates_static
- tst_QTcpServer
- ...
|
| 1759-118059 |
1245 | || ((*s == ':') && (last == '<')))) {TRUE | evaluated 1 time by 1 test | FALSE | evaluated 13514 times by 66 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractNetworkCache
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QButtonGroup
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusMarshall
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFtp
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- tst_QGraphicsLinearLayout
- tst_QGraphicsObject
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- ...
|
TRUE | evaluated 1 time by 1 test | FALSE | never evaluated |
| 0-13514 |
1246 | last = *d++ = ' '; | - |
1247 | }executed 1760 times by 68 tests: end of block Executed by:- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QColorDialog
- tst_QComboBox
- tst_QCompleter
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDialog
- tst_QDockWidget
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFormLayout
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsWidget
- ...
| 1760 |
1248 | }executed 133333 times by 330 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- ...
| 133333 |
1249 | *d = '\0'; | - |
1250 | }executed 118059 times by 330 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- ...
| 118059 |
1251 | | - |
1252 | static char *qNormalizeType(char *d, int &templdepth, QByteArray &result) | - |
1253 | { | - |
1254 | const char *t = d; | - |
1255 | while (*d && (templdepthTRUE | evaluated 1745247 times by 330 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- ...
| FALSE | evaluated 44923 times by 323 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- ...
|
TRUE | evaluated 141787 times by 236 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- ...
| FALSE | evaluated 1603460 times by 330 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- ...
|
| 44923-1745247 |
1256 | || (*d != ',' && *d != ')'))) {TRUE | evaluated 1534122 times by 330 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- ...
| FALSE | evaluated 69338 times by 86 testsEvaluated by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- ...
|
TRUE | evaluated 1460980 times by 326 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- ...
| FALSE | evaluated 73142 times by 183 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_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
| 69338-1534122 |
1257 | if (*d == '<')TRUE | evaluated 12462 times by 236 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- ...
| FALSE | evaluated 1590305 times by 326 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- ...
|
| 12462-1590305 |
1258 | ++templdepth;executed 12462 times by 236 tests: ++templdepth; Executed 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- ...
| 12462 |
1259 | if (*d == '>')TRUE | evaluated 12462 times by 236 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- ...
| FALSE | evaluated 1590305 times by 326 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- ...
|
| 12462-1590305 |
1260 | --templdepth;executed 12462 times by 236 tests: --templdepth; Executed 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- ...
| 12462 |
1261 | ++d; | - |
1262 | }executed 1602767 times by 326 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- ...
| 1602767 |
1263 | | - |
1264 | | - |
1265 | if (strncmp("void)", t, d - t + 1) != 0)TRUE | evaluated 187374 times by 330 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- ...
| FALSE | evaluated 29 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QObject
|
| 29-187374 |
1266 | result += normalizeTypeInternal(t, d);executed 187374 times by 330 tests: result += normalizeTypeInternal(t, d); Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- ...
| 187374 |
1267 | | - |
1268 | return d;executed 187403 times by 330 tests: return d; Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- ...
| 187403 |
1269 | } | - |
1270 | | - |
1271 | | - |
1272 | | - |
1273 | | - |
1274 | | - |
1275 | | - |
1276 | | - |
1277 | | - |
1278 | | - |
1279 | | - |
1280 | | - |
1281 | | - |
1282 | | - |
1283 | | - |
1284 | | - |
1285 | | - |
1286 | QByteArray QMetaObject::normalizedType(const char *type) | - |
1287 | { | - |
1288 | QByteArray result; | - |
1289 | | - |
1290 | if (!type || !*type)TRUE | never evaluated | FALSE | evaluated 44959 times by 323 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- ...
|
TRUE | evaluated 37 times by 2 testsEvaluated by:- tst_QMetaObjectBuilder
- tst_QMetaType
| FALSE | evaluated 44922 times by 323 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- ...
|
| 0-44959 |
1291 | return result;executed 37 times by 2 tests: return result; Executed by:- tst_QMetaObjectBuilder
- tst_QMetaType
| 37 |
1292 | | - |
1293 | QVarLengthArray<char> stackbuf(qstrlen(type) + 1); | - |
1294 | qRemoveWhitespace(type, stackbuf.data()); | - |
1295 | int templdepth = 0; | - |
1296 | qNormalizeType(stackbuf.data(), templdepth, result); | - |
1297 | | - |
1298 | return result;executed 44922 times by 323 tests: return result; Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- ...
| 44922 |
1299 | } | - |
1300 | | - |
1301 | | - |
1302 | | - |
1303 | | - |
1304 | | - |
1305 | | - |
1306 | | - |
1307 | | - |
1308 | | - |
1309 | | - |
1310 | | - |
1311 | | - |
1312 | QByteArray QMetaObject::normalizedSignature(const char *method) | - |
1313 | { | - |
1314 | QByteArray result; | - |
1315 | if (!method || !*method)TRUE | never evaluated | FALSE | evaluated 73137 times by 183 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_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
TRUE | never evaluated | FALSE | evaluated 73137 times by 183 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_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
| 0-73137 |
1316 | return result; never executed: return result; | 0 |
1317 | int len = int(strlen(method)); | - |
1318 | QVarLengthArray<char> stackbuf(len + 1); | - |
1319 | char *d = stackbuf.data(); | - |
1320 | qRemoveWhitespace(method, d); | - |
1321 | | - |
1322 | result.reserve(len); | - |
1323 | | - |
1324 | int argdepth = 0; | - |
1325 | int templdepth = 0; | - |
1326 | while (*d) {TRUE | evaluated 1417991 times by 183 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_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 73136 times by 183 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_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
| 73136-1417991 |
1327 | if (argdepth == 1) {TRUE | evaluated 142481 times by 183 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_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 1275510 times by 183 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_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
| 142481-1275510 |
1328 | d = qNormalizeType(d, templdepth, result); | - |
1329 | if (!*d) TRUE | evaluated 1 time by 1 test | FALSE | evaluated 142480 times by 183 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_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
| 1-142480 |
1330 | break;executed 1 time by 1 test: break; | 1 |
1331 | }executed 142480 times by 183 tests: end of block Executed 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_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| 142480 |
1332 | if (*d == '(')TRUE | evaluated 73143 times by 183 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_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 1344847 times by 183 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_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
| 73143-1344847 |
1333 | ++argdepth;executed 73143 times by 183 tests: ++argdepth; Executed 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_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| 73143 |
1334 | if (*d == ')')TRUE | evaluated 73146 times by 183 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_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 1344844 times by 183 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_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
| 73146-1344844 |
1335 | --argdepth;executed 73146 times by 183 tests: --argdepth; Executed 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_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| 73146 |
1336 | result += *d++; | - |
1337 | }executed 1417990 times by 183 tests: end of block Executed 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_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| 1417990 |
1338 | | - |
1339 | return result;executed 73137 times by 183 tests: return result; Executed 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_QAnimationGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| 73137 |
1340 | } | - |
1341 | | - |
1342 | enum { MaximumParamCount = 11 }; | - |
1343 | | - |
1344 | | - |
1345 | | - |
1346 | | - |
1347 | | - |
1348 | static inline QByteArray findMethodCandidates(const QMetaObject *metaObject, const char *nonExistentMember) | - |
1349 | { | - |
1350 | QByteArray candidateMessage; | - |
1351 | | - |
1352 | const QByteArray memberByteArray = nonExistentMember; | - |
1353 | for (int i = 0; i < metaObject->methodCount(); ++i) {TRUE | evaluated 244 times by 2 testsEvaluated by:- tst_QDBusInterface
- tst_QMetaObject
| FALSE | evaluated 10 times by 2 testsEvaluated by:- tst_QDBusInterface
- tst_QMetaObject
|
| 10-244 |
1354 | const QMetaMethod method = metaObject->method(i); | - |
1355 | if (method.name() == memberByteArray)TRUE | evaluated 4 times by 1 test | FALSE | evaluated 240 times by 2 testsEvaluated by:- tst_QDBusInterface
- tst_QMetaObject
|
| 4-240 |
1356 | candidateMessage += " " + method.methodSignature() + '\n';executed 4 times by 1 test: candidateMessage += " " + method.methodSignature() + '\n'; | 4 |
1357 | }executed 244 times by 2 tests: end of block Executed by:- tst_QDBusInterface
- tst_QMetaObject
| 244 |
1358 | if (!candidateMessage.isEmpty()) {TRUE | evaluated 4 times by 1 test | FALSE | evaluated 6 times by 2 testsEvaluated by:- tst_QDBusInterface
- tst_QMetaObject
|
| 4-6 |
1359 | candidateMessage.prepend("\nCandidates are:\n"); | - |
1360 | candidateMessage.chop(1); | - |
1361 | }executed 4 times by 1 test: end of block | 4 |
1362 | return candidateMessage;executed 10 times by 2 tests: return candidateMessage; Executed by:- tst_QDBusInterface
- tst_QMetaObject
| 10 |
1363 | } | - |
1364 | | - |
1365 | | - |
1366 | | - |
1367 | | - |
1368 | | - |
1369 | | - |
1370 | | - |
1371 | | - |
1372 | | - |
1373 | | - |
1374 | | - |
1375 | | - |
1376 | | - |
1377 | | - |
1378 | | - |
1379 | | - |
1380 | | - |
1381 | | - |
1382 | | - |
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 | | - |
1411 | | - |
1412 | | - |
1413 | | - |
1414 | | - |
1415 | | - |
1416 | | - |
1417 | | - |
1418 | | - |
1419 | | - |
1420 | | - |
1421 | | - |
1422 | | - |
1423 | | - |
1424 | | - |
1425 | | - |
1426 | | - |
1427 | | - |
1428 | | - |
1429 | | - |
1430 | | - |
1431 | bool QMetaObject::invokeMethod(QObject *obj, | - |
1432 | const char *member, | - |
1433 | Qt::ConnectionType type, | - |
1434 | QGenericReturnArgument ret, | - |
1435 | QGenericArgument val0, | - |
1436 | QGenericArgument val1, | - |
1437 | QGenericArgument val2, | - |
1438 | QGenericArgument val3, | - |
1439 | QGenericArgument val4, | - |
1440 | QGenericArgument val5, | - |
1441 | QGenericArgument val6, | - |
1442 | QGenericArgument val7, | - |
1443 | QGenericArgument val8, | - |
1444 | QGenericArgument val9) | - |
1445 | { | - |
1446 | if (!obj)TRUE | evaluated 2 times by 1 test | FALSE | evaluated 127790 times by 199 testsEvaluated by:- tst_Gestures
- 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_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
|
| 2-127790 |
1447 | return false;executed 2 times by 1 test: return false; | 2 |
1448 | | - |
1449 | QVarLengthArray<char, 512> sig; | - |
1450 | int len = qstrlen(member); | - |
1451 | if (len <= 0)TRUE | evaluated 1 time by 1 test | FALSE | evaluated 127789 times by 199 testsEvaluated by:- tst_Gestures
- 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_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
|
| 1-127789 |
1452 | return false;executed 1 time by 1 test: return false; | 1 |
1453 | sig.append(member, len); | - |
1454 | sig.append('('); | - |
1455 | | - |
1456 | const char *typeNames[] = {ret.name(), val0.name(), val1.name(), val2.name(), val3.name(), | - |
1457 | val4.name(), val5.name(), val6.name(), val7.name(), val8.name(), | - |
1458 | val9.name()}; | - |
1459 | | - |
1460 | int paramCount; | - |
1461 | for (paramCount = 1; paramCount < MaximumParamCount; ++paramCount) {TRUE | evaluated 190201 times by 199 testsEvaluated by:- tst_Gestures
- 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_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| FALSE | never evaluated |
| 0-190201 |
1462 | len = qstrlen(typeNames[paramCount]); | - |
1463 | if (len <= 0)TRUE | evaluated 127789 times by 199 testsEvaluated by:- tst_Gestures
- 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_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| FALSE | evaluated 62412 times by 21 testsEvaluated by:- tst_QAbstractItemModel
- tst_QDBusInterface
- tst_QEventLoop
- tst_QGraphicsProxyWidget
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QGuiEventLoop
- tst_QItemDelegate
- tst_QMetaObject
- tst_QNetworkReply
- tst_QObject
- tst_QPropertyAnimation
- tst_QStateMachine
- tst_QTableView
- tst_QTcpSocket
- tst_QThread
- tst_QTimer
- tst_QTreeWidget
- tst_QXmlStream
- tst_Spdy
- tst_qdesktopservices
|
| 62412-127789 |
1464 | break;executed 127789 times by 199 tests: break; Executed by:- tst_Gestures
- 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_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| 127789 |
1465 | sig.append(typeNames[paramCount], len); | - |
1466 | sig.append(','); | - |
1467 | }executed 62412 times by 21 tests: end of block Executed by:- tst_QAbstractItemModel
- tst_QDBusInterface
- tst_QEventLoop
- tst_QGraphicsProxyWidget
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QGuiEventLoop
- tst_QItemDelegate
- tst_QMetaObject
- tst_QNetworkReply
- tst_QObject
- tst_QPropertyAnimation
- tst_QStateMachine
- tst_QTableView
- tst_QTcpSocket
- tst_QThread
- tst_QTimer
- tst_QTreeWidget
- tst_QXmlStream
- tst_Spdy
- tst_qdesktopservices
| 62412 |
1468 | if (paramCount == 1)TRUE | evaluated 65557 times by 198 testsEvaluated by:- tst_Gestures
- 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_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| FALSE | evaluated 62232 times by 21 testsEvaluated by:- tst_QAbstractItemModel
- tst_QDBusInterface
- tst_QEventLoop
- tst_QGraphicsProxyWidget
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QGuiEventLoop
- tst_QItemDelegate
- tst_QMetaObject
- tst_QNetworkReply
- tst_QObject
- tst_QPropertyAnimation
- tst_QStateMachine
- tst_QTableView
- tst_QTcpSocket
- tst_QThread
- tst_QTimer
- tst_QTreeWidget
- tst_QXmlStream
- tst_Spdy
- tst_qdesktopservices
|
| 62232-65557 |
1469 | sig.append(')'); executed 65557 times by 198 tests: sig.append(')'); Executed by:- tst_Gestures
- 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_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| 65557 |
1470 | else | - |
1471 | sig[sig.size() - 1] = ')';executed 62232 times by 21 tests: sig[sig.size() - 1] = ')'; Executed by:- tst_QAbstractItemModel
- tst_QDBusInterface
- tst_QEventLoop
- tst_QGraphicsProxyWidget
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QGuiEventLoop
- tst_QItemDelegate
- tst_QMetaObject
- tst_QNetworkReply
- tst_QObject
- tst_QPropertyAnimation
- tst_QStateMachine
- tst_QTableView
- tst_QTcpSocket
- tst_QThread
- tst_QTimer
- tst_QTreeWidget
- tst_QXmlStream
- tst_Spdy
- tst_qdesktopservices
| 62232 |
1472 | sig.append('\0'); | - |
1473 | | - |
1474 | const QMetaObject *meta = obj->metaObject(); | - |
1475 | int idx = meta->indexOfMethod(sig.constData()); | - |
1476 | if (idx < 0) {TRUE | evaluated 12 times by 2 testsEvaluated by:- tst_QDBusInterface
- tst_QMetaObject
| FALSE | evaluated 127777 times by 199 testsEvaluated by:- tst_Gestures
- 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_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
|
| 12-127777 |
1477 | QByteArray norm = QMetaObject::normalizedSignature(sig.constData()); | - |
1478 | idx = meta->indexOfMethod(norm.constData()); | - |
1479 | }executed 12 times by 2 tests: end of block Executed by:- tst_QDBusInterface
- tst_QMetaObject
| 12 |
1480 | | - |
1481 | if (idx < 0 || idx >= meta->methodCount()) {TRUE | evaluated 10 times by 2 testsEvaluated by:- tst_QDBusInterface
- tst_QMetaObject
| FALSE | evaluated 127779 times by 199 testsEvaluated by:- tst_Gestures
- 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_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
|
TRUE | never evaluated | FALSE | evaluated 127779 times by 199 testsEvaluated by:- tst_Gestures
- 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_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
|
| 0-127779 |
1482 | | - |
1483 | qWarning("QMetaObject::invokeMethod: No such method %s::%s%s", | - |
1484 | meta->className(), sig.constData(), findMethodCandidates(meta, member).constData()); | - |
1485 | return false;executed 10 times by 2 tests: return false; Executed by:- tst_QDBusInterface
- tst_QMetaObject
| 10 |
1486 | } | - |
1487 | QMetaMethod method = meta->method(idx); | - |
1488 | return method.invoke(obj, type, ret,executed 127779 times by 199 tests: return method.invoke(obj, type, ret, val0, val1, val2, val3, val4, val5, val6, val7, val8, val9); Executed by:- tst_Gestures
- 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_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| 127779 |
1489 | val0, val1, val2, val3, val4, val5, val6, val7, val8, val9);executed 127779 times by 199 tests: return method.invoke(obj, type, ret, val0, val1, val2, val3, val4, val5, val6, val7, val8, val9); Executed by:- tst_Gestures
- 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_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| 127779 |
1490 | } | - |
1491 | | - |
1492 | | - |
1493 | | - |
1494 | | - |
1495 | | - |
1496 | | - |
1497 | | - |
1498 | | - |
1499 | | - |
1500 | | - |
1501 | | - |
1502 | | - |
1503 | | - |
1504 | | - |
1505 | | - |
1506 | | - |
1507 | | - |
1508 | | - |
1509 | | - |
1510 | | - |
1511 | | - |
1512 | | - |
1513 | | - |
1514 | | - |
1515 | | - |
1516 | | - |
1517 | | - |
1518 | | - |
1519 | | - |
1520 | | - |
1521 | | - |
1522 | | - |
1523 | | - |
1524 | | - |
1525 | | - |
1526 | | - |
1527 | | - |
1528 | | - |
1529 | | - |
1530 | | - |
1531 | | - |
1532 | | - |
1533 | | - |
1534 | | - |
1535 | | - |
1536 | | - |
1537 | | - |
1538 | | - |
1539 | | - |
1540 | | - |
1541 | | - |
1542 | | - |
1543 | | - |
1544 | | - |
1545 | | - |
1546 | | - |
1547 | | - |
1548 | | - |
1549 | | - |
1550 | | - |
1551 | | - |
1552 | | - |
1553 | | - |
1554 | | - |
1555 | | - |
1556 | | - |
1557 | | - |
1558 | | - |
1559 | | - |
1560 | | - |
1561 | | - |
1562 | | - |
1563 | | - |
1564 | | - |
1565 | | - |
1566 | | - |
1567 | | - |
1568 | | - |
1569 | | - |
1570 | | - |
1571 | | - |
1572 | | - |
1573 | | - |
1574 | | - |
1575 | | - |
1576 | | - |
1577 | | - |
1578 | | - |
1579 | | - |
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 | | - |
1624 | | - |
1625 | | - |
1626 | | - |
1627 | | - |
1628 | | - |
1629 | | - |
1630 | | - |
1631 | | - |
1632 | | - |
1633 | | - |
1634 | | - |
1635 | | - |
1636 | | - |
1637 | | - |
1638 | | - |
1639 | | - |
1640 | | - |
1641 | | - |
1642 | | - |
1643 | | - |
1644 | | - |
1645 | | - |
1646 | | - |
1647 | | - |
1648 | | - |
1649 | | - |
1650 | QByteArray QMetaMethodPrivate::signature() const | - |
1651 | { | - |
1652 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
1653 | QByteArray result; | - |
1654 | result.reserve(256); | - |
1655 | result += name(); | - |
1656 | result += '('; | - |
1657 | QList<QByteArray> argTypes = parameterTypes(); | - |
1658 | for (int i = 0; i < argTypes.size(); ++i) {TRUE | evaluated 20364 times by 54 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAnimationGroup
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDialogButtonBox
- tst_QFileDialog2
- tst_QFileSystemWatcher
- tst_QFiledialog
- tst_QFtp
- tst_QFutureWatcher
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QIdentityProxyModel
- tst_QItemModel
- tst_QItemSelectionModel
- tst_QLineEdit
- tst_QMdiArea
- tst_QMetaMethod
- ...
| FALSE | evaluated 23420 times by 59 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAnimationGroup
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDBusThreading
- tst_QDialogButtonBox
- tst_QEventLoop
- tst_QFileDialog2
- tst_QFileSystemWatcher
- tst_QFiledialog
- tst_QFtp
- tst_QFutureWatcher
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QGuiEventLoop
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QIdentityProxyModel
- tst_QItemModel
- tst_QItemSelectionModel
- ...
|
| 20364-23420 |
1659 | if (i)TRUE | evaluated 6485 times by 23 testsEvaluated by:- tst_QAbstractItemModel
- tst_QAnimationGroup
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QIdentityProxyModel
- tst_QItemModel
- tst_QItemSelectionModel
- tst_QMdiArea
- tst_QMetaMethod
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QObject
- tst_QParallelAnimationGroup
- tst_QProcess
- tst_QPropertyAnimation
- tst_QSequentialAnimationGroup
- tst_QSignalSpy
- tst_QSortFilterProxyModel
- tst_QStringListModel
- tst_languageChange
| FALSE | evaluated 13879 times by 54 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAnimationGroup
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDialogButtonBox
- tst_QFileDialog2
- tst_QFileSystemWatcher
- tst_QFiledialog
- tst_QFtp
- tst_QFutureWatcher
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QIdentityProxyModel
- tst_QItemModel
- tst_QItemSelectionModel
- tst_QLineEdit
- tst_QMdiArea
- tst_QMetaMethod
- ...
|
| 6485-13879 |
1660 | result += ',';executed 6485 times by 23 tests: result += ','; Executed by:- tst_QAbstractItemModel
- tst_QAnimationGroup
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QIdentityProxyModel
- tst_QItemModel
- tst_QItemSelectionModel
- tst_QMdiArea
- tst_QMetaMethod
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QObject
- tst_QParallelAnimationGroup
- tst_QProcess
- tst_QPropertyAnimation
- tst_QSequentialAnimationGroup
- tst_QSignalSpy
- tst_QSortFilterProxyModel
- tst_QStringListModel
- tst_languageChange
| 6485 |
1661 | result += argTypes.at(i); | - |
1662 | }executed 20364 times by 54 tests: end of block Executed by:- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAnimationGroup
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDialogButtonBox
- tst_QFileDialog2
- tst_QFileSystemWatcher
- tst_QFiledialog
- tst_QFtp
- tst_QFutureWatcher
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QIdentityProxyModel
- tst_QItemModel
- tst_QItemSelectionModel
- tst_QLineEdit
- tst_QMdiArea
- tst_QMetaMethod
- ...
| 20364 |
1663 | result += ')'; | - |
1664 | return result;executed 23420 times by 59 tests: return result; Executed by:- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAnimationGroup
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDBusThreading
- tst_QDialogButtonBox
- tst_QEventLoop
- tst_QFileDialog2
- tst_QFileSystemWatcher
- tst_QFiledialog
- tst_QFtp
- tst_QFutureWatcher
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QGuiEventLoop
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QIdentityProxyModel
- tst_QItemModel
- tst_QItemSelectionModel
- ...
| 23420 |
1665 | } | - |
1666 | | - |
1667 | QByteArray QMetaMethodPrivate::name() const | - |
1668 | { | - |
1669 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
1670 | return stringData(mobj, mobj->d.data[handle]);executed 66136 times by 512 tests: return stringData(mobj, mobj->d.data[handle]); 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
- ...
| 66136 |
1671 | } | - |
1672 | | - |
1673 | int QMetaMethodPrivate::typesDataIndex() const | - |
1674 | { | - |
1675 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
1676 | return mobj->d.data[handle + 2];executed 69572 times by 746 tests: return mobj->d.data[handle + 2]; 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
- ...
| 69572 |
1677 | } | - |
1678 | | - |
1679 | const char *QMetaMethodPrivate::rawReturnTypeName() const | - |
1680 | { | - |
1681 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
1682 | uint typeInfo = mobj->d.data[typesDataIndex()]; | - |
1683 | if (typeInfo & IsUnresolvedType)TRUE | evaluated 35 times by 4 testsEvaluated by:- tst_QGraphicsProxyWidget
- tst_QMetaMethod
- tst_QMetaObject
- tst_QMetaObjectBuilder
| FALSE | evaluated 466 times by 8 testsEvaluated by:- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QMetaMethod
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QPlainTextEdit
- tst_QTextBrowser
- tst_QTextEdit
|
| 35-466 |
1684 | return rawStringData(mobj, typeInfo & TypeNameIndexMask);executed 35 times by 4 tests: return rawStringData(mobj, typeInfo & TypeNameIndexMask); Executed by:- tst_QGraphicsProxyWidget
- tst_QMetaMethod
- tst_QMetaObject
- tst_QMetaObjectBuilder
| 35 |
1685 | else | - |
1686 | return QMetaType::typeName(typeInfo);executed 466 times by 8 tests: return QMetaType::typeName(typeInfo); Executed by:- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QMetaMethod
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QPlainTextEdit
- tst_QTextBrowser
- tst_QTextEdit
| 466 |
1687 | } | - |
1688 | | - |
1689 | int QMetaMethodPrivate::returnType() const | - |
1690 | { | - |
1691 | return parameterType(-1);executed 21360 times by 509 tests: return parameterType(-1); 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
- ...
| 21360 |
1692 | } | - |
1693 | | - |
1694 | int QMetaMethodPrivate::parameterCount() const | - |
1695 | { | - |
1696 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
1697 | return mobj->d.data[handle + 1];executed 404521 times by 749 tests: return mobj->d.data[handle + 1]; 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
- ...
| 404521 |
1698 | } | - |
1699 | | - |
1700 | int QMetaMethodPrivate::parametersDataIndex() const | - |
1701 | { | - |
1702 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
1703 | return typesDataIndex() + 1;executed 69071 times by 746 tests: return typesDataIndex() + 1; 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
- ...
| 69071 |
1704 | } | - |
1705 | | - |
1706 | uint QMetaMethodPrivate::parameterTypeInfo(int index) const | - |
1707 | { | - |
1708 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
1709 | return mobj->d.data[parametersDataIndex() + index];executed 34238 times by 509 tests: return mobj->d.data[parametersDataIndex() + index]; 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
- ...
| 34238 |
1710 | } | - |
1711 | | - |
1712 | int QMetaMethodPrivate::parameterType(int index) const | - |
1713 | { | - |
1714 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
1715 | return typeFromTypeInfo(mobj, parameterTypeInfo(index));executed 34238 times by 509 tests: return typeFromTypeInfo(mobj, parameterTypeInfo(index)); 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
- ...
| 34238 |
1716 | } | - |
1717 | | - |
1718 | void QMetaMethodPrivate::getParameterTypes(int *types) const | - |
1719 | { | - |
1720 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
1721 | int dataIndex = parametersDataIndex(); | - |
1722 | int argc = parameterCount(); | - |
1723 | for (int i = 0; i < argc; ++i) {TRUE | evaluated 80 times by 1 test | FALSE | evaluated 42 times by 1 test |
| 42-80 |
1724 | int id = typeFromTypeInfo(mobj, mobj->d.data[dataIndex++]); | - |
1725 | *(types++) = id; | - |
1726 | }executed 80 times by 1 test: end of block | 80 |
1727 | }executed 42 times by 1 test: end of block | 42 |
1728 | | - |
1729 | QList<QByteArray> QMetaMethodPrivate::parameterTypes() const | - |
1730 | { | - |
1731 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
1732 | int argc = parameterCount(); | - |
1733 | QList<QByteArray> list; | - |
1734 | list.reserve(argc); | - |
1735 | int paramsIndex = parametersDataIndex(); | - |
1736 | for (int i = 0; i < argc; ++i)TRUE | evaluated 31690 times by 206 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_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- ...
| FALSE | evaluated 32393 times by 430 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_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- ...
|
| 31690-32393 |
1737 | list += typeNameFromTypeInfo(mobj, mobj->d.data[paramsIndex + i]);executed 31690 times by 206 tests: list += typeNameFromTypeInfo(mobj, mobj->d.data[paramsIndex + i]); 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_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- ...
| 31690 |
1738 | return list;executed 32393 times by 430 tests: return list; 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_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- ...
| 32393 |
1739 | } | - |
1740 | | - |
1741 | QList<QByteArray> QMetaMethodPrivate::parameterNames() const | - |
1742 | { | - |
1743 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
1744 | int argc = parameterCount(); | - |
1745 | QList<QByteArray> list; | - |
1746 | list.reserve(argc); | - |
1747 | int namesIndex = parametersDataIndex() + argc; | - |
1748 | for (int i = 0; i < argc; ++i)TRUE | evaluated 4316 times by 12 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusMetaObject
- tst_QDBusPendingCall
- tst_QMetaMethod
- tst_QMetaObjectBuilder
- tst_QObject
- tst_qdbusabstractadaptor - unknown status
- tst_qdbuscpp2xml
| FALSE | evaluated 2398 times by 14 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusMetaObject
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QMetaMethod
- tst_QMetaObjectBuilder
- tst_QObject
- tst_qdbusabstractadaptor - unknown status
- tst_qdbuscpp2xml
|
| 2398-4316 |
1749 | list += stringData(mobj, mobj->d.data[namesIndex + i]);executed 4316 times by 12 tests: list += stringData(mobj, mobj->d.data[namesIndex + i]); Executed by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusMetaObject
- tst_QDBusPendingCall
- tst_QMetaMethod
- tst_QMetaObjectBuilder
- tst_QObject
- tst_qdbusabstractadaptor - unknown status
- tst_qdbuscpp2xml
| 4316 |
1750 | return list;executed 2398 times by 14 tests: return list; Executed by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusMetaObject
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QMetaMethod
- tst_QMetaObjectBuilder
- tst_QObject
- tst_qdbusabstractadaptor - unknown status
- tst_qdbuscpp2xml
| 2398 |
1751 | } | - |
1752 | | - |
1753 | QByteArray QMetaMethodPrivate::tag() const | - |
1754 | { | - |
1755 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
1756 | return stringData(mobj, mobj->d.data[handle + 3]);executed 2806 times by 22 tests: return stringData(mobj, mobj->d.data[handle + 3]); Executed by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusMarshall
- tst_QDBusMetaObject
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDBusThreading
- tst_QMetaMethod
- tst_QMetaObjectBuilder
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuscpp2xml
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
| 2806 |
1757 | } | - |
1758 | | - |
1759 | int QMetaMethodPrivate::ownMethodIndex() const | - |
1760 | { | - |
1761 | | - |
1762 | return (handle - priv(mobj->d.data)->methodData) / 5;executed 314316 times by 536 tests: return (handle - priv(mobj->d.data)->methodData) / 5; 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
- ...
| 314316 |
1763 | } | - |
1764 | | - |
1765 | | - |
1766 | | - |
1767 | | - |
1768 | | - |
1769 | | - |
1770 | | - |
1771 | | - |
1772 | | - |
1773 | QByteArray QMetaMethod::methodSignature() const | - |
1774 | { | - |
1775 | if (!mobj)TRUE | evaluated 2 times by 1 test | FALSE | evaluated 23420 times by 59 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAnimationGroup
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDBusThreading
- tst_QDialogButtonBox
- tst_QEventLoop
- tst_QFileDialog2
- tst_QFileSystemWatcher
- tst_QFiledialog
- tst_QFtp
- tst_QFutureWatcher
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QGuiEventLoop
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QIdentityProxyModel
- tst_QItemModel
- tst_QItemSelectionModel
- ...
|
| 2-23420 |
1776 | return QByteArray();executed 2 times by 1 test: return QByteArray(); | 2 |
1777 | return QMetaMethodPrivate::get(this)->signature();executed 23420 times by 59 tests: return QMetaMethodPrivate::get(this)->signature(); Executed by:- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAnimationGroup
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDBusThreading
- tst_QDialogButtonBox
- tst_QEventLoop
- tst_QFileDialog2
- tst_QFileSystemWatcher
- tst_QFiledialog
- tst_QFtp
- tst_QFutureWatcher
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QGuiEventLoop
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QIdentityProxyModel
- tst_QItemModel
- tst_QItemSelectionModel
- ...
| 23420 |
1778 | } | - |
1779 | | - |
1780 | | - |
1781 | | - |
1782 | | - |
1783 | | - |
1784 | | - |
1785 | | - |
1786 | | - |
1787 | QByteArray QMetaMethod::name() const | - |
1788 | { | - |
1789 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 42716 times by 512 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-42716 |
1790 | return QByteArray(); never executed: return QByteArray(); | 0 |
1791 | return QMetaMethodPrivate::get(this)->name();executed 42716 times by 512 tests: return QMetaMethodPrivate::get(this)->name(); 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
- ...
| 42716 |
1792 | } | - |
1793 | | - |
1794 | | - |
1795 | | - |
1796 | | - |
1797 | | - |
1798 | | - |
1799 | | - |
1800 | | - |
1801 | | - |
1802 | | - |
1803 | | - |
1804 | int QMetaMethod::returnType() const | - |
1805 | { | - |
1806 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 21360 times by 509 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-21360 |
1807 | return QMetaType::UnknownType; never executed: return QMetaType::UnknownType; | 0 |
1808 | return QMetaMethodPrivate::get(this)->returnType();executed 21360 times by 509 tests: return QMetaMethodPrivate::get(this)->returnType(); 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
- ...
| 21360 |
1809 | } | - |
1810 | | - |
1811 | | - |
1812 | | - |
1813 | | - |
1814 | | - |
1815 | | - |
1816 | | - |
1817 | | - |
1818 | int QMetaMethod::parameterCount() const | - |
1819 | { | - |
1820 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 47214 times by 506 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-47214 |
1821 | return 0; never executed: return 0; | 0 |
1822 | return QMetaMethodPrivate::get(this)->parameterCount();executed 47214 times by 506 tests: return QMetaMethodPrivate::get(this)->parameterCount(); 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
- ...
| 47214 |
1823 | } | - |
1824 | | - |
1825 | | - |
1826 | | - |
1827 | | - |
1828 | | - |
1829 | | - |
1830 | | - |
1831 | | - |
1832 | | - |
1833 | | - |
1834 | | - |
1835 | int QMetaMethod::parameterType(int index) const | - |
1836 | { | - |
1837 | if (!mobj || index < 0)TRUE | never evaluated | FALSE | evaluated 12962 times by 97 testsEvaluated by:- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractSlider
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDBusMetaObject
- tst_QDBusServiceWatcher
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDial
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QDoubleValidator
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFileSystemWatcher
- ...
|
TRUE | evaluated 42 times by 1 test | FALSE | evaluated 12920 times by 97 testsEvaluated by:- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractSlider
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDBusMetaObject
- tst_QDBusServiceWatcher
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDial
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QDoubleValidator
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFileSystemWatcher
- ...
|
| 0-12962 |
1838 | return QMetaType::UnknownType;executed 42 times by 1 test: return QMetaType::UnknownType; | 42 |
1839 | if (index >= QMetaMethodPrivate::get(this)->parameterCount())TRUE | evaluated 42 times by 1 test | FALSE | evaluated 12878 times by 97 testsEvaluated by:- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractSlider
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDBusMetaObject
- tst_QDBusServiceWatcher
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDial
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QDoubleValidator
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFileSystemWatcher
- ...
|
| 42-12878 |
1840 | return QMetaType::UnknownType;executed 42 times by 1 test: return QMetaType::UnknownType; | 42 |
1841 | | - |
1842 | int type = QMetaMethodPrivate::get(this)->parameterType(index); | - |
1843 | if (type != QMetaType::UnknownType)TRUE | evaluated 12858 times by 96 testsEvaluated by:- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractSlider
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDBusMetaObject
- tst_QDBusServiceWatcher
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDial
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QDoubleValidator
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFileSystemWatcher
- ...
| FALSE | evaluated 20 times by 11 testsEvaluated by:- tst_QAbstractItemModel
- tst_QAction
- tst_QDBusMetaObject
- tst_QGraphicsItem
- tst_QItemModel
- tst_QItemSelectionModel
- tst_QMenuBar
- tst_QMetaMethod
- tst_QSequentialAnimationGroup
- tst_QSortFilterProxyModel
- tst_QStringListModel
|
| 20-12858 |
1844 | return type;executed 12858 times by 96 tests: return type; Executed by:- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractSlider
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QButtonGroup
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDBusMetaObject
- tst_QDBusServiceWatcher
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDial
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QDoubleValidator
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFileSystemWatcher
- ...
| 12858 |
1845 | | - |
1846 | void *argv[] = { &type, &index }; | - |
1847 | mobj->static_metacall(QMetaObject::RegisterMethodArgumentMetaType, QMetaMethodPrivate::get(this)->ownMethodIndex(), argv); | - |
1848 | if (type != -1)TRUE | evaluated 16 times by 10 testsEvaluated by:- tst_QAbstractItemModel
- tst_QAction
- tst_QDBusMetaObject
- tst_QGraphicsItem
- tst_QItemModel
- tst_QItemSelectionModel
- tst_QMenuBar
- tst_QSequentialAnimationGroup
- tst_QSortFilterProxyModel
- tst_QStringListModel
| FALSE | evaluated 4 times by 1 test |
| 4-16 |
1849 | return type;executed 16 times by 10 tests: return type; Executed by:- tst_QAbstractItemModel
- tst_QAction
- tst_QDBusMetaObject
- tst_QGraphicsItem
- tst_QItemModel
- tst_QItemSelectionModel
- tst_QMenuBar
- tst_QSequentialAnimationGroup
- tst_QSortFilterProxyModel
- tst_QStringListModel
| 16 |
1850 | return QMetaType::UnknownType;executed 4 times by 1 test: return QMetaType::UnknownType; | 4 |
1851 | } | - |
1852 | | - |
1853 | | - |
1854 | | - |
1855 | | - |
1856 | | - |
1857 | | - |
1858 | | - |
1859 | | - |
1860 | | - |
1861 | | - |
1862 | void QMetaMethod::getParameterTypes(int *types) const | - |
1863 | { | - |
1864 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 42 times by 1 test |
| 0-42 |
1865 | return; never executed: return; | 0 |
1866 | QMetaMethodPrivate::get(this)->getParameterTypes(types); | - |
1867 | }executed 42 times by 1 test: end of block | 42 |
1868 | | - |
1869 | | - |
1870 | | - |
1871 | | - |
1872 | | - |
1873 | | - |
1874 | QList<QByteArray> QMetaMethod::parameterTypes() const | - |
1875 | { | - |
1876 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 8973 times by 413 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-8973 |
1877 | return QList<QByteArray>(); never executed: return QList<QByteArray>(); | 0 |
1878 | return QMetaMethodPrivate::get(this)->parameterTypes();executed 8973 times by 413 tests: return QMetaMethodPrivate::get(this)->parameterTypes(); 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
- ...
| 8973 |
1879 | } | - |
1880 | | - |
1881 | | - |
1882 | | - |
1883 | | - |
1884 | | - |
1885 | | - |
1886 | QList<QByteArray> QMetaMethod::parameterNames() const | - |
1887 | { | - |
1888 | QList<QByteArray> list; | - |
1889 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 2398 times by 14 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusMetaObject
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QMetaMethod
- tst_QMetaObjectBuilder
- tst_QObject
- tst_qdbusabstractadaptor - unknown status
- tst_qdbuscpp2xml
|
| 0-2398 |
1890 | return list; never executed: return list; | 0 |
1891 | return QMetaMethodPrivate::get(this)->parameterNames();executed 2398 times by 14 tests: return QMetaMethodPrivate::get(this)->parameterNames(); Executed by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusMetaObject
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QMetaMethod
- tst_QMetaObjectBuilder
- tst_QObject
- tst_qdbusabstractadaptor - unknown status
- tst_qdbuscpp2xml
| 2398 |
1892 | } | - |
1893 | | - |
1894 | | - |
1895 | | - |
1896 | | - |
1897 | | - |
1898 | | - |
1899 | | - |
1900 | const char *QMetaMethod::typeName() const | - |
1901 | { | - |
1902 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 501 times by 9 testsEvaluated by:- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QGraphicsProxyWidget
- tst_QMetaMethod
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QPlainTextEdit
- tst_QTextBrowser
- tst_QTextEdit
|
| 0-501 |
1903 | return 0; never executed: return 0; | 0 |
1904 | return QMetaMethodPrivate::get(this)->rawReturnTypeName();executed 501 times by 9 tests: return QMetaMethodPrivate::get(this)->rawReturnTypeName(); Executed by:- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QGraphicsProxyWidget
- tst_QMetaMethod
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QPlainTextEdit
- tst_QTextBrowser
- tst_QTextEdit
| 501 |
1905 | } | - |
1906 | | - |
1907 | | - |
1908 | | - |
1909 | | - |
1910 | | - |
1911 | | - |
1912 | | - |
1913 | | - |
1914 | | - |
1915 | | - |
1916 | | - |
1917 | | - |
1918 | | - |
1919 | | - |
1920 | | - |
1921 | | - |
1922 | | - |
1923 | | - |
1924 | | - |
1925 | | - |
1926 | | - |
1927 | | - |
1928 | | - |
1929 | | - |
1930 | | - |
1931 | | - |
1932 | | - |
1933 | | - |
1934 | | - |
1935 | | - |
1936 | | - |
1937 | | - |
1938 | | - |
1939 | | - |
1940 | | - |
1941 | | - |
1942 | | - |
1943 | | - |
1944 | | - |
1945 | | - |
1946 | | - |
1947 | | - |
1948 | const char *QMetaMethod::tag() const | - |
1949 | { | - |
1950 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 2806 times by 22 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusMarshall
- tst_QDBusMetaObject
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDBusThreading
- tst_QMetaMethod
- tst_QMetaObjectBuilder
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuscpp2xml
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
|
| 0-2806 |
1951 | return 0; never executed: return 0; | 0 |
1952 | return QMetaMethodPrivate::get(this)->tag().constData();executed 2806 times by 22 tests: return QMetaMethodPrivate::get(this)->tag().constData(); Executed by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusMarshall
- tst_QDBusMetaObject
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDBusThreading
- tst_QMetaMethod
- tst_QMetaObjectBuilder
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuscpp2xml
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
| 2806 |
1953 | } | - |
1954 | | - |
1955 | | - |
1956 | | - |
1957 | | - |
1958 | | - |
1959 | int QMetaMethod::attributes() const | - |
1960 | { | - |
1961 | if (!mobj)TRUE | evaluated 3 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QObject
| FALSE | evaluated 1148524 times by 266 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
- ...
|
| 3-1148524 |
1962 | return false;executed 3 times by 2 tests: return false; Executed by:- tst_QMetaObject
- tst_QObject
| 3 |
1963 | return ((mobj->d.data[handle + 4])>>4);executed 1148524 times by 266 tests: return ((mobj->d.data[handle + 4])>>4); 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
- ...
| 1148524 |
1964 | } | - |
1965 | | - |
1966 | | - |
1967 | | - |
1968 | | - |
1969 | | - |
1970 | | - |
1971 | int QMetaMethod::methodIndex() const | - |
1972 | { | - |
1973 | if (!mobj)TRUE | evaluated 4 times by 1 testEvaluated by:- tst_QDBusAbstractInterface
| FALSE | evaluated 4722 times by 89 testsEvaluated by:- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAccessibility
- tst_QAnimationGroup
- tst_QApplication
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusThreading
- tst_QDataWidgetMapper
- tst_QDialogButtonBox
- tst_QErrorMessage
- tst_QEventLoop
- tst_QFileDialog2
- tst_QFileSystemWatcher
- tst_QFutureWatcher
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QGuiEventLoop
- ...
|
| 4-4722 |
1974 | return -1;executed 4 times by 1 test: return -1; Executed by:- tst_QDBusAbstractInterface
| 4 |
1975 | return QMetaMethodPrivate::get(this)->ownMethodIndex() + mobj->methodOffset();executed 4722 times by 89 tests: return QMetaMethodPrivate::get(this)->ownMethodIndex() + mobj->methodOffset(); Executed by:- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAccessibility
- tst_QAnimationGroup
- tst_QApplication
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusThreading
- tst_QDataWidgetMapper
- tst_QDialogButtonBox
- tst_QErrorMessage
- tst_QEventLoop
- tst_QFileDialog2
- tst_QFileSystemWatcher
- tst_QFutureWatcher
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QGuiEventLoop
- ...
| 4722 |
1976 | } | - |
1977 | | - |
1978 | | - |
1979 | | - |
1980 | | - |
1981 | | - |
1982 | | - |
1983 | | - |
1984 | int QMetaMethod::revision() const | - |
1985 | { | - |
1986 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 222 times by 1 test |
| 0-222 |
1987 | return 0; never executed: return 0; | 0 |
1988 | if ((QMetaMethod::Access)(mobj->d.data[handle + 4] & MethodRevisioned)) {TRUE | evaluated 7 times by 1 test | FALSE | evaluated 215 times by 1 test |
| 7-215 |
1989 | int offset = priv(mobj->d.data)->methodData | - |
1990 | + priv(mobj->d.data)->methodCount * 5 | - |
1991 | + QMetaMethodPrivate::get(this)->ownMethodIndex(); | - |
1992 | return mobj->d.data[offset];executed 7 times by 1 test: return mobj->d.data[offset]; | 7 |
1993 | } | - |
1994 | return 0;executed 215 times by 1 test: return 0; | 215 |
1995 | } | - |
1996 | | - |
1997 | | - |
1998 | | - |
1999 | | - |
2000 | | - |
2001 | | - |
2002 | | - |
2003 | | - |
2004 | | - |
2005 | | - |
2006 | | - |
2007 | QMetaMethod::Access QMetaMethod::access() const | - |
2008 | { | - |
2009 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 30759 times by 510 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-30759 |
2010 | return Private; never executed: return Private; | 0 |
2011 | return (QMetaMethod::Access)(mobj->d.data[handle + 4] & AccessMask);executed 30759 times by 510 tests: return (QMetaMethod::Access)(mobj->d.data[handle + 4] & AccessMask); 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
- ...
| 30759 |
2012 | } | - |
2013 | | - |
2014 | | - |
2015 | | - |
2016 | | - |
2017 | | - |
2018 | | - |
2019 | QMetaMethod::MethodType QMetaMethod::methodType() const | - |
2020 | { | - |
2021 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 32913 times by 509 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-32913 |
2022 | return QMetaMethod::Method; never executed: return QMetaMethod::Method; | 0 |
2023 | return (QMetaMethod::MethodType)((mobj->d.data[handle + 4] & MethodTypeMask)>>2);executed 32913 times by 509 tests: return (QMetaMethod::MethodType)((mobj->d.data[handle + 4] & MethodTypeMask)>>2); 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
- ...
| 32913 |
2024 | } | - |
2025 | | - |
2026 | | - |
2027 | | - |
2028 | | - |
2029 | | - |
2030 | | - |
2031 | | - |
2032 | | - |
2033 | | - |
2034 | | - |
2035 | | - |
2036 | | - |
2037 | | - |
2038 | | - |
2039 | | - |
2040 | | - |
2041 | | - |
2042 | | - |
2043 | | - |
2044 | | - |
2045 | | - |
2046 | QMetaMethod QMetaMethod::fromSignalImpl(const QMetaObject *metaObject, void **signal) | - |
2047 | { | - |
2048 | int i = -1; | - |
2049 | void *args[] = { &i, signal }; | - |
2050 | QMetaMethod result; | - |
2051 | for (const QMetaObject *m = metaObject; m; m = m->d.superdata) {TRUE | evaluated 5528 times by 195 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_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 2 times by 1 test |
| 2-5528 |
2052 | m->static_metacall(QMetaObject::IndexOfMethod, 0, args); | - |
2053 | if (i >= 0) {TRUE | evaluated 5525 times by 195 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_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 3 times by 1 test |
| 3-5525 |
2054 | result.mobj = m; | - |
2055 | result.handle = priv(m->d.data)->methodData + 5*i; | - |
2056 | break;executed 5525 times by 195 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_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| 5525 |
2057 | } | - |
2058 | }executed 3 times by 1 test: end of block | 3 |
2059 | return result;executed 5527 times by 195 tests: return result; 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_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| 5527 |
2060 | } | - |
2061 | | - |
2062 | | - |
2063 | | - |
2064 | | - |
2065 | | - |
2066 | | - |
2067 | | - |
2068 | | - |
2069 | | - |
2070 | | - |
2071 | | - |
2072 | | - |
2073 | | - |
2074 | | - |
2075 | | - |
2076 | | - |
2077 | | - |
2078 | | - |
2079 | | - |
2080 | | - |
2081 | | - |
2082 | | - |
2083 | | - |
2084 | | - |
2085 | | - |
2086 | | - |
2087 | | - |
2088 | | - |
2089 | | - |
2090 | | - |
2091 | | - |
2092 | | - |
2093 | | - |
2094 | | - |
2095 | | - |
2096 | | - |
2097 | | - |
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 | bool QMetaMethod::invoke(QObject *object, | - |
2131 | Qt::ConnectionType connectionType, | - |
2132 | QGenericReturnArgument returnValue, | - |
2133 | QGenericArgument val0, | - |
2134 | QGenericArgument val1, | - |
2135 | QGenericArgument val2, | - |
2136 | QGenericArgument val3, | - |
2137 | QGenericArgument val4, | - |
2138 | QGenericArgument val5, | - |
2139 | QGenericArgument val6, | - |
2140 | QGenericArgument val7, | - |
2141 | QGenericArgument val8, | - |
2142 | QGenericArgument val9) const | - |
2143 | { | - |
2144 | if (!object || !mobj)TRUE | evaluated 2 times by 1 test | FALSE | evaluated 309555 times by 515 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 3 times by 1 test | FALSE | evaluated 309552 times by 515 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
- ...
|
| 2-309555 |
2145 | return false;executed 5 times by 1 test: return false; | 5 |
2146 | | - |
2147 | Q_ASSERT(mobj->cast(object)); | - |
2148 | | - |
2149 | | - |
2150 | if (returnValue.data()) {TRUE | evaluated 114 times by 7 testsEvaluated by:- tst_QDBusInterface
- tst_QGraphicsProxyWidget
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QPlainTextEdit
- tst_QTextBrowser
- tst_QTextEdit
| FALSE | evaluated 309438 times by 515 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
- ...
|
| 114-309438 |
2151 | const char *retType = typeName(); | - |
2152 | if (qstrcmp(returnValue.name(), retType) != 0) {TRUE | evaluated 6 times by 1 test | FALSE | evaluated 108 times by 7 testsEvaluated by:- tst_QDBusInterface
- tst_QGraphicsProxyWidget
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QPlainTextEdit
- tst_QTextBrowser
- tst_QTextEdit
|
| 6-108 |
2153 | | - |
2154 | QByteArray normalized = QMetaObject::normalizedType(returnValue.name()); | - |
2155 | if (qstrcmp(normalized.constData(), retType) != 0) {TRUE | evaluated 2 times by 1 test | FALSE | evaluated 4 times by 1 test |
| 2-4 |
2156 | | - |
2157 | int t = returnType(); | - |
2158 | if (t == QMetaType::UnknownType || t != QMetaType::type(normalized))TRUE | never evaluated | FALSE | evaluated 2 times by 1 test |
TRUE | evaluated 1 time by 1 test | FALSE | evaluated 1 time by 1 test |
| 0-2 |
2159 | return false;executed 1 time by 1 test: return false; | 1 |
2160 | }executed 1 time by 1 test: end of block | 1 |
2161 | }executed 5 times by 1 test: end of block | 5 |
2162 | }executed 113 times by 7 tests: end of block Executed by:- tst_QDBusInterface
- tst_QGraphicsProxyWidget
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QPlainTextEdit
- tst_QTextBrowser
- tst_QTextEdit
| 113 |
2163 | | - |
2164 | | - |
2165 | const char *typeNames[] = { | - |
2166 | returnValue.name(), | - |
2167 | val0.name(), | - |
2168 | val1.name(), | - |
2169 | val2.name(), | - |
2170 | val3.name(), | - |
2171 | val4.name(), | - |
2172 | val5.name(), | - |
2173 | val6.name(), | - |
2174 | val7.name(), | - |
2175 | val8.name(), | - |
2176 | val9.name() | - |
2177 | }; | - |
2178 | int paramCount; | - |
2179 | for (paramCount = 1; paramCount < MaximumParamCount; ++paramCount) {TRUE | evaluated 372126 times by 515 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-372126 |
2180 | if (qstrlen(typeNames[paramCount]) <= 0)TRUE | evaluated 309551 times by 515 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 62575 times by 25 testsEvaluated by:- tst_QAbstractItemModel
- tst_QDBusInterface
- tst_QEventLoop
- tst_QGraphicsProxyWidget
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QGuiEventLoop
- tst_QItemDelegate
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QNetworkReply
- tst_QObject
- tst_QPlainTextEdit
- tst_QPropertyAnimation
- tst_QStateMachine
- tst_QTableView
- tst_QTcpSocket
- tst_QTextBrowser
- tst_QTextEdit
- tst_QThread
- tst_QTimer
- tst_QTreeWidget
- tst_QXmlStream
- tst_Spdy
- tst_qdesktopservices
|
| 62575-309551 |
2181 | break;executed 309551 times by 515 tests: break; 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
- ...
| 309551 |
2182 | }executed 62575 times by 25 tests: end of block Executed by:- tst_QAbstractItemModel
- tst_QDBusInterface
- tst_QEventLoop
- tst_QGraphicsProxyWidget
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QGuiEventLoop
- tst_QItemDelegate
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QNetworkReply
- tst_QObject
- tst_QPlainTextEdit
- tst_QPropertyAnimation
- tst_QStateMachine
- tst_QTableView
- tst_QTcpSocket
- tst_QTextBrowser
- tst_QTextEdit
- tst_QThread
- tst_QTimer
- tst_QTreeWidget
- tst_QXmlStream
- tst_Spdy
- tst_qdesktopservices
| 62575 |
2183 | if (paramCount <= QMetaMethodPrivate::get(this)->parameterCount())TRUE | evaluated 1 time by 1 test | FALSE | evaluated 309550 times by 515 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
- ...
|
| 1-309550 |
2184 | return false;executed 1 time by 1 test: return false; | 1 |
2185 | | - |
2186 | | - |
2187 | QThread *currentThread = QThread::currentThread(); | - |
2188 | QThread *objectThread = object->thread(); | - |
2189 | if (connectionType == Qt::AutoConnection) {TRUE | evaluated 12592 times by 77 testsEvaluated by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QComboBox
- tst_QCompleter
- tst_QDBusInterface
- tst_QDBusThreading
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QHeaderView
- tst_QHostInfo
- ...
| FALSE | evaluated 296958 times by 513 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
- ...
|
| 12592-296958 |
2190 | connectionType = currentThread == objectThreadTRUE | evaluated 12527 times by 76 testsEvaluated by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QComboBox
- tst_QCompleter
- tst_QDBusInterface
- tst_QDBusThreading
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QHeaderView
- tst_QHostInfo
- ...
| FALSE | evaluated 65 times by 18 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_QNetworkSession
- tst_QStateMachine
- tst_QTcpServer
- tst_QUdpSocket
- tst_QXmlInputSource
- tst_QXmlStream
|
| 65-12527 |
2191 | ? Qt::DirectConnection | - |
2192 | : Qt::QueuedConnection; | - |
2193 | }executed 12592 times by 77 tests: end of block Executed by:- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QComboBox
- tst_QCompleter
- tst_QDBusInterface
- tst_QDBusThreading
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QHeaderView
- tst_QHostInfo
- ...
| 12592 |
2194 | | - |
2195 | #ifdef QT_NO_THREAD | - |
2196 | if (connectionType == Qt::BlockingQueuedConnection) { | - |
2197 | connectionType = Qt::DirectConnection; | - |
2198 | } | - |
2199 | #endif | - |
2200 | | - |
2201 | | - |
2202 | void *param[] = { | - |
2203 | returnValue.data(), | - |
2204 | val0.data(), | - |
2205 | val1.data(), | - |
2206 | val2.data(), | - |
2207 | val3.data(), | - |
2208 | val4.data(), | - |
2209 | val5.data(), | - |
2210 | val6.data(), | - |
2211 | val7.data(), | - |
2212 | val8.data(), | - |
2213 | val9.data() | - |
2214 | }; | - |
2215 | int idx_relative = QMetaMethodPrivate::get(this)->ownMethodIndex(); | - |
2216 | int idx_offset = mobj->methodOffset(); | - |
2217 | Q_ASSERT(QMetaObjectPrivate::get(mobj)->revision >= 6); | - |
2218 | QObjectPrivate::StaticMetaCallFunction callFunction = mobj->d.static_metacall; | - |
2219 | | - |
2220 | if (connectionType == Qt::DirectConnection) {TRUE | evaluated 191102 times by 509 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 118448 times by 191 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_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
| 118448-191102 |
2221 | if (callFunction) {TRUE | evaluated 191086 times by 509 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 16 times by 1 test |
| 16-191086 |
2222 | callFunction(object, QMetaObject::InvokeMetaMethod, idx_relative, param); | - |
2223 | return true;executed 191003 times by 509 tests: return true; 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
- ...
| 191003 |
2224 | } else { | - |
2225 | return QMetaObject::metacall(object, QMetaObject::InvokeMetaMethod, idx_relative + idx_offset, param) < 0;executed 16 times by 1 test: return QMetaObject::metacall(object, QMetaObject::InvokeMetaMethod, idx_relative + idx_offset, param) < 0; | 16 |
2226 | } | - |
2227 | } else if (connectionType == Qt::QueuedConnection) {TRUE | evaluated 118388 times by 191 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_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 60 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
|
| 60-118388 |
2228 | if (returnValue.data()) {TRUE | evaluated 1 time by 1 test | FALSE | evaluated 118387 times by 191 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_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
| 1-118387 |
2229 | qWarning("QMetaMethod::invoke: Unable to invoke methods with return values in " | - |
2230 | "queued connections"); | - |
2231 | return false;executed 1 time by 1 test: return false; | 1 |
2232 | } | - |
2233 | | - |
2234 | int nargs = 1; | - |
2235 | void **args = (void **) malloc(paramCount * sizeof(void *)); | - |
2236 | Q_CHECK_PTR(args); never executed: qBadAlloc(); TRUE | never evaluated | FALSE | evaluated 118387 times by 191 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_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
| 0-118387 |
2237 | int *types = (int *) malloc(paramCount * sizeof(int)); | - |
2238 | Q_CHECK_PTR(types); never executed: qBadAlloc(); TRUE | never evaluated | FALSE | evaluated 118387 times by 191 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_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
| 0-118387 |
2239 | types[0] = 0; | - |
2240 | args[0] = 0; | - |
2241 | | - |
2242 | for (int i = 1; i < paramCount; ++i) {TRUE | evaluated 62245 times by 15 testsEvaluated by:- tst_QEventLoop
- tst_QGuiEventLoop
- tst_QItemDelegate
- tst_QMetaObject
- tst_QNetworkReply
- tst_QObject
- tst_QPropertyAnimation
- tst_QStateMachine
- tst_QTableView
- tst_QTcpSocket
- tst_QThread
- tst_QTimer
- tst_QTreeWidget
- tst_QXmlStream
- tst_Spdy
| FALSE | evaluated 118386 times by 191 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_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
| 62245-118386 |
2243 | types[i] = QMetaType::type(typeNames[i]); | - |
2244 | if (types[i] != QMetaType::UnknownType) {TRUE | evaluated 62244 times by 15 testsEvaluated by:- tst_QEventLoop
- tst_QGuiEventLoop
- tst_QItemDelegate
- tst_QMetaObject
- tst_QNetworkReply
- tst_QObject
- tst_QPropertyAnimation
- tst_QStateMachine
- tst_QTableView
- tst_QTcpSocket
- tst_QThread
- tst_QTimer
- tst_QTreeWidget
- tst_QXmlStream
- tst_Spdy
| FALSE | evaluated 1 time by 1 test |
| 1-62244 |
2245 | args[i] = QMetaType::create(types[i], param[i]); | - |
2246 | ++nargs; | - |
2247 | } else if (param[i]) {executed 62244 times by 15 tests: end of block Executed by:- tst_QEventLoop
- tst_QGuiEventLoop
- tst_QItemDelegate
- tst_QMetaObject
- tst_QNetworkReply
- tst_QObject
- tst_QPropertyAnimation
- tst_QStateMachine
- tst_QTableView
- tst_QTcpSocket
- tst_QThread
- tst_QTimer
- tst_QTreeWidget
- tst_QXmlStream
- tst_Spdy
TRUE | evaluated 1 time by 1 test | FALSE | never evaluated |
| 0-62244 |
2248 | | - |
2249 | void *argv[] = { &types[i], &i }; | - |
2250 | QMetaObject::metacall(object, QMetaObject::RegisterMethodArgumentMetaType, | - |
2251 | idx_relative + idx_offset, argv); | - |
2252 | if (types[i] == -1) {TRUE | evaluated 1 time by 1 test | FALSE | never evaluated |
| 0-1 |
2253 | qWarning("QMetaMethod::invoke: Unable to handle unregistered datatype '%s'", | - |
2254 | typeNames[i]); | - |
2255 | for (int x = 1; x < i; ++x) {TRUE | never evaluated | FALSE | evaluated 1 time by 1 test |
| 0-1 |
2256 | if (types[x] && args[x])TRUE | never evaluated | FALSE | never evaluated |
TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2257 | QMetaType::destroy(types[x], args[x]); never executed: QMetaType::destroy(types[x], args[x]); | 0 |
2258 | } never executed: end of block | 0 |
2259 | free(types); | - |
2260 | free(args); | - |
2261 | return false;executed 1 time by 1 test: return false; | 1 |
2262 | } | - |
2263 | } never executed: end of block | 0 |
2264 | }executed 62244 times by 15 tests: end of block Executed by:- tst_QEventLoop
- tst_QGuiEventLoop
- tst_QItemDelegate
- tst_QMetaObject
- tst_QNetworkReply
- tst_QObject
- tst_QPropertyAnimation
- tst_QStateMachine
- tst_QTableView
- tst_QTcpSocket
- tst_QThread
- tst_QTimer
- tst_QTreeWidget
- tst_QXmlStream
- tst_Spdy
| 62244 |
2265 | | - |
2266 | QCoreApplication::postEvent(object, new QMetaCallEvent(idx_offset, idx_relative, callFunction, | - |
2267 | 0, -1, nargs, types, args)); | - |
2268 | } else { executed 118386 times by 191 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_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| 118386 |
2269 | #ifndef QT_NO_THREAD | - |
2270 | if (currentThread == objectThread) {TRUE | never evaluated | FALSE | evaluated 60 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
|
| 0-60 |
2271 | qWarning("QMetaMethod::invoke: Dead lock detected in " | - |
2272 | "BlockingQueuedConnection: Receiver is %s(%p)", | - |
2273 | mobj->className(), object); | - |
2274 | } never executed: end of block | 0 |
2275 | | - |
2276 | QSemaphore semaphore; | - |
2277 | QCoreApplication::postEvent(object, new QMetaCallEvent(idx_offset, idx_relative, callFunction, | - |
2278 | 0, -1, 0, 0, param, &semaphore)); | - |
2279 | semaphore.acquire(); | - |
2280 | #endif // QT_NO_THREAD | - |
2281 | }executed 60 times by 18 tests: end of block 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
| 60 |
2282 | return true;executed 118446 times by 191 tests: return true; 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_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| 118446 |
2283 | } | - |
2284 | | - |
2285 | | - |
2286 | | - |
2287 | | - |
2288 | | - |
2289 | | - |
2290 | | - |
2291 | | - |
2292 | | - |
2293 | | - |
2294 | | - |
2295 | | - |
2296 | | - |
2297 | | - |
2298 | | - |
2299 | | - |
2300 | | - |
2301 | | - |
2302 | | - |
2303 | | - |
2304 | | - |
2305 | | - |
2306 | | - |
2307 | | - |
2308 | | - |
2309 | | - |
2310 | | - |
2311 | | - |
2312 | | - |
2313 | | - |
2314 | | - |
2315 | | - |
2316 | | - |
2317 | | - |
2318 | | - |
2319 | | - |
2320 | | - |
2321 | | - |
2322 | | - |
2323 | | - |
2324 | | - |
2325 | | - |
2326 | | - |
2327 | | - |
2328 | | - |
2329 | | - |
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 | | - |
2358 | | - |
2359 | | - |
2360 | | - |
2361 | bool QMetaMethod::invokeOnGadget(void* gadget, QGenericReturnArgument returnValue, QGenericArgument val0, QGenericArgument val1, QGenericArgument val2, QGenericArgument val3, QGenericArgument val4, QGenericArgument val5, QGenericArgument val6, QGenericArgument val7, QGenericArgument val8, QGenericArgument val9) const | - |
2362 | { | - |
2363 | if (!gadget || !mobj)TRUE | evaluated 2 times by 1 test | FALSE | evaluated 3 times by 1 test |
TRUE | never evaluated | FALSE | evaluated 3 times by 1 test |
| 0-3 |
2364 | return false;executed 2 times by 1 test: return false; | 2 |
2365 | | - |
2366 | | - |
2367 | if (returnValue.data()) {TRUE | evaluated 2 times by 1 test | FALSE | evaluated 1 time by 1 test |
| 1-2 |
2368 | const char *retType = typeName(); | - |
2369 | if (qstrcmp(returnValue.name(), retType) != 0) {TRUE | never evaluated | FALSE | evaluated 2 times by 1 test |
| 0-2 |
2370 | | - |
2371 | QByteArray normalized = QMetaObject::normalizedType(returnValue.name()); | - |
2372 | if (qstrcmp(normalized.constData(), retType) != 0) {TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2373 | | - |
2374 | int t = returnType(); | - |
2375 | if (t == QMetaType::UnknownType || t != QMetaType::type(normalized))TRUE | never evaluated | FALSE | never evaluated |
TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2376 | return false; never executed: return false; | 0 |
2377 | } never executed: end of block | 0 |
2378 | } never executed: end of block | 0 |
2379 | }executed 2 times by 1 test: end of block | 2 |
2380 | | - |
2381 | | - |
2382 | const char *typeNames[] = { | - |
2383 | returnValue.name(), | - |
2384 | val0.name(), | - |
2385 | val1.name(), | - |
2386 | val2.name(), | - |
2387 | val3.name(), | - |
2388 | val4.name(), | - |
2389 | val5.name(), | - |
2390 | val6.name(), | - |
2391 | val7.name(), | - |
2392 | val8.name(), | - |
2393 | val9.name() | - |
2394 | }; | - |
2395 | int paramCount; | - |
2396 | for (paramCount = 1; paramCount < MaximumParamCount; ++paramCount) {TRUE | evaluated 4 times by 1 test | FALSE | never evaluated |
| 0-4 |
2397 | if (qstrlen(typeNames[paramCount]) <= 0)TRUE | evaluated 3 times by 1 test | FALSE | evaluated 1 time by 1 test |
| 1-3 |
2398 | break;executed 3 times by 1 test: break; | 3 |
2399 | }executed 1 time by 1 test: end of block | 1 |
2400 | if (paramCount <= QMetaMethodPrivate::get(this)->parameterCount())TRUE | never evaluated | FALSE | evaluated 3 times by 1 test |
| 0-3 |
2401 | return false; never executed: return false; | 0 |
2402 | | - |
2403 | | - |
2404 | void *param[] = { | - |
2405 | returnValue.data(), | - |
2406 | val0.data(), | - |
2407 | val1.data(), | - |
2408 | val2.data(), | - |
2409 | val3.data(), | - |
2410 | val4.data(), | - |
2411 | val5.data(), | - |
2412 | val6.data(), | - |
2413 | val7.data(), | - |
2414 | val8.data(), | - |
2415 | val9.data() | - |
2416 | }; | - |
2417 | int idx_relative = QMetaMethodPrivate::get(this)->ownMethodIndex(); | - |
2418 | Q_ASSERT(QMetaObjectPrivate::get(mobj)->revision >= 6); | - |
2419 | QObjectPrivate::StaticMetaCallFunction callFunction = mobj->d.static_metacall; | - |
2420 | if (!callFunction)TRUE | never evaluated | FALSE | evaluated 3 times by 1 test |
| 0-3 |
2421 | return false; never executed: return false; | 0 |
2422 | callFunction(reinterpret_cast<QObject*>(gadget), QMetaObject::InvokeMetaMethod, idx_relative, param); | - |
2423 | return true;executed 3 times by 1 test: return true; | 3 |
2424 | } | - |
2425 | | - |
2426 | | - |
2427 | | - |
2428 | | - |
2429 | | - |
2430 | | - |
2431 | | - |
2432 | | - |
2433 | | - |
2434 | | - |
2435 | | - |
2436 | | - |
2437 | | - |
2438 | | - |
2439 | | - |
2440 | | - |
2441 | | - |
2442 | | - |
2443 | | - |
2444 | | - |
2445 | | - |
2446 | | - |
2447 | | - |
2448 | | - |
2449 | | - |
2450 | | - |
2451 | | - |
2452 | | - |
2453 | | - |
2454 | | - |
2455 | | - |
2456 | | - |
2457 | | - |
2458 | | - |
2459 | | - |
2460 | | - |
2461 | | - |
2462 | | - |
2463 | | - |
2464 | | - |
2465 | | - |
2466 | | - |
2467 | | - |
2468 | | - |
2469 | | - |
2470 | | - |
2471 | | - |
2472 | | - |
2473 | | - |
2474 | | - |
2475 | | - |
2476 | | - |
2477 | | - |
2478 | | - |
2479 | | - |
2480 | | - |
2481 | | - |
2482 | | - |
2483 | | - |
2484 | | - |
2485 | | - |
2486 | | - |
2487 | | - |
2488 | | - |
2489 | | - |
2490 | | - |
2491 | | - |
2492 | | - |
2493 | | - |
2494 | | - |
2495 | const char *QMetaEnum::name() const | - |
2496 | { | - |
2497 | if (!mobj)TRUE | evaluated 21208 times by 50 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QHeaderView
- tst_QItemDelegate
- tst_QItemModel
- tst_QItemView
- tst_QListView
- tst_QListWidget
- ...
| FALSE | evaluated 497 times by 17 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractSpinBox
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMetaEnum
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QObject
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
- tst_QVariant
- tst_QWidget
|
| 497-21208 |
2498 | return 0;executed 21208 times by 50 tests: return 0; Executed by:- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QHeaderView
- tst_QItemDelegate
- tst_QItemModel
- tst_QItemView
- tst_QListView
- tst_QListWidget
- ...
| 21208 |
2499 | return rawStringData(mobj, mobj->d.data[handle]);executed 497 times by 17 tests: return rawStringData(mobj, mobj->d.data[handle]); Executed by:- tst_QAbstractItemView
- tst_QAbstractSpinBox
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QItemDelegate
- tst_QItemView
- tst_QListWidget
- tst_QMetaEnum
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QObject
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
- tst_QVariant
- tst_QWidget
| 497 |
2500 | } | - |
2501 | | - |
2502 | | - |
2503 | | - |
2504 | | - |
2505 | | - |
2506 | | - |
2507 | int QMetaEnum::keyCount() const | - |
2508 | { | - |
2509 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 27 times by 2 testsEvaluated by:- tst_QMetaEnum
- tst_QMetaObjectBuilder
|
| 0-27 |
2510 | return 0; never executed: return 0; | 0 |
2511 | return mobj->d.data[handle + 2];executed 27 times by 2 tests: return mobj->d.data[handle + 2]; Executed by:- tst_QMetaEnum
- tst_QMetaObjectBuilder
| 27 |
2512 | } | - |
2513 | | - |
2514 | | - |
2515 | | - |
2516 | | - |
2517 | | - |
2518 | | - |
2519 | | - |
2520 | const char *QMetaEnum::key(int index) const | - |
2521 | { | - |
2522 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 260 times by 5 testsEvaluated by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QMetaObjectBuilder
- tst_languageChange
|
| 0-260 |
2523 | return 0; never executed: return 0; | 0 |
2524 | int count = mobj->d.data[handle + 2]; | - |
2525 | int data = mobj->d.data[handle + 3]; | - |
2526 | if (index >= 0 && index < count)TRUE | evaluated 260 times by 5 testsEvaluated by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QMetaObjectBuilder
- tst_languageChange
| FALSE | never evaluated |
TRUE | evaluated 260 times by 5 testsEvaluated by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QMetaObjectBuilder
- tst_languageChange
| FALSE | never evaluated |
| 0-260 |
2527 | return rawStringData(mobj, mobj->d.data[data + 2*index]);executed 260 times by 5 tests: return rawStringData(mobj, mobj->d.data[data + 2*index]); Executed by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QMetaObjectBuilder
- tst_languageChange
| 260 |
2528 | return 0; never executed: return 0; | 0 |
2529 | } | - |
2530 | | - |
2531 | | - |
2532 | | - |
2533 | | - |
2534 | | - |
2535 | | - |
2536 | | - |
2537 | int QMetaEnum::value(int index) const | - |
2538 | { | - |
2539 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 28 times by 1 test |
| 0-28 |
2540 | return 0; never executed: return 0; | 0 |
2541 | int count = mobj->d.data[handle + 2]; | - |
2542 | int data = mobj->d.data[handle + 3]; | - |
2543 | if (index >= 0 && index < count)TRUE | evaluated 28 times by 1 test | FALSE | never evaluated |
TRUE | evaluated 28 times by 1 test | FALSE | never evaluated |
| 0-28 |
2544 | return mobj->d.data[data + 2*index + 1];executed 28 times by 1 test: return mobj->d.data[data + 2*index + 1]; | 28 |
2545 | return -1; never executed: return -1; | 0 |
2546 | } | - |
2547 | | - |
2548 | | - |
2549 | | - |
2550 | | - |
2551 | | - |
2552 | | - |
2553 | | - |
2554 | | - |
2555 | | - |
2556 | | - |
2557 | | - |
2558 | bool QMetaEnum::isFlag() const | - |
2559 | { | - |
2560 | return mobj && mobj->d.data[handle + 1];executed 35 times by 3 tests: return mobj && mobj->d.data[handle + 1]; Executed by:- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QObject
| 35 |
2561 | } | - |
2562 | | - |
2563 | | - |
2564 | | - |
2565 | | - |
2566 | | - |
2567 | | - |
2568 | | - |
2569 | | - |
2570 | | - |
2571 | | - |
2572 | const char *QMetaEnum::scope() const | - |
2573 | { | - |
2574 | return mobj ? objectClassName(mobj) : 0;executed 59 times by 5 tests: return mobj ? objectClassName(mobj) : 0; Executed by:- tst_QAbstractSpinBox
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QObject
- tst_QWidget
| 59 |
2575 | } | - |
2576 | | - |
2577 | | - |
2578 | | - |
2579 | | - |
2580 | | - |
2581 | | - |
2582 | | - |
2583 | | - |
2584 | | - |
2585 | | - |
2586 | | - |
2587 | | - |
2588 | int QMetaEnum::keyToValue(const char *key, bool *ok) const | - |
2589 | { | - |
2590 | if (ok != 0)TRUE | evaluated 273 times by 6 testsEvaluated by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QMetaObject
- tst_QObject
- tst_languageChange
| FALSE | never evaluated |
| 0-273 |
2591 | *ok = false;executed 273 times by 6 tests: *ok = false; Executed by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QMetaObject
- tst_QObject
- tst_languageChange
| 273 |
2592 | if (!mobj || !key)TRUE | never evaluated | FALSE | evaluated 273 times by 6 testsEvaluated by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QMetaObject
- tst_QObject
- tst_languageChange
|
TRUE | never evaluated | FALSE | evaluated 273 times by 6 testsEvaluated by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QMetaObject
- tst_QObject
- tst_languageChange
|
| 0-273 |
2593 | return -1; never executed: return -1; | 0 |
2594 | uint scope = 0; | - |
2595 | const char *qualified_key = key; | - |
2596 | const char *s = key + qstrlen(key); | - |
2597 | while (s > key && *s != ':')TRUE | evaluated 1712 times by 6 testsEvaluated by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QMetaObject
- tst_QObject
- tst_languageChange
| FALSE | evaluated 267 times by 6 testsEvaluated by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QMetaObject
- tst_QObject
- tst_languageChange
|
TRUE | evaluated 1706 times by 6 testsEvaluated by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QMetaObject
- tst_QObject
- tst_languageChange
| FALSE | evaluated 6 times by 1 test |
| 6-1712 |
2598 | --s;executed 1706 times by 6 tests: --s; Executed by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QMetaObject
- tst_QObject
- tst_languageChange
| 1706 |
2599 | if (s > key && *(s-1)==':') {TRUE | evaluated 6 times by 1 test | FALSE | evaluated 267 times by 6 testsEvaluated by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QMetaObject
- tst_QObject
- tst_languageChange
|
TRUE | evaluated 6 times by 1 test | FALSE | never evaluated |
| 0-267 |
2600 | scope = s - key - 1; | - |
2601 | key += scope + 2; | - |
2602 | }executed 6 times by 1 test: end of block | 6 |
2603 | int count = mobj->d.data[handle + 2]; | - |
2604 | int data = mobj->d.data[handle + 3]; | - |
2605 | for (int i = 0; i < count; ++i) {TRUE | evaluated 302 times by 6 testsEvaluated by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QMetaObject
- tst_QObject
- tst_languageChange
| FALSE | evaluated 8 times by 1 test |
| 8-302 |
2606 | const QByteArray className = stringData(mobj, priv(mobj->d.data)->className); | - |
2607 | if ((!scope || (className.size() == int(scope) && strncmp(qualified_key, className.constData(), scope) == 0))TRUE | evaluated 286 times by 6 testsEvaluated by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QMetaObject
- tst_QObject
- tst_languageChange
| FALSE | evaluated 16 times by 1 test |
TRUE | evaluated 4 times by 1 test | FALSE | evaluated 12 times by 1 test |
TRUE | evaluated 4 times by 1 test | FALSE | never evaluated |
| 0-286 |
2608 | && strcmp(key, rawStringData(mobj, mobj->d.data[data + 2*i])) == 0) {TRUE | evaluated 265 times by 6 testsEvaluated by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QMetaObject
- tst_QObject
- tst_languageChange
| FALSE | evaluated 25 times by 3 testsEvaluated by:- tst_QFiledialog
- tst_QMetaObject
- tst_QObject
|
| 25-265 |
2609 | if (ok != 0)TRUE | evaluated 265 times by 6 testsEvaluated by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QMetaObject
- tst_QObject
- tst_languageChange
| FALSE | never evaluated |
| 0-265 |
2610 | *ok = true;executed 265 times by 6 tests: *ok = true; Executed by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QMetaObject
- tst_QObject
- tst_languageChange
| 265 |
2611 | return mobj->d.data[data + 2*i + 1];executed 265 times by 6 tests: return mobj->d.data[data + 2*i + 1]; Executed by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QMetaObject
- tst_QObject
- tst_languageChange
| 265 |
2612 | } | - |
2613 | }executed 37 times by 3 tests: end of block Executed by:- tst_QFiledialog
- tst_QMetaObject
- tst_QObject
| 37 |
2614 | return -1;executed 8 times by 1 test: return -1; | 8 |
2615 | } | - |
2616 | | - |
2617 | | - |
2618 | | - |
2619 | | - |
2620 | | - |
2621 | | - |
2622 | | - |
2623 | | - |
2624 | | - |
2625 | const char* QMetaEnum::valueToKey(int value) const | - |
2626 | { | - |
2627 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 103619 times by 129 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QBrush
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QCollator
- tst_QComboBox
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDateTime
- tst_QDateTimeEdit
- tst_QDialogButtonBox
- tst_QDockWidget
- ...
|
| 0-103619 |
2628 | return 0; never executed: return 0; | 0 |
2629 | int count = mobj->d.data[handle + 2]; | - |
2630 | int data = mobj->d.data[handle + 3]; | - |
2631 | for (int i = 0; i < count; ++i)TRUE | evaluated 560073 times by 129 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QBrush
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QCollator
- tst_QComboBox
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDateTime
- tst_QDateTimeEdit
- tst_QDialogButtonBox
- tst_QDockWidget
- ...
| FALSE | evaluated 17850 times by 23 testsEvaluated by:- tst_Gestures
- tst_QAbstractItemModel
- tst_QAbstractProxyModel
- tst_QDockWidget
- tst_QGraphicsItem
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QHeaderView
- tst_QIdentityProxyModel
- tst_QKeyEvent
- tst_QLibrary
- tst_QLineEdit
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QPlainTextEdit
- tst_QPluginLoader
- tst_QSizePolicy
- tst_QStandardItem
- tst_QStandardItemModel
- tst_QTextDocumentFragment
- tst_QTextEdit
- tst_QToolBar
- tst_QWidget
|
| 17850-560073 |
2632 | if (value == (int)mobj->d.data[data + 2*i + 1])TRUE | evaluated 85769 times by 125 testsEvaluated by:- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QBrush
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QCollator
- tst_QComboBox
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDateTime
- tst_QDateTimeEdit
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QDoubleValidator
- tst_QDrag
- ...
| FALSE | evaluated 474304 times by 114 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QBrush
- tst_QCalendarWidget
- tst_QComboBox
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDateTime
- tst_QDateTimeEdit
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QDrag
- tst_QEasingCurve
- tst_QEventDispatcher
- ...
|
| 85769-474304 |
2633 | return rawStringData(mobj, mobj->d.data[data + 2*i]);executed 85769 times by 125 tests: return rawStringData(mobj, mobj->d.data[data + 2*i]); Executed by:- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QAnimationGroup
- tst_QApplication
- tst_QBrush
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QCollator
- tst_QComboBox
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDateTime
- tst_QDateTimeEdit
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QDoubleValidator
- tst_QDrag
- ...
| 85769 |
2634 | return 0;executed 17850 times by 23 tests: return 0; Executed by:- tst_Gestures
- tst_QAbstractItemModel
- tst_QAbstractProxyModel
- tst_QDockWidget
- tst_QGraphicsItem
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QHeaderView
- tst_QIdentityProxyModel
- tst_QKeyEvent
- tst_QLibrary
- tst_QLineEdit
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QPlainTextEdit
- tst_QPluginLoader
- tst_QSizePolicy
- tst_QStandardItem
- tst_QStandardItemModel
- tst_QTextDocumentFragment
- tst_QTextEdit
- tst_QToolBar
- tst_QWidget
| 17850 |
2635 | } | - |
2636 | | - |
2637 | | - |
2638 | | - |
2639 | | - |
2640 | | - |
2641 | | - |
2642 | | - |
2643 | | - |
2644 | | - |
2645 | | - |
2646 | | - |
2647 | int QMetaEnum::keysToValue(const char *keys, bool *ok) const | - |
2648 | { | - |
2649 | if (ok != 0)TRUE | evaluated 41 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QVariant
| FALSE | never evaluated |
| 0-41 |
2650 | *ok = false;executed 41 times by 2 tests: *ok = false; Executed by:- tst_QMetaObject
- tst_QVariant
| 41 |
2651 | if (!mobj || !keys)TRUE | never evaluated | FALSE | evaluated 41 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QVariant
|
TRUE | never evaluated | FALSE | evaluated 41 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QVariant
|
| 0-41 |
2652 | return -1; never executed: return -1; | 0 |
2653 | if (ok != 0)TRUE | evaluated 41 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QVariant
| FALSE | never evaluated |
| 0-41 |
2654 | *ok = true;executed 41 times by 2 tests: *ok = true; Executed by:- tst_QMetaObject
- tst_QVariant
| 41 |
2655 | QStringList l = QString::fromLatin1(keys).split(QLatin1Char('|')); | - |
2656 | if (l.isEmpty())TRUE | never evaluated | FALSE | evaluated 41 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QVariant
|
| 0-41 |
2657 | return 0; never executed: return 0; | 0 |
2658 | | - |
2659 | int value = 0; | - |
2660 | int count = mobj->d.data[handle + 2]; | - |
2661 | int data = mobj->d.data[handle + 3]; | - |
2662 | for (int li = 0; li < l.size(); ++li) {TRUE | evaluated 55 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QVariant
| FALSE | evaluated 41 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QVariant
|
| 41-55 |
2663 | QString trimmed = l.at(li).trimmed(); | - |
2664 | QByteArray qualified_key = trimmed.toLatin1(); | - |
2665 | const char *key = qualified_key.constData(); | - |
2666 | uint scope = 0; | - |
2667 | const char *s = key + qstrlen(key); | - |
2668 | while (s > key && *s != ':')TRUE | evaluated 729 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QVariant
| FALSE | evaluated 31 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QVariant
|
TRUE | evaluated 705 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QVariant
| FALSE | evaluated 24 times by 1 test |
| 24-729 |
2669 | --s;executed 705 times by 2 tests: --s; Executed by:- tst_QMetaObject
- tst_QVariant
| 705 |
2670 | if (s > key && *(s-1)==':') {TRUE | evaluated 24 times by 1 test | FALSE | evaluated 31 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QVariant
|
TRUE | evaluated 24 times by 1 test | FALSE | never evaluated |
| 0-31 |
2671 | scope = s - key - 1; | - |
2672 | key += scope + 2; | - |
2673 | }executed 24 times by 1 test: end of block | 24 |
2674 | int i; | - |
2675 | for (i = count-1; i >= 0; --i) {TRUE | evaluated 121 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QVariant
| FALSE | evaluated 14 times by 1 test |
| 14-121 |
2676 | const QByteArray className = stringData(mobj, priv(mobj->d.data)->className); | - |
2677 | if ((!scope || (className.size() == int(scope) && strncmp(qualified_key.constData(), className.constData(), scope) == 0))TRUE | evaluated 59 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QVariant
| FALSE | evaluated 62 times by 1 test |
TRUE | evaluated 26 times by 1 test | FALSE | evaluated 36 times by 1 test |
TRUE | evaluated 26 times by 1 test | FALSE | never evaluated |
| 0-62 |
2678 | && strcmp(key, rawStringData(mobj, mobj->d.data[data + 2*i])) == 0) {TRUE | evaluated 41 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QVariant
| FALSE | evaluated 44 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QVariant
|
| 41-44 |
2679 | value |= mobj->d.data[data + 2*i + 1]; | - |
2680 | break;executed 41 times by 2 tests: break; Executed by:- tst_QMetaObject
- tst_QVariant
| 41 |
2681 | } | - |
2682 | }executed 80 times by 2 tests: end of block Executed by:- tst_QMetaObject
- tst_QVariant
| 80 |
2683 | if (i < 0) {TRUE | evaluated 14 times by 1 test | FALSE | evaluated 41 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QVariant
|
| 14-41 |
2684 | if (ok != 0)TRUE | evaluated 14 times by 1 test | FALSE | never evaluated |
| 0-14 |
2685 | *ok = false;executed 14 times by 1 test: *ok = false; | 14 |
2686 | value |= -1; | - |
2687 | }executed 14 times by 1 test: end of block | 14 |
2688 | }executed 55 times by 2 tests: end of block Executed by:- tst_QMetaObject
- tst_QVariant
| 55 |
2689 | return value;executed 41 times by 2 tests: return value; Executed by:- tst_QMetaObject
- tst_QVariant
| 41 |
2690 | } | - |
2691 | | - |
2692 | | - |
2693 | | - |
2694 | | - |
2695 | | - |
2696 | | - |
2697 | | - |
2698 | QByteArray QMetaEnum::valueToKeys(int value) const | - |
2699 | { | - |
2700 | QByteArray keys; | - |
2701 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 17325 times by 4 testsEvaluated by:- tst_QMetaEnum
- tst_QMetaObject
- tst_QSizePolicy
- tst_QWidget
|
| 0-17325 |
2702 | return keys; never executed: return keys; | 0 |
2703 | int count = mobj->d.data[handle + 2]; | - |
2704 | int data = mobj->d.data[handle + 3]; | - |
2705 | int v = value; | - |
2706 | | - |
2707 | for (int i = count - 1; i >= 0; --i) {TRUE | evaluated 260330 times by 4 testsEvaluated by:- tst_QMetaEnum
- tst_QMetaObject
- tst_QSizePolicy
- tst_QWidget
| FALSE | evaluated 17325 times by 4 testsEvaluated by:- tst_QMetaEnum
- tst_QMetaObject
- tst_QSizePolicy
- tst_QWidget
|
| 17325-260330 |
2708 | int k = mobj->d.data[data + 2*i + 1]; | - |
2709 | if ((k != 0 && (v & k) == k ) || (k == value)) {TRUE | evaluated 260307 times by 4 testsEvaluated by:- tst_QMetaEnum
- tst_QMetaObject
- tst_QSizePolicy
- tst_QWidget
| FALSE | evaluated 23 times by 2 tests |
TRUE | evaluated 17324 times by 4 testsEvaluated by:- tst_QMetaEnum
- tst_QMetaObject
- tst_QSizePolicy
- tst_QWidget
| FALSE | evaluated 242983 times by 4 testsEvaluated by:- tst_QMetaEnum
- tst_QMetaObject
- tst_QSizePolicy
- tst_QWidget
|
TRUE | evaluated 10 times by 1 test | FALSE | evaluated 242996 times by 4 testsEvaluated by:- tst_QMetaEnum
- tst_QMetaObject
- tst_QSizePolicy
- tst_QWidget
|
| 10-260307 |
2710 | v = v & ~k; | - |
2711 | if (!keys.isEmpty())TRUE | evaluated 9 times by 3 testsEvaluated by:- tst_QMetaEnum
- tst_QMetaObject
- tst_QSizePolicy
| FALSE | evaluated 17325 times by 4 testsEvaluated by:- tst_QMetaEnum
- tst_QMetaObject
- tst_QSizePolicy
- tst_QWidget
|
| 9-17325 |
2712 | keys.prepend('|');executed 9 times by 3 tests: keys.prepend('|'); Executed by:- tst_QMetaEnum
- tst_QMetaObject
- tst_QSizePolicy
| 9 |
2713 | keys.prepend(stringData(mobj, mobj->d.data[data + 2*i])); | - |
2714 | }executed 17334 times by 4 tests: end of block Executed by:- tst_QMetaEnum
- tst_QMetaObject
- tst_QSizePolicy
- tst_QWidget
| 17334 |
2715 | }executed 260330 times by 4 tests: end of block Executed by:- tst_QMetaEnum
- tst_QMetaObject
- tst_QSizePolicy
- tst_QWidget
| 260330 |
2716 | return keys;executed 17325 times by 4 tests: return keys; Executed by:- tst_QMetaEnum
- tst_QMetaObject
- tst_QSizePolicy
- tst_QWidget
| 17325 |
2717 | } | - |
2718 | | - |
2719 | | - |
2720 | | - |
2721 | | - |
2722 | | - |
2723 | | - |
2724 | | - |
2725 | | - |
2726 | | - |
2727 | static QByteArray qualifiedName(const QMetaEnum &e) | - |
2728 | { | - |
2729 | return QByteArray(e.scope()) + "::" + e.name();executed 24 times by 2 tests: return QByteArray(e.scope()) + "::" + e.name(); Executed by:- tst_QAbstractSpinBox
- tst_QObject
| 24 |
2730 | } | - |
2731 | | - |
2732 | | - |
2733 | | - |
2734 | | - |
2735 | | - |
2736 | | - |
2737 | | - |
2738 | | - |
2739 | | - |
2740 | | - |
2741 | | - |
2742 | | - |
2743 | | - |
2744 | | - |
2745 | | - |
2746 | | - |
2747 | | - |
2748 | | - |
2749 | | - |
2750 | | - |
2751 | | - |
2752 | | - |
2753 | | - |
2754 | | - |
2755 | | - |
2756 | | - |
2757 | | - |
2758 | | - |
2759 | | - |
2760 | | - |
2761 | | - |
2762 | | - |
2763 | | - |
2764 | | - |
2765 | | - |
2766 | | - |
2767 | | - |
2768 | | - |
2769 | | - |
2770 | | - |
2771 | | - |
2772 | | - |
2773 | | - |
2774 | | - |
2775 | | - |
2776 | | - |
2777 | | - |
2778 | | - |
2779 | | - |
2780 | | - |
2781 | | - |
2782 | | - |
2783 | | - |
2784 | | - |
2785 | QMetaProperty::QMetaProperty() | - |
2786 | : mobj(0), handle(0), idx(0) | - |
2787 | { | - |
2788 | }executed 28834 times by 156 tests: end of block 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
- ...
| 28834 |
2789 | | - |
2790 | | - |
2791 | | - |
2792 | | - |
2793 | | - |
2794 | | - |
2795 | | - |
2796 | const char *QMetaProperty::name() const | - |
2797 | { | - |
2798 | if (!mobj)TRUE | evaluated 3 times by 1 test | FALSE | evaluated 826 times by 136 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- 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_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- ...
|
| 3-826 |
2799 | return 0;executed 3 times by 1 test: return 0; | 3 |
2800 | int handle = priv(mobj->d.data)->propertyData + 3*idx; | - |
2801 | return rawStringData(mobj, mobj->d.data[handle]);executed 826 times by 136 tests: return rawStringData(mobj, mobj->d.data[handle]); Executed by:- tst_Gestures
- tst_ModelTest
- 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_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- ...
| 826 |
2802 | } | - |
2803 | | - |
2804 | | - |
2805 | | - |
2806 | | - |
2807 | | - |
2808 | | - |
2809 | const char *QMetaProperty::typeName() const | - |
2810 | { | - |
2811 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 108 times by 5 testsEvaluated by:- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QObject
|
| 0-108 |
2812 | return 0; never executed: return 0; | 0 |
2813 | int handle = priv(mobj->d.data)->propertyData + 3*idx; | - |
2814 | return rawTypeNameFromTypeInfo(mobj, mobj->d.data[handle + 1]);executed 108 times by 5 tests: return rawTypeNameFromTypeInfo(mobj, mobj->d.data[handle + 1]); Executed by:- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QObject
| 108 |
2815 | } | - |
2816 | | - |
2817 | | - |
2818 | | - |
2819 | | - |
2820 | | - |
2821 | | - |
2822 | | - |
2823 | QVariant::Type QMetaProperty::type() const | - |
2824 | { | - |
2825 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 255 times by 135 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- 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_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- ...
|
| 0-255 |
2826 | return QVariant::Invalid; never executed: return QVariant::Invalid; | 0 |
2827 | int handle = priv(mobj->d.data)->propertyData + 3*idx; | - |
2828 | | - |
2829 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
2830 | uint type = typeFromTypeInfo(mobj, mobj->d.data[handle + 1]); | - |
2831 | if (type >= QMetaType::User)TRUE | evaluated 26 times by 4 testsEvaluated by:- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QObject
| FALSE | evaluated 229 times by 135 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- 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_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- ...
|
| 26-229 |
2832 | return QVariant::UserType;executed 26 times by 4 tests: return QVariant::UserType; Executed by:- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QObject
| 26 |
2833 | if (type != QMetaType::UnknownType)TRUE | evaluated 225 times by 135 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- 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_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- ...
| FALSE | evaluated 4 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QObject
|
| 4-225 |
2834 | return QVariant::Type(type);executed 225 times by 135 tests: return QVariant::Type(type); Executed by:- tst_Gestures
- tst_ModelTest
- 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_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- ...
| 225 |
2835 | if (isEnumType()) {TRUE | evaluated 3 times by 1 test | FALSE | evaluated 1 time by 1 test |
| 1-3 |
2836 | int enumMetaTypeId = QMetaType::type(qualifiedName(menum)); | - |
2837 | if (enumMetaTypeId == QMetaType::UnknownType)TRUE | evaluated 2 times by 1 test | FALSE | evaluated 1 time by 1 test |
| 1-2 |
2838 | return QVariant::Int;executed 2 times by 1 test: return QVariant::Int; | 2 |
2839 | }executed 1 time by 1 test: end of block | 1 |
2840 | #ifdef QT_COORD_TYPE | - |
2841 | | - |
2842 | if (strcmp(typeName(), "qreal") == 0) | - |
2843 | return QVariant::Type(qMetaTypeId<qreal>()); | - |
2844 | #endif | - |
2845 | | - |
2846 | return QVariant::UserType;executed 2 times by 2 tests: return QVariant::UserType; Executed by:- tst_QMetaObject
- tst_QObject
| 2 |
2847 | } | - |
2848 | | - |
2849 | | - |
2850 | | - |
2851 | | - |
2852 | | - |
2853 | | - |
2854 | | - |
2855 | | - |
2856 | | - |
2857 | | - |
2858 | int QMetaProperty::userType() const | - |
2859 | { | - |
2860 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 587 times by 139 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- 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_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- ...
|
| 0-587 |
2861 | return QMetaType::UnknownType; never executed: return QMetaType::UnknownType; | 0 |
2862 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
2863 | int handle = priv(mobj->d.data)->propertyData + 3*idx; | - |
2864 | int type = typeFromTypeInfo(mobj, mobj->d.data[handle + 1]); | - |
2865 | if (type != QMetaType::UnknownType)TRUE | evaluated 585 times by 139 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- 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_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- ...
| FALSE | evaluated 2 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QObject
|
| 2-585 |
2866 | return type;executed 585 times by 139 tests: return type; Executed by:- tst_Gestures
- tst_ModelTest
- 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_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- ...
| 585 |
2867 | if (isEnumType()) {TRUE | evaluated 1 time by 1 test | FALSE | evaluated 1 time by 1 test |
| 1 |
2868 | type = QMetaType::type(qualifiedName(menum)); | - |
2869 | if (type == QMetaType::UnknownType) {TRUE | never evaluated | FALSE | evaluated 1 time by 1 test |
| 0-1 |
2870 | type = registerPropertyType(); | - |
2871 | if (type == QMetaType::UnknownType)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2872 | return QVariant::Int; never executed: return QVariant::Int; | 0 |
2873 | } never executed: end of block | 0 |
2874 | return type;executed 1 time by 1 test: return type; | 1 |
2875 | } | - |
2876 | type = QMetaType::type(typeName()); | - |
2877 | if (type != QMetaType::UnknownType)TRUE | never evaluated | FALSE | evaluated 1 time by 1 test |
| 0-1 |
2878 | return type; never executed: return type; | 0 |
2879 | return registerPropertyType();executed 1 time by 1 test: return registerPropertyType(); | 1 |
2880 | } | - |
2881 | | - |
2882 | | - |
2883 | | - |
2884 | | - |
2885 | | - |
2886 | | - |
2887 | int QMetaProperty::propertyIndex() const | - |
2888 | { | - |
2889 | if (!mobj)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2890 | return -1; never executed: return -1; | 0 |
2891 | return idx + mobj->propertyOffset(); never executed: return idx + mobj->propertyOffset(); | 0 |
2892 | } | - |
2893 | | - |
2894 | | - |
2895 | | - |
2896 | | - |
2897 | | - |
2898 | | - |
2899 | | - |
2900 | | - |
2901 | | - |
2902 | | - |
2903 | | - |
2904 | bool QMetaProperty::isFlagType() const | - |
2905 | { | - |
2906 | return isEnumType() && menum.isFlag();executed 83 times by 3 tests: return isEnumType() && menum.isFlag(); Executed by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
- tst_QObject
| 83 |
2907 | } | - |
2908 | | - |
2909 | | - |
2910 | | - |
2911 | | - |
2912 | | - |
2913 | | - |
2914 | | - |
2915 | bool QMetaProperty::isEnumType() const | - |
2916 | { | - |
2917 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 21355 times by 154 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-21355 |
2918 | return false; never executed: return false; | 0 |
2919 | int handle = priv(mobj->d.data)->propertyData + 3*idx; | - |
2920 | int flags = mobj->d.data[handle + 2]; | - |
2921 | return (flags & EnumOrFlag) && menum.name();executed 21355 times by 154 tests: return (flags & EnumOrFlag) && menum.name(); 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
- ...
| 21355 |
2922 | } | - |
2923 | | - |
2924 | | - |
2925 | | - |
2926 | | - |
2927 | | - |
2928 | | - |
2929 | | - |
2930 | | - |
2931 | | - |
2932 | | - |
2933 | bool QMetaProperty::hasStdCppSet() const | - |
2934 | { | - |
2935 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 60 times by 3 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
|
| 0-60 |
2936 | return false; never executed: return false; | 0 |
2937 | int handle = priv(mobj->d.data)->propertyData + 3*idx; | - |
2938 | int flags = mobj->d.data[handle + 2]; | - |
2939 | return (flags & StdCppSet);executed 60 times by 3 tests: return (flags & StdCppSet); Executed by:- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
| 60 |
2940 | } | - |
2941 | | - |
2942 | | - |
2943 | | - |
2944 | | - |
2945 | | - |
2946 | | - |
2947 | | - |
2948 | int QMetaProperty::registerPropertyType() const | - |
2949 | { | - |
2950 | int registerResult = -1; | - |
2951 | void *argv[] = { ®isterResult }; | - |
2952 | mobj->static_metacall(QMetaObject::RegisterPropertyMetaType, idx, argv); | - |
2953 | return registerResult == -1 ? QMetaType::UnknownType : registerResult;executed 3 times by 2 tests: return registerResult == -1 ? QMetaType::UnknownType : registerResult; Executed by:- tst_QMetaObject
- tst_QMetaProperty
| 3 |
2954 | } | - |
2955 | | - |
2956 | | - |
2957 | | - |
2958 | | - |
2959 | | - |
2960 | | - |
2961 | | - |
2962 | QMetaEnum QMetaProperty::enumerator() const | - |
2963 | { | - |
2964 | return menum;executed 1 time by 1 test: return menum; | 1 |
2965 | } | - |
2966 | | - |
2967 | | - |
2968 | | - |
2969 | | - |
2970 | | - |
2971 | | - |
2972 | | - |
2973 | QVariant QMetaProperty::read(const QObject *object) const | - |
2974 | { | - |
2975 | if (!object || !mobj)TRUE | never evaluated | FALSE | evaluated 20104 times by 152 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
- ...
|
TRUE | never evaluated | FALSE | evaluated 20104 times by 152 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-20104 |
2976 | return QVariant(); never executed: return QVariant(); | 0 |
2977 | | - |
2978 | uint t = QVariant::Int; | - |
2979 | if (isEnumType()) {TRUE | evaluated 16 times by 2 testsEvaluated by:- tst_QAbstractSpinBox
- tst_QObject
| FALSE | evaluated 20088 times by 152 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
- ...
|
| 16-20088 |
2980 | | - |
2981 | | - |
2982 | | - |
2983 | | - |
2984 | | - |
2985 | int enumMetaTypeId = QMetaType::type(qualifiedName(menum)); | - |
2986 | if (enumMetaTypeId != QMetaType::UnknownType)TRUE | evaluated 7 times by 1 test | FALSE | evaluated 9 times by 2 testsEvaluated by:- tst_QAbstractSpinBox
- tst_QObject
|
| 7-9 |
2987 | t = enumMetaTypeId;executed 7 times by 1 test: t = enumMetaTypeId; | 7 |
2988 | } else {executed 16 times by 2 tests: end of block Executed by:- tst_QAbstractSpinBox
- tst_QObject
| 16 |
2989 | int handle = priv(mobj->d.data)->propertyData + 3*idx; | - |
2990 | const char *typeName = 0; | - |
2991 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
2992 | uint typeInfo = mobj->d.data[handle + 1]; | - |
2993 | if (!(typeInfo & IsUnresolvedType))TRUE | evaluated 20054 times by 151 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractButton
- tst_QAbstractItemView
- 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
- tst_QDBusAbstractInterface
- ...
| FALSE | evaluated 34 times by 9 testsEvaluated by:- tst_QAbstractProxyModel
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QMetaProperty
- tst_QMetaType
- tst_QObject
- tst_QSyntaxHighlighter
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
|
| 34-20054 |
2994 | t = typeInfo;executed 20054 times by 151 tests: t = typeInfo; Executed by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractButton
- tst_QAbstractItemView
- 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
- tst_QDBusAbstractInterface
- ...
| 20054 |
2995 | else { | - |
2996 | typeName = rawStringData(mobj, typeInfo & TypeNameIndexMask); | - |
2997 | t = QMetaType::type(typeName); | - |
2998 | }executed 34 times by 9 tests: end of block Executed by:- tst_QAbstractProxyModel
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QMetaProperty
- tst_QMetaType
- tst_QObject
- tst_QSyntaxHighlighter
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
| 34 |
2999 | if (t == QMetaType::UnknownType) {TRUE | evaluated 1 time by 1 test | FALSE | evaluated 20087 times by 152 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
- ...
|
| 1-20087 |
3000 | | - |
3001 | t = registerPropertyType(); | - |
3002 | if (t == QMetaType::UnknownType) {TRUE | never evaluated | FALSE | evaluated 1 time by 1 test |
| 0-1 |
3003 | qWarning("QMetaProperty::read: Unable to handle unregistered datatype '%s' for property '%s::%s'", typeName, mobj->className(), name()); | - |
3004 | return QVariant(); never executed: return QVariant(); | 0 |
3005 | } | - |
3006 | }executed 1 time by 1 test: end of block | 1 |
3007 | }executed 20088 times by 152 tests: end of block 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
- ...
| 20088 |
3008 | | - |
3009 | | - |
3010 | | - |
3011 | | - |
3012 | | - |
3013 | | - |
3014 | int status = -1; | - |
3015 | QVariant value; | - |
3016 | void *argv[] = { 0, &value, &status }; | - |
3017 | if (t == QMetaType::QVariant) {TRUE | evaluated 4 times by 1 test | FALSE | evaluated 20100 times by 152 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
- ...
|
| 4-20100 |
3018 | argv[0] = &value; | - |
3019 | } else {executed 4 times by 1 test: end of block | 4 |
3020 | value = QVariant(t, (void*)0); | - |
3021 | argv[0] = value.data(); | - |
3022 | }executed 20100 times by 152 tests: end of block 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
- ...
| 20100 |
3023 | if (priv(mobj->d.data)->flags & PropertyAccessInStaticMetaCall && mobj->d.static_metacall) {TRUE | evaluated 2 times by 1 test | FALSE | evaluated 20102 times by 152 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
- ...
|
TRUE | evaluated 2 times by 1 test | FALSE | never evaluated |
| 0-20102 |
3024 | mobj->d.static_metacall(const_cast<QObject*>(object), QMetaObject::ReadProperty, idx, argv); | - |
3025 | } else {executed 2 times by 1 test: end of block | 2 |
3026 | QMetaObject::metacall(const_cast<QObject*>(object), QMetaObject::ReadProperty, | - |
3027 | idx + mobj->propertyOffset(), argv); | - |
3028 | }executed 20102 times by 152 tests: end of block 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
- ...
| 20102 |
3029 | | - |
3030 | if (status != -1)TRUE | evaluated 14 times by 1 testEvaluated by:- tst_QDBusAbstractInterface
| FALSE | evaluated 20090 times by 152 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
- ...
|
| 14-20090 |
3031 | return value;executed 14 times by 1 test: return value; Executed by:- tst_QDBusAbstractInterface
| 14 |
3032 | if (t != QMetaType::QVariant && argv[0] != value.data())TRUE | evaluated 20086 times by 152 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
- ...
| FALSE | evaluated 4 times by 1 test |
TRUE | never evaluated | FALSE | evaluated 20086 times by 152 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-20086 |
3033 | | - |
3034 | return QVariant((QVariant::Type)t, argv[0]); never executed: return QVariant((QVariant::Type)t, argv[0]); | 0 |
3035 | return value;executed 20090 times by 152 tests: return value; 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
- ...
| 20090 |
3036 | } | - |
3037 | | - |
3038 | | - |
3039 | | - |
3040 | | - |
3041 | | - |
3042 | | - |
3043 | | - |
3044 | | - |
3045 | | - |
3046 | | - |
3047 | | - |
3048 | | - |
3049 | bool QMetaProperty::write(QObject *object, const QVariant &value) const | - |
3050 | { | - |
3051 | if (!object || !isWritable())TRUE | never evaluated | FALSE | evaluated 1058 times by 54 testsEvaluated by:- tst_QAbstractItemView
- tst_QAccessibility
- tst_QApplication
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- 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
- ...
|
TRUE | never evaluated | FALSE | evaluated 1058 times by 54 testsEvaluated by:- tst_QAbstractItemView
- tst_QAccessibility
- tst_QApplication
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- 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
- ...
|
| 0-1058 |
3052 | return false; never executed: return false; | 0 |
3053 | | - |
3054 | QVariant v = value; | - |
3055 | uint t = QVariant::Invalid; | - |
3056 | if (isEnumType()) {TRUE | evaluated 13 times by 2 testsEvaluated by:- tst_QDateTimeEdit
- tst_QObject
| FALSE | evaluated 1045 times by 53 testsEvaluated by:- tst_QAbstractItemView
- tst_QAccessibility
- tst_QApplication
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDataWidgetMapper
- 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
- ...
|
| 13-1045 |
3057 | if (v.type() == QVariant::String) {TRUE | evaluated 3 times by 1 test | FALSE | evaluated 10 times by 2 testsEvaluated by:- tst_QDateTimeEdit
- tst_QObject
|
| 3-10 |
3058 | bool ok; | - |
3059 | if (isFlagType())TRUE | never evaluated | FALSE | evaluated 3 times by 1 test |
| 0-3 |
3060 | v = QVariant(menum.keysToValue(value.toByteArray(), &ok)); never executed: v = QVariant(menum.keysToValue(value.toByteArray(), &ok)); | 0 |
3061 | else | - |
3062 | v = QVariant(menum.keyToValue(value.toByteArray(), &ok));executed 3 times by 1 test: v = QVariant(menum.keyToValue(value.toByteArray(), &ok)); | 3 |
3063 | if (!ok)TRUE | never evaluated | FALSE | evaluated 3 times by 1 test |
| 0-3 |
3064 | return false; never executed: return false; | 0 |
3065 | } else if (v.type() != QVariant::Int && v.type() != QVariant::UInt) {executed 3 times by 1 test: end of block TRUE | evaluated 4 times by 1 test | FALSE | evaluated 6 times by 2 testsEvaluated by:- tst_QDateTimeEdit
- tst_QObject
|
TRUE | evaluated 4 times by 1 test | FALSE | never evaluated |
| 0-6 |
3066 | int enumMetaTypeId = QMetaType::type(qualifiedName(menum)); | - |
3067 | if ((enumMetaTypeId == QMetaType::UnknownType) || (v.userType() != enumMetaTypeId) || !v.constData())TRUE | evaluated 2 times by 1 test | FALSE | evaluated 2 times by 1 test |
TRUE | evaluated 1 time by 1 test | FALSE | evaluated 1 time by 1 test |
TRUE | never evaluated | FALSE | evaluated 1 time by 1 test |
| 0-2 |
3068 | return false;executed 3 times by 1 test: return false; | 3 |
3069 | v = QVariant(*reinterpret_cast<const int *>(v.constData())); | - |
3070 | }executed 1 time by 1 test: end of block | 1 |
3071 | v.convert(QVariant::Int); | - |
3072 | } else {executed 10 times by 2 tests: end of block Executed by:- tst_QDateTimeEdit
- tst_QObject
| 10 |
3073 | int handle = priv(mobj->d.data)->propertyData + 3*idx; | - |
3074 | const char *typeName = 0; | - |
3075 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
3076 | uint typeInfo = mobj->d.data[handle + 1]; | - |
3077 | if (!(typeInfo & IsUnresolvedType))TRUE | evaluated 1019 times by 53 testsEvaluated by:- tst_QAbstractItemView
- tst_QAccessibility
- tst_QApplication
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDataWidgetMapper
- 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
- ...
| FALSE | evaluated 26 times by 6 testsEvaluated by:- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QMetaProperty
- tst_QObject
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
|
| 26-1019 |
3078 | t = typeInfo;executed 1019 times by 53 tests: t = typeInfo; Executed by:- tst_QAbstractItemView
- tst_QAccessibility
- tst_QApplication
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDataWidgetMapper
- 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
- ...
| 1019 |
3079 | else { | - |
3080 | typeName = rawStringData(mobj, typeInfo & TypeNameIndexMask); | - |
3081 | t = QMetaType::type(typeName); | - |
3082 | if (t == QMetaType::UnknownType)TRUE | evaluated 1 time by 1 test | FALSE | evaluated 25 times by 6 testsEvaluated by:- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QMetaProperty
- tst_QObject
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
|
| 1-25 |
3083 | t = registerPropertyType();executed 1 time by 1 test: t = registerPropertyType(); | 1 |
3084 | if (t == QMetaType::UnknownType)TRUE | never evaluated | FALSE | evaluated 26 times by 6 testsEvaluated by:- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QMetaProperty
- tst_QObject
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
|
| 0-26 |
3085 | return false; never executed: return false; | 0 |
3086 | }executed 26 times by 6 tests: end of block Executed by:- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QMetaProperty
- tst_QObject
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
| 26 |
3087 | if (t != QMetaType::QVariant && int(t) != value.userType()) {TRUE | evaluated 1043 times by 53 testsEvaluated by:- tst_QAbstractItemView
- tst_QAccessibility
- tst_QApplication
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDataWidgetMapper
- 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
- ...
| FALSE | evaluated 2 times by 1 test |
TRUE | evaluated 35 times by 7 testsEvaluated by:- tst_QDataWidgetMapper
- tst_QGraphicsObject
- tst_QMetaProperty
- tst_QObject
- tst_QStyleSheetStyle
- tst_QTableView
- tst_QWizard
| FALSE | evaluated 1008 times by 53 testsEvaluated by:- tst_QAbstractItemView
- tst_QAccessibility
- tst_QApplication
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDataWidgetMapper
- 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
- ...
|
| 2-1043 |
3088 | if (!value.isValid()) {TRUE | evaluated 4 times by 2 testsEvaluated by:- tst_QMetaProperty
- tst_QObject
| FALSE | evaluated 31 times by 7 testsEvaluated by:- tst_QDataWidgetMapper
- tst_QGraphicsObject
- tst_QMetaProperty
- tst_QObject
- tst_QStyleSheetStyle
- tst_QTableView
- tst_QWizard
|
| 4-31 |
3089 | if (isResettable())TRUE | evaluated 1 time by 1 test | FALSE | evaluated 3 times by 2 testsEvaluated by:- tst_QMetaProperty
- tst_QObject
|
| 1-3 |
3090 | return reset(object);executed 1 time by 1 test: return reset(object); | 1 |
3091 | v = QVariant(t, 0); | - |
3092 | } else if (!v.convert(t)) {executed 3 times by 2 tests: end of block Executed by:- tst_QMetaProperty
- tst_QObject
TRUE | evaluated 8 times by 3 testsEvaluated by:- tst_QDataWidgetMapper
- tst_QMetaProperty
- tst_QObject
| FALSE | evaluated 23 times by 6 testsEvaluated by:- tst_QGraphicsObject
- tst_QMetaProperty
- tst_QObject
- tst_QStyleSheetStyle
- tst_QTableView
- tst_QWizard
|
| 3-23 |
3093 | return false;executed 8 times by 3 tests: return false; Executed by:- tst_QDataWidgetMapper
- tst_QMetaProperty
- tst_QObject
| 8 |
3094 | } | - |
3095 | }executed 26 times by 6 tests: end of block Executed by:- tst_QGraphicsObject
- tst_QMetaProperty
- tst_QObject
- tst_QStyleSheetStyle
- tst_QTableView
- tst_QWizard
| 26 |
3096 | }executed 1036 times by 53 tests: end of block Executed by:- tst_QAbstractItemView
- tst_QAccessibility
- tst_QApplication
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDataWidgetMapper
- 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
- ...
| 1036 |
3097 | | - |
3098 | | - |
3099 | | - |
3100 | | - |
3101 | | - |
3102 | | - |
3103 | int status = -1; | - |
3104 | | - |
3105 | | - |
3106 | int flags = 0; | - |
3107 | void *argv[] = { 0, &v, &status, &flags }; | - |
3108 | if (t == QMetaType::QVariant)TRUE | evaluated 2 times by 1 test | FALSE | evaluated 1044 times by 54 testsEvaluated by:- tst_QAbstractItemView
- tst_QAccessibility
- tst_QApplication
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- 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
- ...
|
| 2-1044 |
3109 | argv[0] = &v;executed 2 times by 1 test: argv[0] = &v; | 2 |
3110 | else | - |
3111 | argv[0] = v.data();executed 1044 times by 54 tests: argv[0] = v.data(); Executed by:- tst_QAbstractItemView
- tst_QAccessibility
- tst_QApplication
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- 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
- ...
| 1044 |
3112 | if (priv(mobj->d.data)->flags & PropertyAccessInStaticMetaCall && mobj->d.static_metacall)TRUE | evaluated 1 time by 1 test | FALSE | evaluated 1045 times by 54 testsEvaluated by:- tst_QAbstractItemView
- tst_QAccessibility
- tst_QApplication
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- 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
- ...
|
TRUE | evaluated 1 time by 1 test | FALSE | never evaluated |
| 0-1045 |
3113 | mobj->d.static_metacall(object, QMetaObject::WriteProperty, idx, argv);executed 1 time by 1 test: mobj->d.static_metacall(object, QMetaObject::WriteProperty, idx, argv); | 1 |
3114 | else | - |
3115 | QMetaObject::metacall(object, QMetaObject::WriteProperty, idx + mobj->propertyOffset(), argv);executed 1045 times by 54 tests: QMetaObject::metacall(object, QMetaObject::WriteProperty, idx + mobj->propertyOffset(), argv); Executed by:- tst_QAbstractItemView
- tst_QAccessibility
- tst_QApplication
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- 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
- ...
| 1045 |
3116 | | - |
3117 | return status;executed 1046 times by 54 tests: return status; Executed by:- tst_QAbstractItemView
- tst_QAccessibility
- tst_QApplication
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- 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
- ...
| 1046 |
3118 | } | - |
3119 | | - |
3120 | | - |
3121 | | - |
3122 | | - |
3123 | | - |
3124 | | - |
3125 | | - |
3126 | | - |
3127 | | - |
3128 | bool QMetaProperty::reset(QObject *object) const | - |
3129 | { | - |
3130 | if (!object || !mobj || !isResettable())TRUE | never evaluated | FALSE | evaluated 2 times by 1 test |
TRUE | never evaluated | FALSE | evaluated 2 times by 1 test |
TRUE | never evaluated | FALSE | evaluated 2 times by 1 test |
| 0-2 |
3131 | return false; never executed: return false; | 0 |
3132 | void *argv[] = { 0 }; | - |
3133 | if (priv(mobj->d.data)->flags & PropertyAccessInStaticMetaCall && mobj->d.static_metacall)TRUE | evaluated 1 time by 1 test | FALSE | evaluated 1 time by 1 test |
TRUE | evaluated 1 time by 1 test | FALSE | never evaluated |
| 0-1 |
3134 | mobj->d.static_metacall(object, QMetaObject::ResetProperty, idx, argv);executed 1 time by 1 test: mobj->d.static_metacall(object, QMetaObject::ResetProperty, idx, argv); | 1 |
3135 | else | - |
3136 | QMetaObject::metacall(object, QMetaObject::ResetProperty, idx + mobj->propertyOffset(), argv);executed 1 time by 1 test: QMetaObject::metacall(object, QMetaObject::ResetProperty, idx + mobj->propertyOffset(), argv); | 1 |
3137 | return true;executed 2 times by 1 test: return true; | 2 |
3138 | } | - |
3139 | | - |
3140 | | - |
3141 | | - |
3142 | | - |
3143 | | - |
3144 | | - |
3145 | | - |
3146 | | - |
3147 | QVariant QMetaProperty::readOnGadget(const void *gadget) const | - |
3148 | { | - |
3149 | Q_ASSERT(priv(mobj->d.data)->flags & PropertyAccessInStaticMetaCall && mobj->d.static_metacall); | - |
3150 | return read(reinterpret_cast<const QObject*>(gadget));executed 2 times by 1 test: return read(reinterpret_cast<const QObject*>(gadget)); | 2 |
3151 | } | - |
3152 | | - |
3153 | | - |
3154 | | - |
3155 | | - |
3156 | | - |
3157 | | - |
3158 | | - |
3159 | | - |
3160 | | - |
3161 | bool QMetaProperty::writeOnGadget(void *gadget, const QVariant &value) const | - |
3162 | { | - |
3163 | Q_ASSERT(priv(mobj->d.data)->flags & PropertyAccessInStaticMetaCall && mobj->d.static_metacall); | - |
3164 | return write(reinterpret_cast<QObject*>(gadget), value);executed 1 time by 1 test: return write(reinterpret_cast<QObject*>(gadget), value); | 1 |
3165 | } | - |
3166 | | - |
3167 | | - |
3168 | | - |
3169 | | - |
3170 | | - |
3171 | | - |
3172 | | - |
3173 | | - |
3174 | | - |
3175 | | - |
3176 | | - |
3177 | bool QMetaProperty::resetOnGadget(void *gadget) const | - |
3178 | { | - |
3179 | Q_ASSERT(priv(mobj->d.data)->flags & PropertyAccessInStaticMetaCall && mobj->d.static_metacall); | - |
3180 | return reset(reinterpret_cast<QObject*>(gadget));executed 1 time by 1 test: return reset(reinterpret_cast<QObject*>(gadget)); | 1 |
3181 | } | - |
3182 | | - |
3183 | | - |
3184 | | - |
3185 | | - |
3186 | | - |
3187 | | - |
3188 | | - |
3189 | bool QMetaProperty::isResettable() const | - |
3190 | { | - |
3191 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 106 times by 4 testsEvaluated by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
- tst_QObject
|
| 0-106 |
3192 | return false; never executed: return false; | 0 |
3193 | int flags = mobj->d.data[handle + 2]; | - |
3194 | return flags & Resettable;executed 106 times by 4 tests: return flags & Resettable; Executed by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
- tst_QObject
| 106 |
3195 | } | - |
3196 | | - |
3197 | | - |
3198 | | - |
3199 | | - |
3200 | | - |
3201 | | - |
3202 | bool QMetaProperty::isReadable() const | - |
3203 | { | - |
3204 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 20379 times by 153 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-20379 |
3205 | return false; never executed: return false; | 0 |
3206 | int flags = mobj->d.data[handle + 2]; | - |
3207 | return flags & Readable;executed 20379 times by 153 tests: return flags & Readable; 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
- ...
| 20379 |
3208 | } | - |
3209 | | - |
3210 | | - |
3211 | | - |
3212 | | - |
3213 | | - |
3214 | | - |
3215 | | - |
3216 | bool QMetaProperty::hasNotifySignal() const | - |
3217 | { | - |
3218 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 103 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
|
| 0-103 |
3219 | return false; never executed: return false; | 0 |
3220 | int flags = mobj->d.data[handle + 2]; | - |
3221 | return flags & Notify;executed 103 times by 2 tests: return flags & Notify; Executed by:- tst_QMetaObject
- tst_QMetaObjectBuilder
| 103 |
3222 | } | - |
3223 | | - |
3224 | | - |
3225 | | - |
3226 | | - |
3227 | | - |
3228 | | - |
3229 | | - |
3230 | | - |
3231 | | - |
3232 | QMetaMethod QMetaProperty::notifySignal() const | - |
3233 | { | - |
3234 | int id = notifySignalIndex(); | - |
3235 | if (id != -1)TRUE | evaluated 7 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
| FALSE | evaluated 2 times by 1 test |
| 2-7 |
3236 | return mobj->method(id);executed 7 times by 2 tests: return mobj->method(id); Executed by:- tst_QMetaObject
- tst_QMetaObjectBuilder
| 7 |
3237 | else | - |
3238 | return QMetaMethod();executed 2 times by 1 test: return QMetaMethod(); | 2 |
3239 | } | - |
3240 | | - |
3241 | | - |
3242 | | - |
3243 | | - |
3244 | | - |
3245 | | - |
3246 | | - |
3247 | | - |
3248 | | - |
3249 | int QMetaProperty::notifySignalIndex() const | - |
3250 | { | - |
3251 | if (hasNotifySignal()) {TRUE | evaluated 23 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
| FALSE | evaluated 2 times by 1 test |
| 2-23 |
3252 | int offset = priv(mobj->d.data)->propertyData + | - |
3253 | priv(mobj->d.data)->propertyCount * 3 + idx; | - |
3254 | return mobj->d.data[offset] + mobj->methodOffset();executed 23 times by 2 tests: return mobj->d.data[offset] + mobj->methodOffset(); Executed by:- tst_QMetaObject
- tst_QMetaObjectBuilder
| 23 |
3255 | } else { | - |
3256 | return -1;executed 2 times by 1 test: return -1; | 2 |
3257 | } | - |
3258 | } | - |
3259 | | - |
3260 | | - |
3261 | | - |
3262 | | - |
3263 | | - |
3264 | | - |
3265 | | - |
3266 | | - |
3267 | int QMetaProperty::revision() const | - |
3268 | { | - |
3269 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 56 times by 1 test |
| 0-56 |
3270 | return 0; never executed: return 0; | 0 |
3271 | int flags = mobj->d.data[handle + 2]; | - |
3272 | if (flags & Revisioned) {TRUE | evaluated 7 times by 1 test | FALSE | evaluated 49 times by 1 test |
| 7-49 |
3273 | int offset = priv(mobj->d.data)->propertyData + | - |
3274 | priv(mobj->d.data)->propertyCount * 3 + idx; | - |
3275 | | - |
3276 | | - |
3277 | for (int i = 0; i < priv(mobj->d.data)->propertyCount; ++i) {TRUE | evaluated 7 times by 1 test | FALSE | never evaluated |
| 0-7 |
3278 | int handle = priv(mobj->d.data)->propertyData + 3*i; | - |
3279 | if (mobj->d.data[handle + 2] & Notify) {TRUE | evaluated 7 times by 1 test | FALSE | never evaluated |
| 0-7 |
3280 | offset += priv(mobj->d.data)->propertyCount; | - |
3281 | break;executed 7 times by 1 test: break; | 7 |
3282 | } | - |
3283 | } never executed: end of block | 0 |
3284 | return mobj->d.data[offset];executed 7 times by 1 test: return mobj->d.data[offset]; | 7 |
3285 | } else { | - |
3286 | return 0;executed 49 times by 1 test: return 0; | 49 |
3287 | } | - |
3288 | } | - |
3289 | | - |
3290 | | - |
3291 | | - |
3292 | | - |
3293 | | - |
3294 | | - |
3295 | | - |
3296 | bool QMetaProperty::isWritable() const | - |
3297 | { | - |
3298 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 4317 times by 69 testsEvaluated by:- tst_Gestures
- tst_QAbstractItemView
- tst_QAccessibility
- tst_QAnimationGroup
- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDockWidget
- tst_QEasingCurve
- tst_QErrorMessage
- tst_QGraphicsItem
- tst_QGraphicsObject
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QInputDialog
- tst_QItemDelegate
- ...
|
| 0-4317 |
3299 | return false; never executed: return false; | 0 |
3300 | int flags = mobj->d.data[handle + 2]; | - |
3301 | return flags & Writable;executed 4317 times by 69 tests: return flags & Writable; Executed by:- tst_Gestures
- tst_QAbstractItemView
- tst_QAccessibility
- tst_QAnimationGroup
- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDockWidget
- tst_QEasingCurve
- tst_QErrorMessage
- tst_QGraphicsItem
- tst_QGraphicsObject
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QInputDialog
- tst_QItemDelegate
- ...
| 4317 |
3302 | } | - |
3303 | | - |
3304 | | - |
3305 | | - |
3306 | | - |
3307 | | - |
3308 | | - |
3309 | | - |
3310 | | - |
3311 | | - |
3312 | | - |
3313 | | - |
3314 | | - |
3315 | bool QMetaProperty::isDesignable(const QObject *object) const | - |
3316 | { | - |
3317 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 103 times by 3 testsEvaluated by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
- tst_QStyleSheetStyle
|
| 0-103 |
3318 | return false; never executed: return false; | 0 |
3319 | int flags = mobj->d.data[handle + 2]; | - |
3320 | bool b = flags & Designable; | - |
3321 | if (object) {TRUE | never evaluated | FALSE | evaluated 103 times by 3 testsEvaluated by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
- tst_QStyleSheetStyle
|
| 0-103 |
3322 | void *argv[] = { &b }; | - |
3323 | QMetaObject::metacall(const_cast<QObject*>(object), QMetaObject::QueryPropertyDesignable, | - |
3324 | idx + mobj->propertyOffset(), argv); | - |
3325 | } never executed: end of block | 0 |
3326 | return b;executed 103 times by 3 tests: return b; Executed by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
- tst_QStyleSheetStyle
| 103 |
3327 | | - |
3328 | | - |
3329 | } | - |
3330 | | - |
3331 | | - |
3332 | | - |
3333 | | - |
3334 | | - |
3335 | | - |
3336 | | - |
3337 | | - |
3338 | | - |
3339 | | - |
3340 | | - |
3341 | bool QMetaProperty::isScriptable(const QObject *object) const | - |
3342 | { | - |
3343 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 373 times by 9 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuscpp2xml
- tst_qdbusinterface - unknown status
|
| 0-373 |
3344 | return false; never executed: return false; | 0 |
3345 | int flags = mobj->d.data[handle + 2]; | - |
3346 | bool b = flags & Scriptable; | - |
3347 | if (object) {TRUE | never evaluated | FALSE | evaluated 373 times by 9 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuscpp2xml
- tst_qdbusinterface - unknown status
|
| 0-373 |
3348 | void *argv[] = { &b }; | - |
3349 | QMetaObject::metacall(const_cast<QObject*>(object), QMetaObject::QueryPropertyScriptable, | - |
3350 | idx + mobj->propertyOffset(), argv); | - |
3351 | } never executed: end of block | 0 |
3352 | return b;executed 373 times by 9 tests: return b; Executed by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuscpp2xml
- tst_qdbusinterface - unknown status
| 373 |
3353 | } | - |
3354 | | - |
3355 | | - |
3356 | | - |
3357 | | - |
3358 | | - |
3359 | | - |
3360 | | - |
3361 | | - |
3362 | | - |
3363 | | - |
3364 | | - |
3365 | bool QMetaProperty::isStored(const QObject *object) const | - |
3366 | { | - |
3367 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 100 times by 2 testsEvaluated by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
|
| 0-100 |
3368 | return false; never executed: return false; | 0 |
3369 | int flags = mobj->d.data[handle + 2]; | - |
3370 | bool b = flags & Stored; | - |
3371 | if (object) {TRUE | never evaluated | FALSE | evaluated 100 times by 2 testsEvaluated by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
|
| 0-100 |
3372 | void *argv[] = { &b }; | - |
3373 | QMetaObject::metacall(const_cast<QObject*>(object), QMetaObject::QueryPropertyStored, | - |
3374 | idx + mobj->propertyOffset(), argv); | - |
3375 | } never executed: end of block | 0 |
3376 | return b;executed 100 times by 2 tests: return b; Executed by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
| 100 |
3377 | } | - |
3378 | | - |
3379 | | - |
3380 | | - |
3381 | | - |
3382 | | - |
3383 | | - |
3384 | | - |
3385 | | - |
3386 | | - |
3387 | | - |
3388 | | - |
3389 | | - |
3390 | | - |
3391 | | - |
3392 | bool QMetaProperty::isUser(const QObject *object) const | - |
3393 | { | - |
3394 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 5283 times by 12 testsEvaluated by:- tst_QAbstractItemView
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QItemDelegate
- tst_QItemEditorFactory
- tst_QItemView
- tst_QListWidget
- tst_QMetaObjectBuilder
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
|
| 0-5283 |
3395 | return false; never executed: return false; | 0 |
3396 | int flags = mobj->d.data[handle + 2]; | - |
3397 | bool b = flags & User; | - |
3398 | if (object) {TRUE | never evaluated | FALSE | evaluated 5283 times by 12 testsEvaluated by:- tst_QAbstractItemView
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QItemDelegate
- tst_QItemEditorFactory
- tst_QItemView
- tst_QListWidget
- tst_QMetaObjectBuilder
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
|
| 0-5283 |
3399 | void *argv[] = { &b }; | - |
3400 | QMetaObject::metacall(const_cast<QObject*>(object), QMetaObject::QueryPropertyUser, | - |
3401 | idx + mobj->propertyOffset(), argv); | - |
3402 | } never executed: end of block | 0 |
3403 | return b;executed 5283 times by 12 tests: return b; Executed by:- tst_QAbstractItemView
- tst_QDBusMetaObject
- tst_QDataWidgetMapper
- tst_QItemDelegate
- tst_QItemEditorFactory
- tst_QItemView
- tst_QListWidget
- tst_QMetaObjectBuilder
- tst_QTableView
- tst_QTableWidget
- tst_QTreeView
- tst_QTreeWidget
| 5283 |
3404 | } | - |
3405 | | - |
3406 | | - |
3407 | | - |
3408 | | - |
3409 | | - |
3410 | | - |
3411 | | - |
3412 | | - |
3413 | bool QMetaProperty::isConstant() const | - |
3414 | { | - |
3415 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 24 times by 3 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
|
| 0-24 |
3416 | return false; never executed: return false; | 0 |
3417 | int flags = mobj->d.data[handle + 2]; | - |
3418 | return flags & Constant;executed 24 times by 3 tests: return flags & Constant; Executed by:- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
| 24 |
3419 | } | - |
3420 | | - |
3421 | | - |
3422 | | - |
3423 | | - |
3424 | | - |
3425 | | - |
3426 | | - |
3427 | | - |
3428 | bool QMetaProperty::isFinal() const | - |
3429 | { | - |
3430 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 24 times by 3 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
|
| 0-24 |
3431 | return false; never executed: return false; | 0 |
3432 | int flags = mobj->d.data[handle + 2]; | - |
3433 | return flags & Final;executed 24 times by 3 tests: return flags & Final; Executed by:- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
| 24 |
3434 | } | - |
3435 | | - |
3436 | | - |
3437 | | - |
3438 | | - |
3439 | | - |
3440 | | - |
3441 | | - |
3442 | | - |
3443 | | - |
3444 | | - |
3445 | | - |
3446 | | - |
3447 | | - |
3448 | bool QMetaProperty::isEditable(const QObject *object) const | - |
3449 | { | - |
3450 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 100 times by 2 testsEvaluated by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
|
| 0-100 |
3451 | return false; never executed: return false; | 0 |
3452 | int flags = mobj->d.data[handle + 2]; | - |
3453 | bool b = flags & Editable; | - |
3454 | if (object) {TRUE | never evaluated | FALSE | evaluated 100 times by 2 testsEvaluated by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
|
| 0-100 |
3455 | void *argv[] = { &b }; | - |
3456 | QMetaObject::metacall(const_cast<QObject*>(object), QMetaObject::QueryPropertyEditable, | - |
3457 | idx + mobj->propertyOffset(), argv); | - |
3458 | } never executed: end of block | 0 |
3459 | return b;executed 100 times by 2 tests: return b; Executed by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
| 100 |
3460 | } | - |
3461 | | - |
3462 | | - |
3463 | | - |
3464 | | - |
3465 | | - |
3466 | | - |
3467 | | - |
3468 | | - |
3469 | | - |
3470 | | - |
3471 | | - |
3472 | | - |
3473 | | - |
3474 | | - |
3475 | | - |
3476 | | - |
3477 | | - |
3478 | | - |
3479 | | - |
3480 | | - |
3481 | | - |
3482 | | - |
3483 | | - |
3484 | | - |
3485 | | - |
3486 | | - |
3487 | | - |
3488 | | - |
3489 | | - |
3490 | | - |
3491 | | - |
3492 | | - |
3493 | | - |
3494 | | - |
3495 | | - |
3496 | | - |
3497 | | - |
3498 | | - |
3499 | const char *QMetaClassInfo::name() const | - |
3500 | { | - |
3501 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 14 times by 1 test |
| 0-14 |
3502 | return 0; never executed: return 0; | 0 |
3503 | return rawStringData(mobj, mobj->d.data[handle]);executed 14 times by 1 test: return rawStringData(mobj, mobj->d.data[handle]); | 14 |
3504 | } | - |
3505 | | - |
3506 | | - |
3507 | | - |
3508 | | - |
3509 | | - |
3510 | | - |
3511 | const char* QMetaClassInfo::value() const | - |
3512 | { | - |
3513 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 2840 times by 16 testsEvaluated by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuscpp2xml
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
|
| 0-2840 |
3514 | return 0; never executed: return 0; | 0 |
3515 | return rawStringData(mobj, mobj->d.data[handle + 1]);executed 2840 times by 16 tests: return rawStringData(mobj, mobj->d.data[handle + 1]); Executed by:- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbuscpp2xml
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
| 2840 |
3516 | } | - |
3517 | | - |
3518 | | - |
3519 | | - |
3520 | | - |
3521 | | - |
3522 | | - |
3523 | | - |
3524 | | - |
3525 | | - |
3526 | | - |
3527 | | - |
3528 | | - |
3529 | | - |
3530 | | - |
3531 | | - |
3532 | | - |
3533 | | - |
3534 | | - |
3535 | | - |
3536 | | - |
3537 | | - |
3538 | | - |
3539 | | - |
3540 | | - |
3541 | | - |
3542 | | - |
3543 | | - |
3544 | | - |
3545 | | - |
3546 | | - |
3547 | | - |
3548 | | - |
3549 | | - |
3550 | | - |
3551 | | - |
3552 | | - |
3553 | | - |
3554 | | - |
3555 | | - |
3556 | | - |
3557 | | - |
3558 | | - |
3559 | | - |
3560 | | - |
3561 | | - |
3562 | | - |
3563 | | - |
3564 | | - |
3565 | | - |
3566 | | - |
3567 | | - |
3568 | | - |
3569 | | - |
3570 | | - |
3571 | | - |
3572 | | - |
3573 | | - |
3574 | | - |
3575 | | - |
3576 | | - |
3577 | | - |
3578 | | - |
3579 | | - |
3580 | | - |
3581 | | - |
3582 | | - |
3583 | | - |
3584 | | - |
3585 | | - |
3586 | | - |
3587 | | - |
3588 | | - |
3589 | | - |
3590 | | - |
3591 | | - |
3592 | | - |
3593 | | - |
3594 | | - |
3595 | | - |
3596 | | - |
3597 | int QMetaObjectPrivate::originalClone(const QMetaObject *mobj, int local_method_index) | - |
3598 | { | - |
3599 | Q_ASSERT(local_method_index < get(mobj)->methodCount); | - |
3600 | int handle = get(mobj)->methodData + 5 * local_method_index; | - |
3601 | while (mobj->d.data[handle + 4] & MethodCloned) {TRUE | evaluated 53148 times by 161 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- 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_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 761807 times by 273 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
- ...
|
| 53148-761807 |
3602 | Q_ASSERT(local_method_index > 0); | - |
3603 | handle -= 5; | - |
3604 | local_method_index--; | - |
3605 | }executed 53148 times by 161 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- 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_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| 53148 |
3606 | return local_method_index;executed 761807 times by 273 tests: return local_method_index; 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
- ...
| 761807 |
3607 | } | - |
3608 | | - |
3609 | | - |
3610 | | - |
3611 | | - |
3612 | | - |
3613 | | - |
3614 | QList<QByteArray> QMetaObjectPrivate::parameterTypeNamesFromSignature(const char *signature) | - |
3615 | { | - |
3616 | QList<QByteArray> list; | - |
3617 | while (*signature && *signature != '(')TRUE | evaluated 9676 times by 1 test | FALSE | never evaluated |
TRUE | evaluated 8883 times by 1 test | FALSE | evaluated 793 times by 1 test |
| 0-9676 |
3618 | ++signature;executed 8883 times by 1 test: ++signature; | 8883 |
3619 | while (*signature && *signature != ')' && *++signature != ')') {TRUE | evaluated 1377 times by 1 test | FALSE | never evaluated |
TRUE | evaluated 939 times by 1 test | FALSE | evaluated 438 times by 1 test |
TRUE | evaluated 584 times by 1 test | FALSE | evaluated 355 times by 1 test |
| 0-1377 |
3620 | const char *begin = signature; | - |
3621 | int level = 0; | - |
3622 | while (*signature && (level > 0 || *signature != ',') && *signature != ')') {TRUE | evaluated 3650 times by 1 test | FALSE | never evaluated |
TRUE | never evaluated | FALSE | evaluated 3650 times by 1 test |
TRUE | evaluated 3504 times by 1 test | FALSE | evaluated 146 times by 1 test |
TRUE | evaluated 3066 times by 1 test | FALSE | evaluated 438 times by 1 test |
| 0-3650 |
3623 | if (*signature == '<')TRUE | never evaluated | FALSE | evaluated 3066 times by 1 test |
| 0-3066 |
3624 | ++level; never executed: ++level; | 0 |
3625 | else if (*signature == '>')TRUE | never evaluated | FALSE | evaluated 3066 times by 1 test |
| 0-3066 |
3626 | --level; never executed: --level; | 0 |
3627 | ++signature; | - |
3628 | }executed 3066 times by 1 test: end of block | 3066 |
3629 | list += QByteArray(begin, signature - begin); | - |
3630 | }executed 584 times by 1 test: end of block | 584 |
3631 | return list;executed 793 times by 1 test: return list; | 793 |
3632 | } | - |
3633 | | - |
3634 | QT_END_NAMESPACE | - |
| | |