Line | Source | Count |
1 | | - |
2 | | - |
3 | | - |
4 | | - |
5 | | - |
6 | | - |
7 | | - |
8 | | - |
9 | | - |
10 | | - |
11 | | - |
12 | | - |
13 | | - |
14 | | - |
15 | | - |
16 | | - |
17 | | - |
18 | | - |
19 | | - |
20 | | - |
21 | | - |
22 | | - |
23 | | - |
24 | | - |
25 | | - |
26 | | - |
27 | | - |
28 | | - |
29 | | - |
30 | | - |
31 | | - |
32 | | - |
33 | | - |
34 | | - |
35 | #include "qmetaobject.h" | - |
36 | #include "qmetatype.h" | - |
37 | #include "qobject.h" | - |
38 | #include "qmetaobject_p.h" | - |
39 | | - |
40 | #include <qcoreapplication.h> | - |
41 | #include <qcoreevent.h> | - |
42 | #include <qdatastream.h> | - |
43 | #include <qstringlist.h> | - |
44 | #include <qthread.h> | - |
45 | #include <qvariant.h> | - |
46 | #include <qdebug.h> | - |
47 | #include <qsemaphore.h> | - |
48 | | - |
49 | #include "private/qobject_p.h" | - |
50 | #include "private/qmetaobject_p.h" | - |
51 | | - |
52 | | - |
53 | #include "private/qmetaobject_moc_p.h" | - |
54 | | - |
55 | #include <ctype.h> | - |
56 | | - |
57 | QT_BEGIN_NAMESPACE | - |
58 | | - |
59 | | - |
60 | | - |
61 | | - |
62 | | - |
63 | | - |
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 | static inline const QMetaObjectPrivate *priv(const uint* data) | - |
140 | {executed 179832581 times by 1080 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 179832581 times by 1080 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
- ...
| 179832581 |
141 | | - |
142 | static inline const QByteArray stringData(const QMetaObject *mo, int index) | - |
143 | { | - |
144 | Q_ASSERT(priv(mo->d.data)->revision >= 7); | - |
145 | const QByteArrayDataPtr data = { const_cast<QByteArrayData*>(&mo->d.stringdata[index]) }; | - |
146 | Q_ASSERT(data.ptr->ref.isStatic()); | - |
147 | Q_ASSERT(data.ptr->alloc == 0); | - |
148 | Q_ASSERT(data.ptr->capacityReserved == 0); | - |
149 | Q_ASSERT(data.ptr->size >= 0); | - |
150 | return data;executed 27356636 times by 573 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
- ...
| 27356636 |
151 | } | - |
152 | | - |
153 | static inline const char *rawStringData(const QMetaObject *mo, int index) | - |
154 | { | - |
155 | return stringData(mo, index).data();executed 5267157 times by 550 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
- ...
| 5267157 |
156 | } | - |
157 | | - |
158 | static inline QByteArray typeNameFromTypeInfo(const QMetaObject *mo, uint typeInfo) | - |
159 | { | - |
160 | if (typeInfo & IsUnresolvedType) {TRUE | evaluated 149985 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 28538 times by 202 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
- ...
|
| 28538-149985 |
161 | return stringData(mo, typeInfo & TypeNameIndexMask);executed 149985 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
- ...
| 149985 |
162 | } else { | - |
163 | | - |
164 | const char *t = QMetaType::typeName(typeInfo); | - |
165 | return QByteArray::fromRawData(t, qstrlen(t));executed 28538 times by 202 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
- ...
| 28538 |
166 | } | - |
167 | } | - |
168 | | - |
169 | static inline const char *rawTypeNameFromTypeInfo(const QMetaObject *mo, uint typeInfo) | - |
170 | { | - |
171 | return typeNameFromTypeInfo(mo, typeInfo).constData();executed 1126 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
| 1126 |
172 | } | - |
173 | | - |
174 | static inline int typeFromTypeInfo(const QMetaObject *mo, uint typeInfo) | - |
175 | { | - |
176 | if (!(typeInfo & IsUnresolvedType))TRUE | evaluated 1335861 times by 561 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 157274 times by 219 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
|
| 157274-1335861 |
177 | return typeInfo;executed 1335861 times by 561 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
- ...
| 1335861 |
178 | return QMetaType::type(stringData(mo, typeInfo & TypeNameIndexMask));executed 157274 times by 219 tests: return QMetaType::type(stringData(mo, typeInfo & TypeNameIndexMask)); Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| 157274 |
179 | } | - |
180 | | - |
181 | class QMetaMethodPrivate : public QMetaMethod | - |
182 | { | - |
183 | public: | - |
184 | static const QMetaMethodPrivate *get(const QMetaMethod *q) | - |
185 | { return static_cast<const QMetaMethodPrivate *>(q); }executed 924818 times by 785 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
- ...
| 924818 |
186 | | - |
187 | inline QByteArray signature() const; | - |
188 | inline QByteArray name() const; | - |
189 | inline int typesDataIndex() const; | - |
190 | inline const char *rawReturnTypeName() const; | - |
191 | inline int returnType() const; | - |
192 | inline int parameterCount() const; | - |
193 | inline int parametersDataIndex() const; | - |
194 | inline uint parameterTypeInfo(int index) const; | - |
195 | inline int parameterType(int index) const; | - |
196 | inline void getParameterTypes(int *types) const; | - |
197 | inline QList<QByteArray> parameterTypes() const; | - |
198 | inline QList<QByteArray> parameterNames() const; | - |
199 | inline QByteArray tag() const; | - |
200 | inline int ownMethodIndex() const; | - |
201 | | - |
202 | private: | - |
203 | QMetaMethodPrivate(); | - |
204 | }; | - |
205 | | - |
206 | | - |
207 | | - |
208 | | - |
209 | | - |
210 | | - |
211 | | - |
212 | | - |
213 | | - |
214 | | - |
215 | | - |
216 | | - |
217 | | - |
218 | | - |
219 | QObject *QMetaObject::newInstance(QGenericArgument val0, | - |
220 | QGenericArgument val1, | - |
221 | QGenericArgument val2, | - |
222 | QGenericArgument val3, | - |
223 | QGenericArgument val4, | - |
224 | QGenericArgument val5, | - |
225 | QGenericArgument val6, | - |
226 | QGenericArgument val7, | - |
227 | QGenericArgument val8, | - |
228 | QGenericArgument val9) const | - |
229 | { | - |
230 | QByteArray constructorName = className(); | - |
231 | { | - |
232 | int idx = constructorName.lastIndexOf(':'); | - |
233 | if (idx != -1)TRUE | evaluated 1 time by 1 test | FALSE | evaluated 4 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
|
| 1-4 |
234 | constructorName.remove(0, idx+1); executed 1 time by 1 test: constructorName.remove(0, idx+1); | 1 |
235 | } | - |
236 | QVarLengthArray<char, 512> sig; | - |
237 | sig.append(constructorName.constData(), constructorName.length()); | - |
238 | sig.append('('); | - |
239 | | - |
240 | enum { MaximumParamCount = 10 }; | - |
241 | const char *typeNames[] = {val0.name(), val1.name(), val2.name(), val3.name(), val4.name(), | - |
242 | val5.name(), val6.name(), val7.name(), val8.name(), val9.name()}; | - |
243 | | - |
244 | int paramCount; | - |
245 | for (paramCount = 0; paramCount < MaximumParamCount; ++paramCount) {TRUE | evaluated 8 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
| FALSE | never evaluated |
| 0-8 |
246 | int len = qstrlen(typeNames[paramCount]); | - |
247 | 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 |
248 | break;executed 5 times by 2 tests: break; Executed by:- tst_QMetaObject
- tst_QMetaObjectBuilder
| 5 |
249 | sig.append(typeNames[paramCount], len); | - |
250 | sig.append(','); | - |
251 | }executed 3 times by 2 tests: end of block Executed by:- tst_QMetaObject
- tst_QMetaObjectBuilder
| 3 |
252 | 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 |
253 | sig.append(')'); executed 2 times by 2 tests: sig.append(')'); Executed by:- tst_QMetaObject
- tst_QMetaObjectBuilder
| 2 |
254 | else | - |
255 | sig[sig.size() - 1] = ')';executed 3 times by 2 tests: sig[sig.size() - 1] = ')'; Executed by:- tst_QMetaObject
- tst_QMetaObjectBuilder
| 3 |
256 | sig.append('\0'); | - |
257 | | - |
258 | int idx = indexOfConstructor(sig.constData()); | - |
259 | if (idx < 0) {TRUE | evaluated 1 time by 1 test | FALSE | evaluated 4 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
|
| 1-4 |
260 | QByteArray norm = QMetaObject::normalizedSignature(sig.constData()); | - |
261 | idx = indexOfConstructor(norm.constData()); | - |
262 | }executed 1 time by 1 test: end of block | 1 |
263 | if (idx < 0)TRUE | evaluated 1 time by 1 test | FALSE | evaluated 4 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
|
| 1-4 |
264 | return 0;executed 1 time by 1 test: return 0; | 1 |
265 | | - |
266 | QObject *returnValue = 0; | - |
267 | void *param[] = {&returnValue, val0.data(), val1.data(), val2.data(), val3.data(), val4.data(), | - |
268 | val5.data(), val6.data(), val7.data(), val8.data(), val9.data()}; | - |
269 | | - |
270 | if (static_metacall(CreateInstance, idx, param) >= 0)TRUE | never evaluated | FALSE | evaluated 4 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
|
| 0-4 |
271 | return 0; never executed: return 0; | 0 |
272 | return returnValue;executed 4 times by 2 tests: return returnValue; Executed by:- tst_QMetaObject
- tst_QMetaObjectBuilder
| 4 |
273 | } | - |
274 | | - |
275 | | - |
276 | | - |
277 | | - |
278 | int QMetaObject::static_metacall(Call cl, int idx, void **argv) const | - |
279 | { | - |
280 | Q_ASSERT(priv(d.data)->revision >= 6); | - |
281 | if (!d.static_metacall)TRUE | evaluated 3 times by 1 test | FALSE | evaluated 221269 times by 204 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-221269 |
282 | return 0;executed 3 times by 1 test: return 0; | 3 |
283 | d.static_metacall(0, cl, idx, argv); | - |
284 | return -1;executed 221269 times by 204 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
- ...
| 221269 |
285 | } | - |
286 | | - |
287 | | - |
288 | | - |
289 | | - |
290 | int QMetaObject::metacall(QObject *object, Call cl, int idx, void **argv) | - |
291 | { | - |
292 | if (object->d_ptr->metaObject)TRUE | never evaluated | FALSE | evaluated 42141 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-42141 |
293 | return object->d_ptr->metaObject->metaCall(object, cl, idx, argv); never executed: return object->d_ptr->metaObject->metaCall(object, cl, idx, argv); | 0 |
294 | else | - |
295 | return object->qt_metacall(cl, idx, argv);executed 42141 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
- ...
| 42141 |
296 | } | - |
297 | | - |
298 | static inline const char *objectClassName(const QMetaObject *m) | - |
299 | { | - |
300 | return rawStringData(m, priv(m->d.data)->className);executed 885959 times by 548 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
- ...
| 885959 |
301 | } | - |
302 | | - |
303 | | - |
304 | | - |
305 | | - |
306 | | - |
307 | | - |
308 | const char *QMetaObject::className() const | - |
309 | { | - |
310 | return objectClassName(this); | - |
311 | } | - |
312 | | - |
313 | | - |
314 | | - |
315 | | - |
316 | | - |
317 | | - |
318 | | - |
319 | | - |
320 | | - |
321 | | - |
322 | | - |
323 | | - |
324 | | - |
325 | | - |
326 | | - |
327 | | - |
328 | QObject *QMetaObject::cast(QObject *obj) const | - |
329 | { | - |
330 | if (obj) {TRUE | evaluated 11884777 times by 710 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 280544 times by 295 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- 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_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
| 280544-11884777 |
331 | const QMetaObject *m = obj->metaObject(); | - |
332 | do { | - |
333 | if (m == this)TRUE | evaluated 11057149 times by 709 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 10706005 times by 266 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_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 10706005-11057149 |
334 | return obj;executed 11057149 times by 709 tests: return 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
- ...
| 11057149 |
335 | } while ((m = m->d.superdata));executed 10706005 times by 266 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_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
TRUE | evaluated 9878377 times by 266 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_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| FALSE | evaluated 827628 times by 213 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
| 827628-10706005 |
336 | }executed 827628 times by 213 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| 827628 |
337 | return 0;executed 1108172 times by 339 tests: return 0; Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- 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_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
| 1108172 |
338 | } | - |
339 | | - |
340 | | - |
341 | | - |
342 | | - |
343 | | - |
344 | | - |
345 | | - |
346 | const QObject *QMetaObject::cast(const QObject *obj) const | - |
347 | { | - |
348 | if (obj) {TRUE | evaluated 263086 times by 115 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractItemView
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QApplication
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFile
- tst_QFileDialog2
- tst_QFileSystemModel
- ...
| FALSE | evaluated 23734 times by 44 testsEvaluated by:- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QComboBox
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QErrorMessage
- tst_QFontDialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsItem
- tst_QGraphicsLinearLayout
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QInputDialog
- tst_QItemDelegate
- tst_QLabel
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMessageBox
- tst_QPlainTextEdit
- tst_QPushButton
- ...
|
| 23734-263086 |
349 | const QMetaObject *m = obj->metaObject(); | - |
350 | do { | - |
351 | if (m == this)TRUE | evaluated 43935 times by 87 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFile
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontDialog
- ...
| FALSE | evaluated 859818 times by 83 testsEvaluated by:- tst_Gestures
- tst_QAbstractItemView
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QApplication
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontDialog
- tst_QFormLayout
- tst_QGraphicsItem
- tst_QGraphicsLinearLayout
- ...
|
| 43935-859818 |
352 | return obj;executed 43935 times by 87 tests: return obj; Executed by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFile
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontDialog
- ...
| 43935 |
353 | } while ((m = m->d.superdata));executed 859818 times by 83 tests: end of block Executed by:- tst_Gestures
- tst_QAbstractItemView
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QApplication
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontDialog
- tst_QFormLayout
- tst_QGraphicsItem
- tst_QGraphicsLinearLayout
- ...
TRUE | evaluated 640667 times by 83 testsEvaluated by:- tst_Gestures
- tst_QAbstractItemView
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QApplication
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontDialog
- tst_QFormLayout
- tst_QGraphicsItem
- tst_QGraphicsLinearLayout
- ...
| FALSE | evaluated 219151 times by 77 testsEvaluated by:- tst_Gestures
- tst_QAbstractItemView
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QApplication
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontDialog
- tst_QFormLayout
- tst_QGraphicsItem
- tst_QGraphicsLinearLayout
- ...
|
| 219151-859818 |
354 | }executed 219151 times by 77 tests: end of block Executed by:- tst_Gestures
- tst_QAbstractItemView
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QApplication
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontDialog
- tst_QFormLayout
- tst_QGraphicsItem
- tst_QGraphicsLinearLayout
- ...
| 219151 |
355 | return 0;executed 242885 times by 94 tests: return 0; Executed by:- tst_Gestures
- tst_QAbstractItemView
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontDialog
- ...
| 242885 |
356 | } | - |
357 | | - |
358 | #ifndef QT_NO_TRANSLATION | - |
359 | | - |
360 | | - |
361 | | - |
362 | QString QMetaObject::tr(const char *s, const char *c, int n) const | - |
363 | { | - |
364 | return QCoreApplication::translate(objectClassName(this), s, c, n); | - |
365 | } | - |
366 | #endif // QT_NO_TRANSLATION | - |
367 | | - |
368 | | - |
369 | | - |
370 | | - |
371 | | - |
372 | | - |
373 | | - |
374 | | - |
375 | | - |
376 | | - |
377 | | - |
378 | int QMetaObject::methodOffset() const | - |
379 | { | - |
380 | int offset = 0; | - |
381 | const QMetaObject *m = d.superdata; | - |
382 | while (m) {TRUE | evaluated 31730026 times by 711 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 12164975 times by 711 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
- ...
|
| 12164975-31730026 |
383 | offset += priv(m->d.data)->methodCount; | - |
384 | m = m->d.superdata; | - |
385 | }executed 31730026 times by 711 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
- ...
| 31730026 |
386 | return offset;executed 12164975 times by 711 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
- ...
| 12164975 |
387 | } | - |
388 | | - |
389 | | - |
390 | | - |
391 | | - |
392 | | - |
393 | | - |
394 | | - |
395 | | - |
396 | | - |
397 | | - |
398 | | - |
399 | | - |
400 | int QMetaObject::enumeratorOffset() const | - |
401 | { | - |
402 | int offset = 0; | - |
403 | const QMetaObject *m = d.superdata; | - |
404 | while (m) {TRUE | evaluated 44117 times by 82 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 139492 times by 139 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
- ...
|
| 44117-139492 |
405 | offset += priv(m->d.data)->enumeratorCount; | - |
406 | m = m->d.superdata; | - |
407 | }executed 44117 times by 82 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
- ...
| 44117 |
408 | return offset;executed 139492 times by 139 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
- ...
| 139492 |
409 | } | - |
410 | | - |
411 | | - |
412 | | - |
413 | | - |
414 | | - |
415 | | - |
416 | | - |
417 | | - |
418 | | - |
419 | | - |
420 | | - |
421 | int QMetaObject::propertyOffset() const | - |
422 | { | - |
423 | int offset = 0; | - |
424 | const QMetaObject *m = d.superdata; | - |
425 | while (m) {TRUE | evaluated 191732 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 106237 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
- ...
|
| 106237-191732 |
426 | offset += priv(m->d.data)->propertyCount; | - |
427 | m = m->d.superdata; | - |
428 | }executed 191732 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
- ...
| 191732 |
429 | return offset;executed 106237 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
- ...
| 106237 |
430 | } | - |
431 | | - |
432 | | - |
433 | | - |
434 | | - |
435 | | - |
436 | | - |
437 | | - |
438 | | - |
439 | | - |
440 | | - |
441 | | - |
442 | int QMetaObject::classInfoOffset() const | - |
443 | { | - |
444 | int offset = 0; | - |
445 | const QMetaObject *m = d.superdata; | - |
446 | 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 |
447 | offset += priv(m->d.data)->classInfoCount; | - |
448 | m = m->d.superdata; | - |
449 | }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 |
450 | 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 |
451 | } | - |
452 | | - |
453 | | - |
454 | | - |
455 | | - |
456 | | - |
457 | | - |
458 | | - |
459 | | - |
460 | int QMetaObject::constructorCount() const | - |
461 | { | - |
462 | Q_ASSERT(priv(d.data)->revision >= 2); | - |
463 | return priv(d.data)->constructorCount;executed 40 times by 2 tests: return priv(d.data)->constructorCount; Executed by:- tst_QMetaMethod
- tst_QMetaObjectBuilder
| 40 |
464 | } | - |
465 | | - |
466 | | - |
467 | | - |
468 | | - |
469 | | - |
470 | | - |
471 | | - |
472 | | - |
473 | | - |
474 | | - |
475 | | - |
476 | | - |
477 | | - |
478 | int QMetaObject::methodCount() const | - |
479 | { | - |
480 | int n = priv(d.data)->methodCount; | - |
481 | const QMetaObject *m = d.superdata; | - |
482 | while (m) {TRUE | evaluated 414357 times by 548 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
| FALSE | evaluated 504274 times by 551 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
|
| 414357-504274 |
483 | n += priv(m->d.data)->methodCount; | - |
484 | m = m->d.superdata; | - |
485 | }executed 414357 times by 548 tests: end of block Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
| 414357 |
486 | return n;executed 504274 times by 551 tests: return n; Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
| 504274 |
487 | } | - |
488 | | - |
489 | | - |
490 | | - |
491 | | - |
492 | | - |
493 | | - |
494 | int QMetaObject::enumeratorCount() const | - |
495 | { | - |
496 | int n = priv(d.data)->enumeratorCount; | - |
497 | const QMetaObject *m = d.superdata; | - |
498 | 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 |
499 | n += priv(m->d.data)->enumeratorCount; | - |
500 | m = m->d.superdata; | - |
501 | }executed 140 times by 2 tests: end of block Executed by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
| 140 |
502 | return n;executed 87 times by 2 tests: return n; Executed by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
| 87 |
503 | } | - |
504 | | - |
505 | | - |
506 | | - |
507 | | - |
508 | | - |
509 | | - |
510 | | - |
511 | | - |
512 | | - |
513 | | - |
514 | | - |
515 | | - |
516 | int QMetaObject::propertyCount() const | - |
517 | { | - |
518 | int n = priv(d.data)->propertyCount; | - |
519 | const QMetaObject *m = d.superdata; | - |
520 | while (m) {TRUE | evaluated 1944 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 1188 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
|
| 1188-1944 |
521 | n += priv(m->d.data)->propertyCount; | - |
522 | m = m->d.superdata; | - |
523 | }executed 1944 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
| 1944 |
524 | return n;executed 1188 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
| 1188 |
525 | } | - |
526 | | - |
527 | | - |
528 | | - |
529 | | - |
530 | | - |
531 | | - |
532 | int QMetaObject::classInfoCount() const | - |
533 | { | - |
534 | int n = priv(d.data)->classInfoCount; | - |
535 | const QMetaObject *m = d.superdata; | - |
536 | 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 |
537 | n += priv(m->d.data)->classInfoCount; | - |
538 | m = m->d.superdata; | - |
539 | }executed 140 times by 2 tests: end of block Executed by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
| 140 |
540 | return n;executed 87 times by 2 tests: return n; Executed by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
| 87 |
541 | } | - |
542 | | - |
543 | | - |
544 | | - |
545 | | - |
546 | static bool methodMatch(const QMetaObject *m, int handle, | - |
547 | const QByteArray &name, int argc, | - |
548 | const QArgumentType *types) | - |
549 | { | - |
550 | Q_ASSERT(priv(m->d.data)->revision >= 7); | - |
551 | if (int(m->d.data[handle + 1]) != argc)TRUE | evaluated 13239455 times by 569 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 21692073 times by 571 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
- ...
|
| 13239455-21692073 |
552 | return false;executed 13239455 times by 569 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
- ...
| 13239455 |
553 | | - |
554 | if (stringData(m, m->d.data[handle]) != name)TRUE | evaluated 20096891 times by 570 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 1595182 times by 570 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
- ...
|
| 1595182-20096891 |
555 | return false;executed 20096891 times by 570 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
- ...
| 20096891 |
556 | | - |
557 | int paramsIndex = m->d.data[handle + 2] + 1; | - |
558 | for (int i = 0; i < argc; ++i) {TRUE | evaluated 1604236 times by 272 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 1591671 times by 570 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
- ...
|
| 1591671-1604236 |
559 | uint typeInfo = m->d.data[paramsIndex + i]; | - |
560 | if (types[i].type()) {TRUE | evaluated 1458460 times by 271 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 145776 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
- ...
|
| 145776-1458460 |
561 | if (types[i].type() != typeFromTypeInfo(m, typeInfo))TRUE | evaluated 1367 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 1457093 times by 271 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
- ...
|
| 1367-1457093 |
562 | return false;executed 1367 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
- ...
| 1367 |
563 | } else {executed 1456709 times by 271 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
- ...
| 1456709 |
564 | if (types[i].name() != typeNameFromTypeInfo(m, typeInfo))TRUE | evaluated 2144 times by 21 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_QTcpServer
- tst_QTextDocument
- tst_QUdpSocket
- tst_QXmlInputSource
- tst_QXmlStream
- tst_Spdy
| FALSE | evaluated 143632 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
- ...
|
| 2144-143632 |
565 | return false;executed 2144 times by 21 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_QTcpServer
- tst_QTextDocument
- tst_QUdpSocket
- tst_QXmlInputSource
- tst_QXmlStream
- tst_Spdy
| 2144 |
566 | }executed 143632 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
- ...
| 143632 |
567 | } | - |
568 | | - |
569 | return true;executed 1591671 times by 570 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
- ...
| 1591671 |
570 | } | - |
571 | | - |
572 | | - |
573 | | - |
574 | | - |
575 | | - |
576 | | - |
577 | | - |
578 | template<int MethodType> | - |
579 | static inline int indexOfMethodRelative(const QMetaObject **baseObject, | - |
580 | const QByteArray &name, int argc, | - |
581 | const QArgumentType *types) | - |
582 | { | - |
583 | for (const QMetaObject *m = *baseObject; m; m = m->d.superdata) {TRUE | evaluated 3626702 times by 571 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 782175 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
- ...
|
| 782175-3626702 |
584 | Q_ASSERT(priv(m->d.data)->revision >= 7); | - |
585 | int i = (MethodType == MethodSignal)TRUE | evaluated 1282032 times by 268 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 2344670 times by 571 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
- ...
|
| 1282032-2344670 |
586 | ? (priv(m->d.data)->signalCount - 1) : (priv(m->d.data)->methodCount - 1); | - |
587 | const int end = (MethodType == MethodSlot) | - |
588 | ? (priv(m->d.data)->signalCount) : 0; | - |
589 | | - |
590 | for (; i >= end; --i) {TRUE | evaluated 34931477 times by 571 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 2035045 times by 552 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
- ...
|
| 2035045-34931477 |
591 | int handle = priv(m->d.data)->methodData + 5*i; | - |
592 | if (methodMatch(m, handle, name, argc, types)) {TRUE | evaluated 1591657 times by 570 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 33339820 times by 570 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
- ...
|
| 1591657-33339820 |
593 | *baseObject = m; | - |
594 | return i;executed 1591657 times by 570 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
- ...
| 1591657 |
595 | } | - |
596 | }executed 33339820 times by 570 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
- ...
| 33339820 |
597 | }executed 2035045 times by 552 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
- ...
| 2035045 |
598 | return -1;executed 782175 times by 550 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
- ...
| 782175 |
599 | } | - |
600 | | - |
601 | | - |
602 | | - |
603 | | - |
604 | | - |
605 | | - |
606 | | - |
607 | | - |
608 | | - |
609 | | - |
610 | | - |
611 | | - |
612 | int QMetaObject::indexOfConstructor(const char *constructor) const | - |
613 | { | - |
614 | Q_ASSERT(priv(d.data)->revision >= 7); | - |
615 | QArgumentTypeArray types; | - |
616 | QByteArray name = QMetaObjectPrivate::decodeMethodSignature(constructor, types); | - |
617 | 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 |
618 | } | - |
619 | | - |
620 | | - |
621 | | - |
622 | | - |
623 | | - |
624 | | - |
625 | | - |
626 | | - |
627 | | - |
628 | int QMetaObject::indexOfMethod(const char *method) const | - |
629 | { | - |
630 | const QMetaObject *m = this; | - |
631 | int i; | - |
632 | Q_ASSERT(priv(m->d.data)->revision >= 7); | - |
633 | QArgumentTypeArray types; | - |
634 | QByteArray name = QMetaObjectPrivate::decodeMethodSignature(method, types); | - |
635 | i = indexOfMethodRelative<0>(&m, name, types.size(), types.constData()); | - |
636 | if (i >= 0)TRUE | evaluated 375093 times by 567 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 166608 times by 540 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
- ...
|
| 166608-375093 |
637 | i += m->methodOffset();executed 375093 times by 567 tests: i += m->methodOffset(); 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
- ...
| 375093 |
638 | return i;executed 541701 times by 568 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
- ...
| 541701 |
639 | } | - |
640 | | - |
641 | | - |
642 | | - |
643 | static void argumentTypesFromString(const char *str, const char *end, | - |
644 | QArgumentTypeArray &types) | - |
645 | { | - |
646 | Q_ASSERT(str <= end); | - |
647 | while (str != end) {TRUE | evaluated 1610441 times by 272 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 1760142 times by 571 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
- ...
|
| 1610441-1760142 |
648 | if (!types.isEmpty())TRUE | evaluated 753590 times by 187 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 856467 times by 272 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
- ...
|
| 753590-856467 |
649 | ++str; executed 753590 times by 187 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
- ...
| 753590 |
650 | const char *begin = str; | - |
651 | int level = 0; | - |
652 | while (str != end && (level > 0 || *str != ',')) {TRUE | evaluated 13902482 times by 272 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 856851 times by 272 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 764572 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 13137910 times by 272 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 12384320 times by 272 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 753590 times by 187 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
- ...
|
| 753590-13902482 |
653 | if (*str == '<')TRUE | evaluated 54700 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 13094192 times by 272 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
- ...
|
| 54700-13094192 |
654 | ++level;executed 54700 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
- ...
| 54700 |
655 | else if (*str == '>')TRUE | evaluated 54700 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 13039492 times by 272 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
- ...
|
| 54700-13039492 |
656 | --level;executed 54700 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
- ...
| 54700 |
657 | ++str; | - |
658 | }executed 13148892 times by 272 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
- ...
| 13148892 |
659 | types += QArgumentType(QByteArray(begin, str - begin)); | - |
660 | }executed 1610441 times by 272 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
- ...
| 1610441 |
661 | }executed 1760142 times by 571 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
- ...
| 1760142 |
662 | | - |
663 | | - |
664 | | - |
665 | QByteArray QMetaObjectPrivate::decodeMethodSignature( | - |
666 | const char *signature, QArgumentTypeArray &types) | - |
667 | { | - |
668 | Q_ASSERT(signature != 0); | - |
669 | const char *lparens = strchr(signature, '('); | - |
670 | if (!lparens)TRUE | never evaluated | FALSE | evaluated 1760142 times by 571 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-1760142 |
671 | return QByteArray(); never executed: return QByteArray(); | 0 |
672 | const char *rparens = strrchr(lparens + 1, ')'); | - |
673 | if (!rparens || *(rparens+1))TRUE | never evaluated | FALSE | evaluated 1760142 times by 571 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 1760142 times by 571 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-1760142 |
674 | return QByteArray(); never executed: return QByteArray(); | 0 |
675 | int nameLength = lparens - signature; | - |
676 | argumentTypesFromString(lparens + 1, rparens, types); | - |
677 | return QByteArray::fromRawData(signature, nameLength);executed 1760142 times by 571 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
- ...
| 1760142 |
678 | } | - |
679 | | - |
680 | | - |
681 | | - |
682 | | - |
683 | | - |
684 | | - |
685 | | - |
686 | | - |
687 | | - |
688 | | - |
689 | | - |
690 | | - |
691 | int QMetaObject::indexOfSignal(const char *signal) const | - |
692 | { | - |
693 | const QMetaObject *m = this; | - |
694 | int i; | - |
695 | Q_ASSERT(priv(m->d.data)->revision >= 7); | - |
696 | QArgumentTypeArray types; | - |
697 | QByteArray name = QMetaObjectPrivate::decodeMethodSignature(signal, types); | - |
698 | i = QMetaObjectPrivate::indexOfSignalRelative(&m, name, types.size(), types.constData()); | - |
699 | if (i >= 0)TRUE | evaluated 109934 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-109934 |
700 | i += m->methodOffset();executed 109934 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
- ...
| 109934 |
701 | return i;executed 110210 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
- ...
| 110210 |
702 | } | - |
703 | | - |
704 | | - |
705 | | - |
706 | | - |
707 | | - |
708 | | - |
709 | | - |
710 | int QMetaObjectPrivate::indexOfSignalRelative(const QMetaObject **baseObject, | - |
711 | const QByteArray &name, int argc, | - |
712 | const QArgumentType *types) | - |
713 | { | - |
714 | int i = indexOfMethodRelative<MethodSignal>(baseObject, name, argc, types); | - |
715 | #ifndef QT_NO_DEBUG | - |
716 | const QMetaObject *m = *baseObject; | - |
717 | if (i >= 0 && m && m->d.superdata) {TRUE | evaluated 687373 times by 268 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 27062 times by 112 testsEvaluated by:- tst_ModelTest
- 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
- tst_QFileSystemModel
- ...
|
TRUE | evaluated 687373 times by 268 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 560824 times by 260 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 126549 times by 200 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_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- ...
|
| 0-687373 |
718 | int conflict = indexOfMethod(m->d.superdata, name, argc, types); | - |
719 | if (conflict >= 0) {TRUE | evaluated 4 times by 1 test | FALSE | evaluated 560820 times by 260 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-560820 |
720 | QMetaMethod conflictMethod = m->d.superdata->method(conflict); | - |
721 | qWarning("QMetaObject::indexOfSignal: signal %s from %s redefined in %s", | - |
722 | conflictMethod.methodSignature().constData(), | - |
723 | objectClassName(m->d.superdata), objectClassName(m)); | - |
724 | }executed 4 times by 1 test: end of block | 4 |
725 | }executed 560824 times by 260 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
- ...
| 560824 |
726 | #endif | - |
727 | return i;executed 714435 times by 268 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
- ...
| 714435 |
728 | } | - |
729 | | - |
730 | | - |
731 | | - |
732 | | - |
733 | | - |
734 | | - |
735 | | - |
736 | | - |
737 | | - |
738 | int QMetaObject::indexOfSlot(const char *slot) const | - |
739 | { | - |
740 | const QMetaObject *m = this; | - |
741 | int i; | - |
742 | Q_ASSERT(priv(m->d.data)->revision >= 7); | - |
743 | QArgumentTypeArray types; | - |
744 | QByteArray name = QMetaObjectPrivate::decodeMethodSignature(slot, types); | - |
745 | i = QMetaObjectPrivate::indexOfSlotRelative(&m, name, types.size(), types.constData()); | - |
746 | if (i >= 0)TRUE | evaluated 5136 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-5136 |
747 | i += m->methodOffset();executed 5136 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
- ...
| 5136 |
748 | return i;executed 5140 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
- ...
| 5140 |
749 | } | - |
750 | | - |
751 | | - |
752 | int QMetaObjectPrivate::indexOfSlotRelative(const QMetaObject **m, | - |
753 | const QByteArray &name, int argc, | - |
754 | const QArgumentType *types) | - |
755 | { | - |
756 | return indexOfMethodRelative<MethodSlot>(m, name, argc, types);executed 502928 times by 261 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
- ...
| 502928 |
757 | } | - |
758 | | - |
759 | int QMetaObjectPrivate::indexOfSignal(const QMetaObject *m, const QByteArray &name, | - |
760 | int argc, const QArgumentType *types) | - |
761 | { | - |
762 | int i = indexOfSignalRelative(&m, name, argc, types); | - |
763 | if (i >= 0)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
764 | i += m->methodOffset(); never executed: i += m->methodOffset(); | 0 |
765 | return i; never executed: return i; | 0 |
766 | } | - |
767 | | - |
768 | int QMetaObjectPrivate::indexOfSlot(const QMetaObject *m, const QByteArray &name, | - |
769 | int argc, const QArgumentType *types) | - |
770 | { | - |
771 | int i = indexOfSlotRelative(&m, name, argc, types); | - |
772 | if (i >= 0)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
773 | i += m->methodOffset(); never executed: i += m->methodOffset(); | 0 |
774 | return i; never executed: return i; | 0 |
775 | } | - |
776 | | - |
777 | int QMetaObjectPrivate::indexOfMethod(const QMetaObject *m, const QByteArray &name, | - |
778 | int argc, const QArgumentType *types) | - |
779 | { | - |
780 | int i = indexOfMethodRelative<0>(&m, name, argc, types); | - |
781 | if (i >= 0)TRUE | evaluated 27258 times by 110 testsEvaluated by:- tst_ModelTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractInterface
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDirModel
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- ...
| FALSE | evaluated 587510 times by 260 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
- ...
|
| 27258-587510 |
782 | i += m->methodOffset();executed 27258 times by 110 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
- ...
| 27258 |
783 | return i;executed 614768 times by 260 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
- ...
| 614768 |
784 | } | - |
785 | | - |
786 | int QMetaObjectPrivate::indexOfConstructor(const QMetaObject *m, const QByteArray &name, | - |
787 | int argc, const QArgumentType *types) | - |
788 | { | - |
789 | 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 |
790 | int handle = priv(m->d.data)->constructorData + 5*i; | - |
791 | 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 |
792 | return i;executed 14 times by 4 tests: return i; Executed by:- tst_QMetaMethod
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QObject
| 14 |
793 | }executed 37 times by 3 tests: end of block Executed by:- tst_QMetaMethod
- tst_QMetaObject
- tst_QMetaObjectBuilder
| 37 |
794 | return -1;executed 2 times by 1 test: return -1; | 2 |
795 | } | - |
796 | | - |
797 | | - |
798 | | - |
799 | | - |
800 | | - |
801 | | - |
802 | | - |
803 | | - |
804 | | - |
805 | | - |
806 | | - |
807 | int QMetaObjectPrivate::signalOffset(const QMetaObject *m) | - |
808 | { | - |
809 | Q_ASSERT(m != 0); | - |
810 | int offset = 0; | - |
811 | for (m = m->d.superdata; m; m = m->d.superdata)TRUE | evaluated 32531552 times by 1079 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- ...
| FALSE | evaluated 24186326 times by 1079 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSocket
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- ...
|
| 24186326-32531552 |
812 | offset += priv(m->d.data)->signalCount;executed 32531552 times by 1079 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
- ...
| 32531552 |
813 | return offset;executed 24186326 times by 1079 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
- ...
| 24186326 |
814 | } | - |
815 | | - |
816 | | - |
817 | | - |
818 | | - |
819 | | - |
820 | | - |
821 | | - |
822 | | - |
823 | | - |
824 | | - |
825 | | - |
826 | int QMetaObjectPrivate::absoluteSignalCount(const QMetaObject *m) | - |
827 | { | - |
828 | Q_ASSERT(m != 0); | - |
829 | int n = priv(m->d.data)->signalCount; | - |
830 | 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 |
831 | 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 |
832 | return n;executed 4 times by 2 tests: return n; Executed by:- tst_QMetaObject
- tst_QObject
| 4 |
833 | } | - |
834 | | - |
835 | | - |
836 | | - |
837 | | - |
838 | | - |
839 | | - |
840 | | - |
841 | | - |
842 | | - |
843 | | - |
844 | int QMetaObjectPrivate::signalIndex(const QMetaMethod &m) | - |
845 | { | - |
846 | if (!m.mobj)TRUE | never evaluated | FALSE | evaluated 14 times by 1 test |
| 0-14 |
847 | return -1; never executed: return -1; | 0 |
848 | return QMetaMethodPrivate::get(&m)->ownMethodIndex() + signalOffset(m.mobj);executed 14 times by 1 test: return QMetaMethodPrivate::get(&m)->ownMethodIndex() + signalOffset(m.mobj); | 14 |
849 | } | - |
850 | | - |
851 | | - |
852 | | - |
853 | | - |
854 | | - |
855 | | - |
856 | | - |
857 | | - |
858 | | - |
859 | | - |
860 | QMetaMethod QMetaObjectPrivate::signal(const QMetaObject *m, int signal_index) | - |
861 | { | - |
862 | QMetaMethod result; | - |
863 | if (signal_index < 0)TRUE | evaluated 3792 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 1832610 times by 516 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
- ...
|
| 3792-1832610 |
864 | return result;executed 3792 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
- ...
| 3792 |
865 | Q_ASSERT(m != 0); | - |
866 | int i = signal_index; | - |
867 | i -= signalOffset(m); | - |
868 | if (i < 0 && m->d.superdata)TRUE | evaluated 147126 times by 415 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 1685484 times by 516 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 147126 times by 415 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-1685484 |
869 | return signal(m->d.superdata, signal_index);executed 147126 times by 415 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
- ...
| 147126 |
870 | | - |
871 | if (i >= 0 && i < priv(m->d.data)->signalCount) {TRUE | evaluated 1685484 times by 516 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 1685018 times by 516 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 466 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-1685484 |
872 | result.mobj = m; | - |
873 | result.handle = priv(m->d.data)->methodData + 5*i; | - |
874 | }executed 1685018 times by 516 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
- ...
| 1685018 |
875 | return result;executed 1685484 times by 516 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
- ...
| 1685484 |
876 | } | - |
877 | | - |
878 | | - |
879 | | - |
880 | | - |
881 | | - |
882 | | - |
883 | | - |
884 | bool QMetaObjectPrivate::checkConnectArgs(int signalArgc, const QArgumentType *signalTypes, | - |
885 | int methodArgc, const QArgumentType *methodTypes) | - |
886 | { | - |
887 | if (signalArgc < methodArgc)TRUE | never evaluated | FALSE | evaluated 521946 times by 264 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 0-521946 |
888 | return false; never executed: return false; | 0 |
889 | for (int i = 0; i < methodArgc; ++i) {TRUE | evaluated 549937 times by 209 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 521945 times by 264 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 521945-549937 |
890 | if (signalTypes[i] != methodTypes[i])TRUE | evaluated 1 time by 1 test | FALSE | evaluated 549936 times by 209 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-549936 |
891 | return false;executed 1 time by 1 test: return false; | 1 |
892 | }executed 549936 times by 209 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
- ...
| 549936 |
893 | return true;executed 521945 times by 264 tests: return true; Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| 521945 |
894 | } | - |
895 | | - |
896 | | - |
897 | | - |
898 | | - |
899 | | - |
900 | | - |
901 | | - |
902 | bool QMetaObjectPrivate::checkConnectArgs(const QMetaMethodPrivate *signal, | - |
903 | const QMetaMethodPrivate *method) | - |
904 | { | - |
905 | if (signal->methodType() != QMetaMethod::Signal)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
906 | return false; never executed: return false; | 0 |
907 | if (signal->parameterCount() < method->parameterCount())TRUE | never evaluated | FALSE | never evaluated |
| 0 |
908 | return false; never executed: return false; | 0 |
909 | const QMetaObject *smeta = signal->enclosingMetaObject(); | - |
910 | const QMetaObject *rmeta = method->enclosingMetaObject(); | - |
911 | for (int i = 0; i < method->parameterCount(); ++i) {TRUE | never evaluated | FALSE | never evaluated |
| 0 |
912 | uint sourceTypeInfo = signal->parameterTypeInfo(i); | - |
913 | uint targetTypeInfo = method->parameterTypeInfo(i); | - |
914 | if ((sourceTypeInfo & IsUnresolvedType)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
915 | || (targetTypeInfo & IsUnresolvedType)) {TRUE | never evaluated | FALSE | never evaluated |
| 0 |
916 | QByteArray sourceName = typeNameFromTypeInfo(smeta, sourceTypeInfo); | - |
917 | QByteArray targetName = typeNameFromTypeInfo(rmeta, targetTypeInfo); | - |
918 | if (sourceName != targetName)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
919 | return false; never executed: return false; | 0 |
920 | } else { never executed: end of block | 0 |
921 | int sourceType = typeFromTypeInfo(smeta, sourceTypeInfo); | - |
922 | int targetType = typeFromTypeInfo(rmeta, targetTypeInfo); | - |
923 | if (sourceType != targetType)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
924 | return false; never executed: return false; | 0 |
925 | } never executed: end of block | 0 |
926 | } | - |
927 | return true; never executed: return true; | 0 |
928 | } | - |
929 | | - |
930 | static const QMetaObject *QMetaObject_findMetaObject(const QMetaObject *self, const char *name) | - |
931 | { | - |
932 | 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 |
933 | 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 |
934 | 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 |
935 | if (self->d.relatedMetaObjects) {TRUE | evaluated 7 times by 1 test | FALSE | never evaluated |
| 0-7 |
936 | Q_ASSERT(priv(self->d.data)->revision >= 2); | - |
937 | const QMetaObject * const *e = self->d.relatedMetaObjects; | - |
938 | if (e) {TRUE | evaluated 7 times by 1 test | FALSE | never evaluated |
| 0-7 |
939 | while (*e) {TRUE | evaluated 7 times by 1 test | FALSE | never evaluated |
| 0-7 |
940 | if (const QMetaObject *m =QMetaObject_findMetaObject((*e), name))TRUE | evaluated 7 times by 1 test | FALSE | never evaluated |
| 0-7 |
941 | return m;executed 7 times by 1 test: return m; | 7 |
942 | ++e; | - |
943 | } never executed: end of block | 0 |
944 | } never executed: end of block | 0 |
945 | } never executed: end of block | 0 |
946 | self = self->d.superdata; | - |
947 | } never executed: end of block | 0 |
948 | return self; never executed: return self; | 0 |
949 | } | - |
950 | | - |
951 | | - |
952 | | - |
953 | | - |
954 | | - |
955 | | - |
956 | | - |
957 | int QMetaObject::indexOfEnumerator(const char *name) const | - |
958 | { | - |
959 | const QMetaObject *m = this; | - |
960 | while (m) {TRUE | evaluated 70889 times by 139 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 786 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
|
| 786-70889 |
961 | const QMetaObjectPrivate *d = priv(m->d.data); | - |
962 | for (int i = d->enumeratorCount - 1; i >= 0; --i) {TRUE | evaluated 1598989 times by 132 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 2297 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
|
| 2297-1598989 |
963 | const char *prop = rawStringData(m, m->d.data[d->enumeratorData + 4*i]); | - |
964 | if (name[0] == prop[0] && strcmp(name + 1, prop + 1) == 0) {TRUE | evaluated 94345 times by 131 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 1504644 times by 96 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 68592 times by 131 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 25753 times by 79 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
- ...
|
| 25753-1504644 |
965 | i += m->enumeratorOffset(); | - |
966 | return i;executed 68592 times by 131 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
- ...
| 68592 |
967 | } | - |
968 | }executed 1530397 times by 102 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
- ...
| 1530397 |
969 | m = m->d.superdata; | - |
970 | }executed 2297 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
| 2297 |
971 | return -1;executed 786 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
| 786 |
972 | } | - |
973 | | - |
974 | | - |
975 | | - |
976 | | - |
977 | | - |
978 | | - |
979 | | - |
980 | int QMetaObject::indexOfProperty(const char *name) const | - |
981 | { | - |
982 | const QMetaObject *m = this; | - |
983 | while (m) {TRUE | evaluated 256450 times by 203 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 63467 times by 182 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
- ...
|
| 63467-256450 |
984 | const QMetaObjectPrivate *d = priv(m->d.data); | - |
985 | for (int i = d->propertyCount-1; i >= 0; --i) {TRUE | evaluated 2690138 times by 203 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 232485 times by 182 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
- ...
|
| 232485-2690138 |
986 | const char *prop = rawStringData(m, m->d.data[d->propertyData + 3*i]); | - |
987 | if (name[0] == prop[0] && strcmp(name + 1, prop + 1) == 0) {TRUE | evaluated 48027 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 2642111 times by 185 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 23965 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 24062 times by 52 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_QInputDialog
- tst_QItemDelegate
- tst_QLabel
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- ...
|
| 23965-2642111 |
988 | i += m->propertyOffset(); | - |
989 | return i;executed 23965 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
- ...
| 23965 |
990 | } | - |
991 | }executed 2666173 times by 190 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
- ...
| 2666173 |
992 | m = m->d.superdata; | - |
993 | }executed 232485 times by 182 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
- ...
| 232485 |
994 | | - |
995 | Q_ASSERT(priv(this->d.data)->revision >= 3); | - |
996 | if (priv(this->d.data)->flags & DynamicMetaObject) {TRUE | never evaluated | FALSE | evaluated 63467 times by 182 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-63467 |
997 | QAbstractDynamicMetaObject *me = | - |
998 | const_cast<QAbstractDynamicMetaObject *>(static_cast<const QAbstractDynamicMetaObject *>(this)); | - |
999 | | - |
1000 | return me->createProperty(name, 0); never executed: return me->createProperty(name, 0); | 0 |
1001 | } | - |
1002 | | - |
1003 | return -1;executed 63467 times by 182 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
- ...
| 63467 |
1004 | } | - |
1005 | | - |
1006 | | - |
1007 | | - |
1008 | | - |
1009 | | - |
1010 | | - |
1011 | | - |
1012 | int QMetaObject::indexOfClassInfo(const char *name) const | - |
1013 | { | - |
1014 | int i = -1; | - |
1015 | const QMetaObject *m = this; | - |
1016 | 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 |
1017 | 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 |
1018 | 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 |
1019 | i += m->classInfoOffset(); | - |
1020 | 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 |
1021 | } | - |
1022 | m = m->d.superdata; | - |
1023 | }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 |
1024 | 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 |
1025 | } | - |
1026 | | - |
1027 | | - |
1028 | | - |
1029 | | - |
1030 | | - |
1031 | | - |
1032 | | - |
1033 | | - |
1034 | QMetaMethod QMetaObject::constructor(int index) const | - |
1035 | { | - |
1036 | int i = index; | - |
1037 | QMetaMethod result; | - |
1038 | Q_ASSERT(priv(d.data)->revision >= 2); | - |
1039 | 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 |
1040 | result.mobj = this; | - |
1041 | result.handle = priv(d.data)->constructorData + 5*i; | - |
1042 | }executed 103 times by 3 tests: end of block Executed by:- tst_QMetaMethod
- tst_QMetaObjectBuilder
- tst_QObject
| 103 |
1043 | return result;executed 103 times by 3 tests: return result; Executed by:- tst_QMetaMethod
- tst_QMetaObjectBuilder
- tst_QObject
| 103 |
1044 | } | - |
1045 | | - |
1046 | | - |
1047 | | - |
1048 | | - |
1049 | | - |
1050 | | - |
1051 | QMetaMethod QMetaObject::method(int index) const | - |
1052 | { | - |
1053 | int i = index; | - |
1054 | i -= methodOffset(); | - |
1055 | if (i < 0 && d.superdata)TRUE | evaluated 172801 times by 541 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
| FALSE | evaluated 1064014 times by 571 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 172798 times by 541 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
| FALSE | evaluated 3 times by 1 test |
| 3-1064014 |
1056 | return d.superdata->method(index);executed 172798 times by 541 tests: return d.superdata->method(index); Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
| 172798 |
1057 | | - |
1058 | QMetaMethod result; | - |
1059 | if (i >= 0 && i < priv(d.data)->methodCount) {TRUE | evaluated 1063928 times by 571 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 1064010 times by 571 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-1064010 |
1060 | result.mobj = this; | - |
1061 | result.handle = priv(d.data)->methodData + 5*i; | - |
1062 | }executed 1064010 times by 571 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
- ...
| 1064010 |
1063 | return result;executed 1064017 times by 571 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
- ...
| 1064017 |
1064 | } | - |
1065 | | - |
1066 | | - |
1067 | | - |
1068 | | - |
1069 | | - |
1070 | | - |
1071 | QMetaEnum QMetaObject::enumerator(int index) const | - |
1072 | { | - |
1073 | int i = index; | - |
1074 | i -= enumeratorOffset(); | - |
1075 | if (i < 0 && d.superdata)TRUE | evaluated 2289 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 68606 times by 131 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 1505 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 784 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
|
| 784-68606 |
1076 | return d.superdata->enumerator(index);executed 1505 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
| 1505 |
1077 | | - |
1078 | QMetaEnum result; | - |
1079 | if (i >= 0 && i < priv(d.data)->enumeratorCount) {TRUE | evaluated 68606 times by 131 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 784 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 68606 times by 131 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-68606 |
1080 | result.mobj = this; | - |
1081 | result.handle = priv(d.data)->enumeratorData + 4*i; | - |
1082 | }executed 68606 times by 131 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
- ...
| 68606 |
1083 | return result;executed 69390 times by 139 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
- ...
| 69390 |
1084 | } | - |
1085 | | - |
1086 | | - |
1087 | | - |
1088 | | - |
1089 | | - |
1090 | | - |
1091 | | - |
1092 | QMetaProperty QMetaObject::property(int index) const | - |
1093 | { | - |
1094 | int i = index; | - |
1095 | i -= propertyOffset(); | - |
1096 | if (i < 0 && d.superdata)TRUE | evaluated 30197 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 29875 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 30197 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-30197 |
1097 | return d.superdata->property(index);executed 30197 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
- ...
| 30197 |
1098 | | - |
1099 | QMetaProperty result; | - |
1100 | if (i >= 0 && i < priv(d.data)->propertyCount) {TRUE | evaluated 29875 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 29875 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-29875 |
1101 | int handle = priv(d.data)->propertyData + 3*i; | - |
1102 | int flags = d.data[handle + 2]; | - |
1103 | result.mobj = this; | - |
1104 | result.handle = handle; | - |
1105 | result.idx = i; | - |
1106 | | - |
1107 | if (flags & EnumOrFlag) {TRUE | evaluated 1018 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 28857 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
- ...
|
| 1018-28857 |
1108 | const char *type = rawTypeNameFromTypeInfo(this, d.data[handle + 1]); | - |
1109 | result.menum = enumerator(indexOfEnumerator(type)); | - |
1110 | if (!result.menum.isValid()) {TRUE | evaluated 690 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 328 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
|
| 328-690 |
1111 | const char *enum_name = type; | - |
1112 | const char *scope_name = objectClassName(this); | - |
1113 | char *scope_buffer = 0; | - |
1114 | | - |
1115 | const char *colon = strrchr(enum_name, ':'); | - |
1116 | | - |
1117 | Q_ASSERT(colon <= enum_name || *(colon-1) == ':'); | - |
1118 | if (colon > enum_name) {TRUE | evaluated 596 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-596 |
1119 | int len = colon-enum_name-1; | - |
1120 | scope_buffer = (char *)malloc(len+1); | - |
1121 | memcpy(scope_buffer, enum_name, len); | - |
1122 | scope_buffer[len] = '\0'; | - |
1123 | scope_name = scope_buffer; | - |
1124 | enum_name = colon+1; | - |
1125 | }executed 596 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
| 596 |
1126 | | - |
1127 | const QMetaObject *scope = 0; | - |
1128 | if (qstrcmp(scope_name, "Qt") == 0)TRUE | evaluated 589 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-589 |
1129 | scope = &QObject::staticQtMetaObject;executed 589 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
| 589 |
1130 | else | - |
1131 | 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 |
1132 | if (scope)TRUE | evaluated 690 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-690 |
1133 | result.menum = scope->enumerator(scope->indexOfEnumerator(enum_name));executed 690 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
| 690 |
1134 | if (scope_buffer)TRUE | evaluated 596 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-596 |
1135 | free(scope_buffer);executed 596 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
| 596 |
1136 | }executed 690 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
| 690 |
1137 | }executed 1018 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
| 1018 |
1138 | }executed 29875 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
- ...
| 29875 |
1139 | return result;executed 29875 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
- ...
| 29875 |
1140 | } | - |
1141 | | - |
1142 | | - |
1143 | | - |
1144 | | - |
1145 | | - |
1146 | | - |
1147 | | - |
1148 | | - |
1149 | QMetaProperty QMetaObject::userProperty() const | - |
1150 | { | - |
1151 | const int propCount = propertyCount(); | - |
1152 | for (int i = propCount - 1; i >= 0; --i) {TRUE | evaluated 5363 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-5363 |
1153 | const QMetaProperty prop = property(i); | - |
1154 | if (prop.isUser())TRUE | evaluated 325 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 5038 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
|
| 325-5038 |
1155 | return prop;executed 325 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
| 325 |
1156 | }executed 5038 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
| 5038 |
1157 | return QMetaProperty();executed 3 times by 1 test: return QMetaProperty(); | 3 |
1158 | } | - |
1159 | | - |
1160 | | - |
1161 | | - |
1162 | | - |
1163 | | - |
1164 | | - |
1165 | | - |
1166 | | - |
1167 | | - |
1168 | | - |
1169 | | - |
1170 | QMetaClassInfo QMetaObject::classInfo(int index) const | - |
1171 | { | - |
1172 | int i = index; | - |
1173 | i -= classInfoOffset(); | - |
1174 | 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 |
1175 | return d.superdata->classInfo(index);executed 1 time by 1 test: return d.superdata->classInfo(index); | 1 |
1176 | | - |
1177 | QMetaClassInfo result; | - |
1178 | 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 |
1179 | result.mobj = this; | - |
1180 | result.handle = priv(d.data)->classInfoData + 2*i; | - |
1181 | }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 |
1182 | 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 |
1183 | } | - |
1184 | | - |
1185 | | - |
1186 | | - |
1187 | | - |
1188 | | - |
1189 | | - |
1190 | | - |
1191 | | - |
1192 | | - |
1193 | bool QMetaObject::checkConnectArgs(const char *signal, const char *method) | - |
1194 | { | - |
1195 | const char *s1 = signal; | - |
1196 | const char *s2 = method; | - |
1197 | 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 |
1198 | 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 |
1199 | if (*s2 == ')' || qstrcmp(s1,s2) == 0) TRUE | evaluated 23 times by 1 test | FALSE | never evaluated |
TRUE | never evaluated | FALSE | never evaluated |
| 0-23 |
1200 | return true; executed 23 times by 1 test: return true; | 23 |
1201 | int s1len = qstrlen(s1); | - |
1202 | int s2len = qstrlen(s2); | - |
1203 | 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 |
1204 | return true; never executed: return true; | 0 |
1205 | return false; never executed: return false; | 0 |
1206 | } | - |
1207 | | - |
1208 | | - |
1209 | | - |
1210 | | - |
1211 | | - |
1212 | | - |
1213 | | - |
1214 | | - |
1215 | bool QMetaObject::checkConnectArgs(const QMetaMethod &signal, | - |
1216 | const QMetaMethod &method) | - |
1217 | { | - |
1218 | return QMetaObjectPrivate::checkConnectArgs( never executed: return QMetaObjectPrivate::checkConnectArgs( QMetaMethodPrivate::get(&signal), QMetaMethodPrivate::get(&method)); | 0 |
1219 | QMetaMethodPrivate::get(&signal), never executed: return QMetaObjectPrivate::checkConnectArgs( QMetaMethodPrivate::get(&signal), QMetaMethodPrivate::get(&method)); | 0 |
1220 | QMetaMethodPrivate::get(&method)); never executed: return QMetaObjectPrivate::checkConnectArgs( QMetaMethodPrivate::get(&signal), QMetaMethodPrivate::get(&method)); | 0 |
1221 | } | - |
1222 | | - |
1223 | static void qRemoveWhitespace(const char *s, char *d) | - |
1224 | { | - |
1225 | char last = 0; | - |
1226 | while (*s && is_space(*s))TRUE | evaluated 117726 times by 325 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- ...
| FALSE | never evaluated |
TRUE | evaluated 10 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QMetaType
| FALSE | evaluated 117716 times by 325 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- ...
|
| 0-117726 |
1227 | s++;executed 10 times by 2 tests: s++; Executed by:- tst_QMetaObject
- tst_QMetaType
| 10 |
1228 | while (*s) {TRUE | evaluated 131625 times by 325 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- ...
| FALSE | evaluated 117716 times by 325 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- ...
|
| 117716-131625 |
1229 | while (*s && !is_space(*s))TRUE | evaluated 3000157 times by 325 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- ...
| FALSE | evaluated 117705 times by 325 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- ...
|
TRUE | evaluated 2986237 times by 325 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- ...
| FALSE | evaluated 13920 times by 98 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
- ...
|
| 13920-3000157 |
1230 | last = *d++ = *s++;executed 2986237 times by 325 tests: last = *d++ = *s++; 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- ...
| 2986237 |
1231 | while (*s && is_space(*s))TRUE | evaluated 27836 times by 98 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 117716 times by 325 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- ...
|
TRUE | evaluated 13927 times by 98 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 13909 times by 98 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
- ...
|
| 13909-117716 |
1232 | s++;executed 13927 times by 98 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
- ...
| 13927 |
1233 | if (*s && ((is_ident_char(*s) && is_ident_char(last))TRUE | evaluated 13909 times by 98 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 117716 times by 325 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- ...
|
TRUE | evaluated 11623 times by 78 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 1748 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 9875 times by 28 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_QTcpServer
- tst_QTextDocument
- tst_QUdpSocket
- tst_QVariant
- ...
|
| 1748-117716 |
1234 | || ((*s == ':') && (last == '<')))) {TRUE | evaluated 1 time by 1 test | FALSE | evaluated 12160 times by 62 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-12160 |
1235 | last = *d++ = ' '; | - |
1236 | }executed 1749 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
- ...
| 1749 |
1237 | }executed 131625 times by 325 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- ...
| 131625 |
1238 | *d = '\0'; | - |
1239 | }executed 117716 times by 325 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- ...
| 117716 |
1240 | | - |
1241 | static char *qNormalizeType(char *d, int &templdepth, QByteArray &result) | - |
1242 | { | - |
1243 | const char *t = d; | - |
1244 | while (*d && (templdepthTRUE | evaluated 1746800 times by 325 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- ...
| FALSE | evaluated 46012 times by 318 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- ...
|
TRUE | evaluated 141587 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 1605213 times by 325 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- ...
|
| 46012-1746800 |
1245 | || (*d != ',' && *d != ')'))) {TRUE | evaluated 1537339 times by 325 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- ...
| FALSE | evaluated 67874 times by 82 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 1465629 times by 321 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- ...
| FALSE | evaluated 71710 times by 181 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
- ...
|
| 67874-1537339 |
1246 | if (*d == '<')TRUE | evaluated 12446 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 1594770 times by 321 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- ...
|
| 12446-1594770 |
1247 | ++templdepth;executed 12446 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
- ...
| 12446 |
1248 | if (*d == '>')TRUE | evaluated 12446 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 1594770 times by 321 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- ...
|
| 12446-1594770 |
1249 | --templdepth;executed 12446 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
- ...
| 12446 |
1250 | ++d; | - |
1251 | }executed 1607216 times by 321 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- ...
| 1607216 |
1252 | | - |
1253 | | - |
1254 | if (strncmp("void)", t, d - t + 1) != 0)TRUE | evaluated 185567 times by 325 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- ...
| FALSE | evaluated 29 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QObject
|
| 29-185567 |
1255 | result += normalizeTypeInternal(t, d);executed 185567 times by 325 tests: result += normalizeTypeInternal(t, d); 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- ...
| 185567 |
1256 | | - |
1257 | return d;executed 185596 times by 325 tests: return d; 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- ...
| 185596 |
1258 | } | - |
1259 | | - |
1260 | | - |
1261 | | - |
1262 | | - |
1263 | | - |
1264 | | - |
1265 | | - |
1266 | | - |
1267 | | - |
1268 | | - |
1269 | | - |
1270 | | - |
1271 | | - |
1272 | | - |
1273 | | - |
1274 | | - |
1275 | QByteArray QMetaObject::normalizedType(const char *type) | - |
1276 | { | - |
1277 | QByteArray result; | - |
1278 | | - |
1279 | if (!type || !*type)TRUE | never evaluated | FALSE | evaluated 46048 times by 318 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- ...
|
TRUE | evaluated 37 times by 2 testsEvaluated by:- tst_QMetaObjectBuilder
- tst_QMetaType
| FALSE | evaluated 46011 times by 318 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- ...
|
| 0-46048 |
1280 | return result;executed 37 times by 2 tests: return result; Executed by:- tst_QMetaObjectBuilder
- tst_QMetaType
| 37 |
1281 | | - |
1282 | QVarLengthArray<char> stackbuf(qstrlen(type) + 1); | - |
1283 | qRemoveWhitespace(type, stackbuf.data()); | - |
1284 | int templdepth = 0; | - |
1285 | qNormalizeType(stackbuf.data(), templdepth, result); | - |
1286 | | - |
1287 | return result;executed 46011 times by 318 tests: return result; 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_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAsn1Element
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- ...
| 46011 |
1288 | } | - |
1289 | | - |
1290 | | - |
1291 | | - |
1292 | | - |
1293 | | - |
1294 | | - |
1295 | | - |
1296 | | - |
1297 | | - |
1298 | | - |
1299 | | - |
1300 | | - |
1301 | QByteArray QMetaObject::normalizedSignature(const char *method) | - |
1302 | { | - |
1303 | QByteArray result; | - |
1304 | if (!method || !*method)TRUE | never evaluated | FALSE | evaluated 71705 times by 181 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 71705 times by 181 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-71705 |
1305 | return result; never executed: return result; | 0 |
1306 | int len = int(strlen(method)); | - |
1307 | QVarLengthArray<char> stackbuf(len + 1); | - |
1308 | char *d = stackbuf.data(); | - |
1309 | qRemoveWhitespace(method, d); | - |
1310 | | - |
1311 | result.reserve(len); | - |
1312 | | - |
1313 | int argdepth = 0; | - |
1314 | int templdepth = 0; | - |
1315 | while (*d) {TRUE | evaluated 1380771 times by 181 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 71704 times by 181 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
- ...
|
| 71704-1380771 |
1316 | if (argdepth == 1) {TRUE | evaluated 139585 times by 181 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 1241186 times by 181 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
- ...
|
| 139585-1241186 |
1317 | d = qNormalizeType(d, templdepth, result); | - |
1318 | if (!*d) TRUE | evaluated 1 time by 1 test | FALSE | evaluated 139584 times by 181 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-139584 |
1319 | break;executed 1 time by 1 test: break; | 1 |
1320 | }executed 139584 times by 181 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
- ...
| 139584 |
1321 | if (*d == '(')TRUE | evaluated 71711 times by 181 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 1309059 times by 181 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
- ...
|
| 71711-1309059 |
1322 | ++argdepth;executed 71711 times by 181 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
- ...
| 71711 |
1323 | if (*d == ')')TRUE | evaluated 71714 times by 181 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 1309056 times by 181 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
- ...
|
| 71714-1309056 |
1324 | --argdepth;executed 71714 times by 181 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
- ...
| 71714 |
1325 | result += *d++; | - |
1326 | }executed 1380770 times by 181 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
- ...
| 1380770 |
1327 | | - |
1328 | return result;executed 71705 times by 181 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
- ...
| 71705 |
1329 | } | - |
1330 | | - |
1331 | enum { MaximumParamCount = 11 }; | - |
1332 | | - |
1333 | | - |
1334 | | - |
1335 | | - |
1336 | | - |
1337 | static inline QByteArray findMethodCandidates(const QMetaObject *metaObject, const char *nonExistentMember) | - |
1338 | { | - |
1339 | QByteArray candidateMessage; | - |
1340 | | - |
1341 | const QByteArray memberByteArray = nonExistentMember; | - |
1342 | 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 |
1343 | const QMetaMethod method = metaObject->method(i); | - |
1344 | 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 |
1345 | candidateMessage.append(" " + method.methodSignature() + '\n');executed 4 times by 1 test: candidateMessage.append(" " + method.methodSignature() + '\n'); | 4 |
1346 | }executed 244 times by 2 tests: end of block Executed by:- tst_QDBusInterface
- tst_QMetaObject
| 244 |
1347 | if (!candidateMessage.isEmpty()) {TRUE | evaluated 4 times by 1 test | FALSE | evaluated 6 times by 2 testsEvaluated by:- tst_QDBusInterface
- tst_QMetaObject
|
| 4-6 |
1348 | candidateMessage.prepend("\nCandidates are:\n"); | - |
1349 | candidateMessage.chop(1); | - |
1350 | }executed 4 times by 1 test: end of block | 4 |
1351 | return candidateMessage;executed 10 times by 2 tests: return candidateMessage; Executed by:- tst_QDBusInterface
- tst_QMetaObject
| 10 |
1352 | } | - |
1353 | | - |
1354 | | - |
1355 | | - |
1356 | | - |
1357 | | - |
1358 | | - |
1359 | | - |
1360 | | - |
1361 | | - |
1362 | | - |
1363 | | - |
1364 | | - |
1365 | | - |
1366 | | - |
1367 | | - |
1368 | | - |
1369 | | - |
1370 | | - |
1371 | | - |
1372 | | - |
1373 | | - |
1374 | | - |
1375 | | - |
1376 | | - |
1377 | | - |
1378 | | - |
1379 | | - |
1380 | | - |
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 | bool QMetaObject::invokeMethod(QObject *obj, | - |
1421 | const char *member, | - |
1422 | Qt::ConnectionType type, | - |
1423 | QGenericReturnArgument ret, | - |
1424 | QGenericArgument val0, | - |
1425 | QGenericArgument val1, | - |
1426 | QGenericArgument val2, | - |
1427 | QGenericArgument val3, | - |
1428 | QGenericArgument val4, | - |
1429 | QGenericArgument val5, | - |
1430 | QGenericArgument val6, | - |
1431 | QGenericArgument val7, | - |
1432 | QGenericArgument val8, | - |
1433 | QGenericArgument val9) | - |
1434 | { | - |
1435 | if (!obj)TRUE | evaluated 2 times by 1 test | FALSE | evaluated 259137 times by 546 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
|
| 2-259137 |
1436 | return false;executed 2 times by 1 test: return false; | 2 |
1437 | | - |
1438 | QVarLengthArray<char, 512> sig; | - |
1439 | int len = qstrlen(member); | - |
1440 | if (len <= 0)TRUE | evaluated 1 time by 1 test | FALSE | evaluated 259136 times by 546 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
|
| 1-259136 |
1441 | return false;executed 1 time by 1 test: return false; | 1 |
1442 | sig.append(member, len); | - |
1443 | sig.append('('); | - |
1444 | | - |
1445 | const char *typeNames[] = {ret.name(), val0.name(), val1.name(), val2.name(), val3.name(), | - |
1446 | val4.name(), val5.name(), val6.name(), val7.name(), val8.name(), | - |
1447 | val9.name()}; | - |
1448 | | - |
1449 | int paramCount; | - |
1450 | for (paramCount = 1; paramCount < MaximumParamCount; ++paramCount) {TRUE | evaluated 321548 times by 546 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
| FALSE | never evaluated |
| 0-321548 |
1451 | len = qstrlen(typeNames[paramCount]); | - |
1452 | if (len <= 0)TRUE | evaluated 259136 times by 546 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
| 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-259136 |
1453 | break;executed 259136 times by 546 tests: break; Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
| 259136 |
1454 | sig.append(typeNames[paramCount], len); | - |
1455 | sig.append(','); | - |
1456 | }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 |
1457 | if (paramCount == 1)TRUE | evaluated 196904 times by 546 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
| 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-196904 |
1458 | sig.append(')'); executed 196904 times by 546 tests: sig.append(')'); Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
| 196904 |
1459 | else | - |
1460 | 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 |
1461 | sig.append('\0'); | - |
1462 | | - |
1463 | const QMetaObject *meta = obj->metaObject(); | - |
1464 | int idx = meta->indexOfMethod(sig.constData()); | - |
1465 | if (idx < 0) {TRUE | evaluated 12 times by 2 testsEvaluated by:- tst_QDBusInterface
- tst_QMetaObject
| FALSE | evaluated 259124 times by 546 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
|
| 12-259124 |
1466 | QByteArray norm = QMetaObject::normalizedSignature(sig.constData()); | - |
1467 | idx = meta->indexOfMethod(norm.constData()); | - |
1468 | }executed 12 times by 2 tests: end of block Executed by:- tst_QDBusInterface
- tst_QMetaObject
| 12 |
1469 | | - |
1470 | if (idx < 0 || idx >= meta->methodCount()) {TRUE | evaluated 10 times by 2 testsEvaluated by:- tst_QDBusInterface
- tst_QMetaObject
| FALSE | evaluated 259126 times by 546 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
|
TRUE | never evaluated | FALSE | evaluated 259126 times by 546 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
|
| 0-259126 |
1471 | | - |
1472 | qWarning("QMetaObject::invokeMethod: No such method %s::%s%s", | - |
1473 | meta->className(), sig.constData(), findMethodCandidates(meta, member).constData()); | - |
1474 | return false;executed 10 times by 2 tests: return false; Executed by:- tst_QDBusInterface
- tst_QMetaObject
| 10 |
1475 | } | - |
1476 | QMetaMethod method = meta->method(idx); | - |
1477 | return method.invoke(obj, type, ret,executed 259126 times by 546 tests: return method.invoke(obj, type, ret, val0, val1, val2, val3, val4, val5, val6, val7, val8, val9); Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
| 259126 |
1478 | val0, val1, val2, val3, val4, val5, val6, val7, val8, val9);executed 259126 times by 546 tests: return method.invoke(obj, type, ret, val0, val1, val2, val3, val4, val5, val6, val7, val8, val9); Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
| 259126 |
1479 | } | - |
1480 | | - |
1481 | | - |
1482 | | - |
1483 | | - |
1484 | | - |
1485 | | - |
1486 | | - |
1487 | | - |
1488 | | - |
1489 | | - |
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 | QByteArray QMetaMethodPrivate::signature() const | - |
1640 | { | - |
1641 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
1642 | QByteArray result; | - |
1643 | result.reserve(256); | - |
1644 | result += name(); | - |
1645 | result += '('; | - |
1646 | QList<QByteArray> argTypes = parameterTypes(); | - |
1647 | for (int i = 0; i < argTypes.size(); ++i) {TRUE | evaluated 20319 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 36437 times by 536 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
|
| 20319-36437 |
1648 | if (i)TRUE | evaluated 6483 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 13836 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
- ...
|
| 6483-13836 |
1649 | result += ',';executed 6483 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
| 6483 |
1650 | result += argTypes.at(i); | - |
1651 | }executed 20319 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
- ...
| 20319 |
1652 | result += ')'; | - |
1653 | return result;executed 36437 times by 536 tests: return result; Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
| 36437 |
1654 | } | - |
1655 | | - |
1656 | QByteArray QMetaMethodPrivate::name() const | - |
1657 | { | - |
1658 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
1659 | return stringData(mobj, mobj->d.data[handle]);executed 65268 times by 542 tests: return stringData(mobj, mobj->d.data[handle]); Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
| 65268 |
1660 | } | - |
1661 | | - |
1662 | int QMetaMethodPrivate::typesDataIndex() const | - |
1663 | { | - |
1664 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
1665 | return mobj->d.data[handle + 2];executed 82071 times by 778 tests: return mobj->d.data[handle + 2]; Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
| 82071 |
1666 | } | - |
1667 | | - |
1668 | const char *QMetaMethodPrivate::rawReturnTypeName() const | - |
1669 | { | - |
1670 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
1671 | uint typeInfo = mobj->d.data[typesDataIndex()]; | - |
1672 | 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 |
1673 | 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 |
1674 | else | - |
1675 | 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 |
1676 | } | - |
1677 | | - |
1678 | int QMetaMethodPrivate::returnType() const | - |
1679 | { | - |
1680 | return parameterType(-1);executed 20884 times by 540 tests: return parameterType(-1); Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
| 20884 |
1681 | } | - |
1682 | | - |
1683 | int QMetaMethodPrivate::parameterCount() const | - |
1684 | { | - |
1685 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
1686 | return mobj->d.data[handle + 1];executed 480713 times by 784 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
- ...
| 480713 |
1687 | } | - |
1688 | | - |
1689 | int QMetaMethodPrivate::parametersDataIndex() const | - |
1690 | { | - |
1691 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
1692 | return typesDataIndex() + 1;executed 81570 times by 778 tests: return typesDataIndex() + 1; Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
| 81570 |
1693 | } | - |
1694 | | - |
1695 | uint QMetaMethodPrivate::parameterTypeInfo(int index) const | - |
1696 | { | - |
1697 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
1698 | return mobj->d.data[parametersDataIndex() + index];executed 33755 times by 540 tests: return mobj->d.data[parametersDataIndex() + index]; Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
| 33755 |
1699 | } | - |
1700 | | - |
1701 | int QMetaMethodPrivate::parameterType(int index) const | - |
1702 | { | - |
1703 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
1704 | return typeFromTypeInfo(mobj, parameterTypeInfo(index));executed 33755 times by 540 tests: return typeFromTypeInfo(mobj, parameterTypeInfo(index)); Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
| 33755 |
1705 | } | - |
1706 | | - |
1707 | void QMetaMethodPrivate::getParameterTypes(int *types) const | - |
1708 | { | - |
1709 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
1710 | int dataIndex = parametersDataIndex(); | - |
1711 | int argc = parameterCount(); | - |
1712 | for (int i = 0; i < argc; ++i) {TRUE | evaluated 80 times by 1 test | FALSE | evaluated 42 times by 1 test |
| 42-80 |
1713 | int id = typeFromTypeInfo(mobj, mobj->d.data[dataIndex++]); | - |
1714 | *(types++) = id; | - |
1715 | }executed 80 times by 1 test: end of block | 80 |
1716 | }executed 42 times by 1 test: end of block | 42 |
1717 | | - |
1718 | QList<QByteArray> QMetaMethodPrivate::parameterTypes() const | - |
1719 | { | - |
1720 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
1721 | int argc = parameterCount(); | - |
1722 | QList<QByteArray> list; | - |
1723 | list.reserve(argc); | - |
1724 | int paramsIndex = parametersDataIndex(); | - |
1725 | for (int i = 0; i < argc; ++i)TRUE | evaluated 31621 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 45375 times by 777 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
|
| 31621-45375 |
1726 | list += typeNameFromTypeInfo(mobj, mobj->d.data[paramsIndex + i]);executed 31621 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
- ...
| 31621 |
1727 | return list;executed 45375 times by 777 tests: return list; Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
| 45375 |
1728 | } | - |
1729 | | - |
1730 | QList<QByteArray> QMetaMethodPrivate::parameterNames() const | - |
1731 | { | - |
1732 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
1733 | int argc = parameterCount(); | - |
1734 | QList<QByteArray> list; | - |
1735 | list.reserve(argc); | - |
1736 | int namesIndex = parametersDataIndex() + argc; | - |
1737 | 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 |
1738 | 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 |
1739 | 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 |
1740 | } | - |
1741 | | - |
1742 | QByteArray QMetaMethodPrivate::tag() const | - |
1743 | { | - |
1744 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
1745 | 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 |
1746 | } | - |
1747 | | - |
1748 | int QMetaMethodPrivate::ownMethodIndex() const | - |
1749 | { | - |
1750 | | - |
1751 | return (handle - priv(mobj->d.data)->methodData) / 5;executed 378212 times by 570 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
- ...
| 378212 |
1752 | } | - |
1753 | | - |
1754 | | - |
1755 | | - |
1756 | | - |
1757 | | - |
1758 | | - |
1759 | | - |
1760 | | - |
1761 | | - |
1762 | QByteArray QMetaMethod::methodSignature() const | - |
1763 | { | - |
1764 | if (!mobj)TRUE | evaluated 2 times by 1 test | FALSE | evaluated 36437 times by 536 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
|
| 2-36437 |
1765 | return QByteArray();executed 2 times by 1 test: return QByteArray(); | 2 |
1766 | return QMetaMethodPrivate::get(this)->signature();executed 36437 times by 536 tests: return QMetaMethodPrivate::get(this)->signature(); Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
| 36437 |
1767 | } | - |
1768 | | - |
1769 | | - |
1770 | | - |
1771 | | - |
1772 | | - |
1773 | | - |
1774 | | - |
1775 | | - |
1776 | QByteArray QMetaMethod::name() const | - |
1777 | { | - |
1778 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 28831 times by 542 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
|
| 0-28831 |
1779 | return QByteArray(); never executed: return QByteArray(); | 0 |
1780 | return QMetaMethodPrivate::get(this)->name();executed 28831 times by 542 tests: return QMetaMethodPrivate::get(this)->name(); Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
| 28831 |
1781 | } | - |
1782 | | - |
1783 | | - |
1784 | | - |
1785 | | - |
1786 | | - |
1787 | | - |
1788 | | - |
1789 | | - |
1790 | | - |
1791 | | - |
1792 | | - |
1793 | int QMetaMethod::returnType() const | - |
1794 | { | - |
1795 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 20884 times by 540 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
|
| 0-20884 |
1796 | return QMetaType::UnknownType; never executed: return QMetaType::UnknownType; | 0 |
1797 | return QMetaMethodPrivate::get(this)->returnType();executed 20884 times by 540 tests: return QMetaMethodPrivate::get(this)->returnType(); Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
| 20884 |
1798 | } | - |
1799 | | - |
1800 | | - |
1801 | | - |
1802 | | - |
1803 | | - |
1804 | | - |
1805 | | - |
1806 | | - |
1807 | int QMetaMethod::parameterCount() const | - |
1808 | { | - |
1809 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 46519 times by 537 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
|
| 0-46519 |
1810 | return 0; never executed: return 0; | 0 |
1811 | return QMetaMethodPrivate::get(this)->parameterCount();executed 46519 times by 537 tests: return QMetaMethodPrivate::get(this)->parameterCount(); Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
| 46519 |
1812 | } | - |
1813 | | - |
1814 | | - |
1815 | | - |
1816 | | - |
1817 | | - |
1818 | | - |
1819 | | - |
1820 | | - |
1821 | | - |
1822 | | - |
1823 | | - |
1824 | int QMetaMethod::parameterType(int index) const | - |
1825 | { | - |
1826 | if (!mobj || index < 0)TRUE | never evaluated | FALSE | evaluated 12955 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 12913 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-12955 |
1827 | return QMetaType::UnknownType;executed 42 times by 1 test: return QMetaType::UnknownType; | 42 |
1828 | if (index >= QMetaMethodPrivate::get(this)->parameterCount())TRUE | evaluated 42 times by 1 test | FALSE | evaluated 12871 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-12871 |
1829 | return QMetaType::UnknownType;executed 42 times by 1 test: return QMetaType::UnknownType; | 42 |
1830 | | - |
1831 | int type = QMetaMethodPrivate::get(this)->parameterType(index); | - |
1832 | if (type != QMetaType::UnknownType)TRUE | evaluated 12851 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-12851 |
1833 | return type;executed 12851 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
- ...
| 12851 |
1834 | | - |
1835 | void *argv[] = { &type, &index }; | - |
1836 | mobj->static_metacall(QMetaObject::RegisterMethodArgumentMetaType, QMetaMethodPrivate::get(this)->ownMethodIndex(), argv); | - |
1837 | 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 |
1838 | 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 |
1839 | return QMetaType::UnknownType;executed 4 times by 1 test: return QMetaType::UnknownType; | 4 |
1840 | } | - |
1841 | | - |
1842 | | - |
1843 | | - |
1844 | | - |
1845 | | - |
1846 | | - |
1847 | | - |
1848 | | - |
1849 | | - |
1850 | | - |
1851 | void QMetaMethod::getParameterTypes(int *types) const | - |
1852 | { | - |
1853 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 42 times by 1 test |
| 0-42 |
1854 | return; never executed: return; | 0 |
1855 | QMetaMethodPrivate::get(this)->getParameterTypes(types); | - |
1856 | }executed 42 times by 1 test: end of block | 42 |
1857 | | - |
1858 | | - |
1859 | | - |
1860 | | - |
1861 | | - |
1862 | | - |
1863 | QList<QByteArray> QMetaMethod::parameterTypes() const | - |
1864 | { | - |
1865 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 8938 times by 414 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-8938 |
1866 | return QList<QByteArray>(); never executed: return QList<QByteArray>(); | 0 |
1867 | return QMetaMethodPrivate::get(this)->parameterTypes();executed 8938 times by 414 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
- ...
| 8938 |
1868 | } | - |
1869 | | - |
1870 | | - |
1871 | | - |
1872 | | - |
1873 | | - |
1874 | | - |
1875 | QList<QByteArray> QMetaMethod::parameterNames() const | - |
1876 | { | - |
1877 | QList<QByteArray> list; | - |
1878 | 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 |
1879 | return list; never executed: return list; | 0 |
1880 | 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 |
1881 | } | - |
1882 | | - |
1883 | | - |
1884 | | - |
1885 | | - |
1886 | | - |
1887 | | - |
1888 | | - |
1889 | const char *QMetaMethod::typeName() const | - |
1890 | { | - |
1891 | 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 |
1892 | return 0; never executed: return 0; | 0 |
1893 | 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 |
1894 | } | - |
1895 | | - |
1896 | | - |
1897 | | - |
1898 | | - |
1899 | | - |
1900 | | - |
1901 | | - |
1902 | | - |
1903 | | - |
1904 | | - |
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 | const char *QMetaMethod::tag() const | - |
1938 | { | - |
1939 | 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 |
1940 | return 0; never executed: return 0; | 0 |
1941 | 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 |
1942 | } | - |
1943 | | - |
1944 | | - |
1945 | | - |
1946 | | - |
1947 | | - |
1948 | int QMetaMethod::attributes() const | - |
1949 | { | - |
1950 | if (!mobj)TRUE | evaluated 3 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QObject
| FALSE | evaluated 1148936 times by 268 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-1148936 |
1951 | return false;executed 3 times by 2 tests: return false; Executed by:- tst_QMetaObject
- tst_QObject
| 3 |
1952 | return ((mobj->d.data[handle + 4])>>4);executed 1148936 times by 268 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
- ...
| 1148936 |
1953 | } | - |
1954 | | - |
1955 | | - |
1956 | | - |
1957 | | - |
1958 | | - |
1959 | | - |
1960 | int QMetaMethod::methodIndex() const | - |
1961 | { | - |
1962 | if (!mobj)TRUE | evaluated 4 times by 1 testEvaluated by:- tst_QDBusAbstractInterface
| FALSE | evaluated 4706 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-4706 |
1963 | return -1;executed 4 times by 1 test: return -1; Executed by:- tst_QDBusAbstractInterface
| 4 |
1964 | return QMetaMethodPrivate::get(this)->ownMethodIndex() + mobj->methodOffset();executed 4706 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
- ...
| 4706 |
1965 | } | - |
1966 | | - |
1967 | | - |
1968 | | - |
1969 | | - |
1970 | | - |
1971 | | - |
1972 | | - |
1973 | int QMetaMethod::revision() const | - |
1974 | { | - |
1975 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 222 times by 1 test |
| 0-222 |
1976 | return 0; never executed: return 0; | 0 |
1977 | 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 |
1978 | int offset = priv(mobj->d.data)->methodData | - |
1979 | + priv(mobj->d.data)->methodCount * 5 | - |
1980 | + QMetaMethodPrivate::get(this)->ownMethodIndex(); | - |
1981 | return mobj->d.data[offset];executed 7 times by 1 test: return mobj->d.data[offset]; | 7 |
1982 | } | - |
1983 | return 0;executed 215 times by 1 test: return 0; | 215 |
1984 | } | - |
1985 | | - |
1986 | | - |
1987 | | - |
1988 | | - |
1989 | | - |
1990 | | - |
1991 | | - |
1992 | | - |
1993 | | - |
1994 | | - |
1995 | | - |
1996 | QMetaMethod::Access QMetaMethod::access() const | - |
1997 | { | - |
1998 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 29674 times by 541 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
|
| 0-29674 |
1999 | return Private; never executed: return Private; | 0 |
2000 | return (QMetaMethod::Access)(mobj->d.data[handle + 4] & AccessMask);executed 29674 times by 541 tests: return (QMetaMethod::Access)(mobj->d.data[handle + 4] & AccessMask); Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
| 29674 |
2001 | } | - |
2002 | | - |
2003 | | - |
2004 | | - |
2005 | | - |
2006 | | - |
2007 | | - |
2008 | QMetaMethod::MethodType QMetaMethod::methodType() const | - |
2009 | { | - |
2010 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 32413 times by 540 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
|
| 0-32413 |
2011 | return QMetaMethod::Method; never executed: return QMetaMethod::Method; | 0 |
2012 | return (QMetaMethod::MethodType)((mobj->d.data[handle + 4] & MethodTypeMask)>>2);executed 32413 times by 540 tests: return (QMetaMethod::MethodType)((mobj->d.data[handle + 4] & MethodTypeMask)>>2); Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- 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
- tst_QAnimationGroup
- ...
| 32413 |
2013 | } | - |
2014 | | - |
2015 | | - |
2016 | | - |
2017 | | - |
2018 | | - |
2019 | | - |
2020 | | - |
2021 | | - |
2022 | | - |
2023 | | - |
2024 | | - |
2025 | | - |
2026 | | - |
2027 | | - |
2028 | | - |
2029 | | - |
2030 | | - |
2031 | | - |
2032 | | - |
2033 | | - |
2034 | | - |
2035 | QMetaMethod QMetaMethod::fromSignalImpl(const QMetaObject *metaObject, void **signal) | - |
2036 | { | - |
2037 | int i = -1; | - |
2038 | void *args[] = { &i, signal }; | - |
2039 | QMetaMethod result; | - |
2040 | for (const QMetaObject *m = metaObject; m; m = m->d.superdata) {TRUE | evaluated 5507 times by 194 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-5507 |
2041 | m->static_metacall(QMetaObject::IndexOfMethod, 0, args); | - |
2042 | if (i >= 0) {TRUE | evaluated 5504 times by 194 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-5504 |
2043 | result.mobj = m; | - |
2044 | result.handle = priv(m->d.data)->methodData + 5*i; | - |
2045 | break;executed 5504 times by 194 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
- ...
| 5504 |
2046 | } | - |
2047 | }executed 3 times by 1 test: end of block | 3 |
2048 | return result;executed 5506 times by 194 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
- ...
| 5506 |
2049 | } | - |
2050 | | - |
2051 | | - |
2052 | | - |
2053 | | - |
2054 | | - |
2055 | | - |
2056 | | - |
2057 | | - |
2058 | | - |
2059 | | - |
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 | bool QMetaMethod::invoke(QObject *object, | - |
2120 | Qt::ConnectionType connectionType, | - |
2121 | QGenericReturnArgument returnValue, | - |
2122 | QGenericArgument val0, | - |
2123 | QGenericArgument val1, | - |
2124 | QGenericArgument val2, | - |
2125 | QGenericArgument val3, | - |
2126 | QGenericArgument val4, | - |
2127 | QGenericArgument val5, | - |
2128 | QGenericArgument val6, | - |
2129 | QGenericArgument val7, | - |
2130 | QGenericArgument val8, | - |
2131 | QGenericArgument val9) const | - |
2132 | { | - |
2133 | if (!object || !mobj)TRUE | evaluated 2 times by 1 test | FALSE | evaluated 373467 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
- ...
|
TRUE | evaluated 3 times by 1 test | FALSE | evaluated 373464 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
- ...
|
| 2-373467 |
2134 | return false;executed 5 times by 1 test: return false; | 5 |
2135 | | - |
2136 | Q_ASSERT(mobj->cast(object)); | - |
2137 | | - |
2138 | | - |
2139 | 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 373350 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
- ...
|
| 114-373350 |
2140 | const char *retType = typeName(); | - |
2141 | 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 |
2142 | | - |
2143 | QByteArray normalized = QMetaObject::normalizedType(returnValue.name()); | - |
2144 | if (qstrcmp(normalized.constData(), retType) != 0) {TRUE | evaluated 2 times by 1 test | FALSE | evaluated 4 times by 1 test |
| 2-4 |
2145 | | - |
2146 | int t = returnType(); | - |
2147 | 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 |
2148 | return false;executed 1 time by 1 test: return false; | 1 |
2149 | }executed 1 time by 1 test: end of block | 1 |
2150 | }executed 5 times by 1 test: end of block | 5 |
2151 | }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 |
2152 | | - |
2153 | | - |
2154 | const char *typeNames[] = { | - |
2155 | returnValue.name(), | - |
2156 | val0.name(), | - |
2157 | val1.name(), | - |
2158 | val2.name(), | - |
2159 | val3.name(), | - |
2160 | val4.name(), | - |
2161 | val5.name(), | - |
2162 | val6.name(), | - |
2163 | val7.name(), | - |
2164 | val8.name(), | - |
2165 | val9.name() | - |
2166 | }; | - |
2167 | int paramCount; | - |
2168 | for (paramCount = 1; paramCount < MaximumParamCount; ++paramCount) {TRUE | evaluated 436038 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 | never evaluated |
| 0-436038 |
2169 | if (qstrlen(typeNames[paramCount]) <= 0)TRUE | evaluated 373463 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 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-373463 |
2170 | break;executed 373463 times by 550 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
- ...
| 373463 |
2171 | }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 |
2172 | if (paramCount <= QMetaMethodPrivate::get(this)->parameterCount())TRUE | evaluated 1 time by 1 test | FALSE | evaluated 373462 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
- ...
|
| 1-373462 |
2173 | return false;executed 1 time by 1 test: return false; | 1 |
2174 | | - |
2175 | | - |
2176 | QThread *currentThread = QThread::currentThread(); | - |
2177 | QThread *objectThread = object->thread(); | - |
2178 | if (connectionType == Qt::AutoConnection) {TRUE | evaluated 12554 times by 78 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 360908 times by 548 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
- ...
|
| 12554-360908 |
2179 | connectionType = currentThread == objectThreadTRUE | evaluated 12489 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-12489 |
2180 | ? Qt::DirectConnection | - |
2181 | : Qt::QueuedConnection; | - |
2182 | }executed 12554 times by 78 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
- ...
| 12554 |
2183 | | - |
2184 | #ifdef QT_NO_THREAD | - |
2185 | if (connectionType == Qt::BlockingQueuedConnection) { | - |
2186 | connectionType = Qt::DirectConnection; | - |
2187 | } | - |
2188 | #endif | - |
2189 | | - |
2190 | | - |
2191 | void *param[] = { | - |
2192 | returnValue.data(), | - |
2193 | val0.data(), | - |
2194 | val1.data(), | - |
2195 | val2.data(), | - |
2196 | val3.data(), | - |
2197 | val4.data(), | - |
2198 | val5.data(), | - |
2199 | val6.data(), | - |
2200 | val7.data(), | - |
2201 | val8.data(), | - |
2202 | val9.data() | - |
2203 | }; | - |
2204 | int idx_relative = QMetaMethodPrivate::get(this)->ownMethodIndex(); | - |
2205 | int idx_offset = mobj->methodOffset(); | - |
2206 | Q_ASSERT(QMetaObjectPrivate::get(mobj)->revision >= 6); | - |
2207 | QObjectPrivate::StaticMetaCallFunction callFunction = mobj->d.static_metacall; | - |
2208 | | - |
2209 | if (connectionType == Qt::DirectConnection) {TRUE | evaluated 253815 times by 543 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 119647 times by 193 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
- ...
|
| 119647-253815 |
2210 | if (callFunction) {TRUE | evaluated 253799 times by 543 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-253799 |
2211 | callFunction(object, QMetaObject::InvokeMetaMethod, idx_relative, param); | - |
2212 | return true;executed 253728 times by 543 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
- ...
| 253728 |
2213 | } else { | - |
2214 | 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 |
2215 | } | - |
2216 | } else if (connectionType == Qt::QueuedConnection) {TRUE | evaluated 119587 times by 193 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-119587 |
2217 | if (returnValue.data()) {TRUE | evaluated 1 time by 1 test | FALSE | evaluated 119586 times by 193 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-119586 |
2218 | qWarning("QMetaMethod::invoke: Unable to invoke methods with return values in " | - |
2219 | "queued connections"); | - |
2220 | return false;executed 1 time by 1 test: return false; | 1 |
2221 | } | - |
2222 | | - |
2223 | int nargs = 1; | - |
2224 | void **args = (void **) malloc(paramCount * sizeof(void *)); | - |
2225 | Q_CHECK_PTR(args); never executed: qBadAlloc(); TRUE | never evaluated | FALSE | evaluated 119586 times by 193 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-119586 |
2226 | int *types = (int *) malloc(paramCount * sizeof(int)); | - |
2227 | Q_CHECK_PTR(types); never executed: qBadAlloc(); TRUE | never evaluated | FALSE | evaluated 119586 times by 193 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-119586 |
2228 | types[0] = 0; | - |
2229 | args[0] = 0; | - |
2230 | | - |
2231 | 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 119585 times by 193 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-119585 |
2232 | types[i] = QMetaType::type(typeNames[i]); | - |
2233 | 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 |
2234 | args[i] = QMetaType::create(types[i], param[i]); | - |
2235 | ++nargs; | - |
2236 | } 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 |
2237 | | - |
2238 | void *argv[] = { &types[i], &i }; | - |
2239 | QMetaObject::metacall(object, QMetaObject::RegisterMethodArgumentMetaType, | - |
2240 | idx_relative + idx_offset, argv); | - |
2241 | if (types[i] == -1) {TRUE | evaluated 1 time by 1 test | FALSE | never evaluated |
| 0-1 |
2242 | qWarning("QMetaMethod::invoke: Unable to handle unregistered datatype '%s'", | - |
2243 | typeNames[i]); | - |
2244 | for (int x = 1; x < i; ++x) {TRUE | never evaluated | FALSE | evaluated 1 time by 1 test |
| 0-1 |
2245 | if (types[x] && args[x])TRUE | never evaluated | FALSE | never evaluated |
TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2246 | QMetaType::destroy(types[x], args[x]); never executed: QMetaType::destroy(types[x], args[x]); | 0 |
2247 | } never executed: end of block | 0 |
2248 | free(types); | - |
2249 | free(args); | - |
2250 | return false;executed 1 time by 1 test: return false; | 1 |
2251 | } | - |
2252 | } never executed: end of block | 0 |
2253 | }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 |
2254 | | - |
2255 | QCoreApplication::postEvent(object, new QMetaCallEvent(idx_offset, idx_relative, callFunction, | - |
2256 | 0, -1, nargs, types, args)); | - |
2257 | } else { executed 119585 times by 193 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
- ...
| 119585 |
2258 | #ifndef QT_NO_THREAD | - |
2259 | 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 |
2260 | qWarning("QMetaMethod::invoke: Dead lock detected in " | - |
2261 | "BlockingQueuedConnection: Receiver is %s(%p)", | - |
2262 | mobj->className(), object); | - |
2263 | } never executed: end of block | 0 |
2264 | | - |
2265 | QSemaphore semaphore; | - |
2266 | QCoreApplication::postEvent(object, new QMetaCallEvent(idx_offset, idx_relative, callFunction, | - |
2267 | 0, -1, 0, 0, param, &semaphore)); | - |
2268 | semaphore.acquire(); | - |
2269 | #endif // QT_NO_THREAD | - |
2270 | }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 |
2271 | return true;executed 119645 times by 193 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
- ...
| 119645 |
2272 | } | - |
2273 | | - |
2274 | | - |
2275 | | - |
2276 | | - |
2277 | | - |
2278 | | - |
2279 | | - |
2280 | | - |
2281 | | - |
2282 | | - |
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 | 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 | - |
2351 | { | - |
2352 | 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 |
2353 | return false;executed 2 times by 1 test: return false; | 2 |
2354 | | - |
2355 | | - |
2356 | if (returnValue.data()) {TRUE | evaluated 2 times by 1 test | FALSE | evaluated 1 time by 1 test |
| 1-2 |
2357 | const char *retType = typeName(); | - |
2358 | if (qstrcmp(returnValue.name(), retType) != 0) {TRUE | never evaluated | FALSE | evaluated 2 times by 1 test |
| 0-2 |
2359 | | - |
2360 | QByteArray normalized = QMetaObject::normalizedType(returnValue.name()); | - |
2361 | if (qstrcmp(normalized.constData(), retType) != 0) {TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2362 | | - |
2363 | int t = returnType(); | - |
2364 | if (t == QMetaType::UnknownType || t != QMetaType::type(normalized))TRUE | never evaluated | FALSE | never evaluated |
TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2365 | return false; never executed: return false; | 0 |
2366 | } never executed: end of block | 0 |
2367 | } never executed: end of block | 0 |
2368 | }executed 2 times by 1 test: end of block | 2 |
2369 | | - |
2370 | | - |
2371 | const char *typeNames[] = { | - |
2372 | returnValue.name(), | - |
2373 | val0.name(), | - |
2374 | val1.name(), | - |
2375 | val2.name(), | - |
2376 | val3.name(), | - |
2377 | val4.name(), | - |
2378 | val5.name(), | - |
2379 | val6.name(), | - |
2380 | val7.name(), | - |
2381 | val8.name(), | - |
2382 | val9.name() | - |
2383 | }; | - |
2384 | int paramCount; | - |
2385 | for (paramCount = 1; paramCount < MaximumParamCount; ++paramCount) {TRUE | evaluated 4 times by 1 test | FALSE | never evaluated |
| 0-4 |
2386 | if (qstrlen(typeNames[paramCount]) <= 0)TRUE | evaluated 3 times by 1 test | FALSE | evaluated 1 time by 1 test |
| 1-3 |
2387 | break;executed 3 times by 1 test: break; | 3 |
2388 | }executed 1 time by 1 test: end of block | 1 |
2389 | if (paramCount <= QMetaMethodPrivate::get(this)->parameterCount())TRUE | never evaluated | FALSE | evaluated 3 times by 1 test |
| 0-3 |
2390 | return false; never executed: return false; | 0 |
2391 | | - |
2392 | | - |
2393 | void *param[] = { | - |
2394 | returnValue.data(), | - |
2395 | val0.data(), | - |
2396 | val1.data(), | - |
2397 | val2.data(), | - |
2398 | val3.data(), | - |
2399 | val4.data(), | - |
2400 | val5.data(), | - |
2401 | val6.data(), | - |
2402 | val7.data(), | - |
2403 | val8.data(), | - |
2404 | val9.data() | - |
2405 | }; | - |
2406 | int idx_relative = QMetaMethodPrivate::get(this)->ownMethodIndex(); | - |
2407 | Q_ASSERT(QMetaObjectPrivate::get(mobj)->revision >= 6); | - |
2408 | QObjectPrivate::StaticMetaCallFunction callFunction = mobj->d.static_metacall; | - |
2409 | if (!callFunction)TRUE | never evaluated | FALSE | evaluated 3 times by 1 test |
| 0-3 |
2410 | return false; never executed: return false; | 0 |
2411 | callFunction(reinterpret_cast<QObject*>(gadget), QMetaObject::InvokeMetaMethod, idx_relative, param); | - |
2412 | return true;executed 3 times by 1 test: return true; | 3 |
2413 | } | - |
2414 | | - |
2415 | | - |
2416 | | - |
2417 | | - |
2418 | | - |
2419 | | - |
2420 | | - |
2421 | | - |
2422 | | - |
2423 | | - |
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 | const char *QMetaEnum::name() const | - |
2485 | { | - |
2486 | if (!mobj)TRUE | evaluated 21247 times by 51 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_QGuiVariant
- tst_QHeaderView
- tst_QItemDelegate
- tst_QItemModel
- tst_QItemView
- tst_QListView
- ...
| FALSE | evaluated 507 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
|
| 507-21247 |
2487 | return 0;executed 21247 times by 51 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_QGuiVariant
- tst_QHeaderView
- tst_QItemDelegate
- tst_QItemModel
- tst_QItemView
- tst_QListView
- ...
| 21247 |
2488 | return rawStringData(mobj, mobj->d.data[handle]);executed 507 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
| 507 |
2489 | } | - |
2490 | | - |
2491 | | - |
2492 | | - |
2493 | | - |
2494 | | - |
2495 | | - |
2496 | int QMetaEnum::keyCount() const | - |
2497 | { | - |
2498 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 27 times by 2 testsEvaluated by:- tst_QMetaEnum
- tst_QMetaObjectBuilder
|
| 0-27 |
2499 | return 0; never executed: return 0; | 0 |
2500 | 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 |
2501 | } | - |
2502 | | - |
2503 | | - |
2504 | | - |
2505 | | - |
2506 | | - |
2507 | | - |
2508 | | - |
2509 | const char *QMetaEnum::key(int index) const | - |
2510 | { | - |
2511 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 259 times by 5 testsEvaluated by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QMetaObjectBuilder
- tst_languageChange
|
| 0-259 |
2512 | return 0; never executed: return 0; | 0 |
2513 | int count = mobj->d.data[handle + 2]; | - |
2514 | int data = mobj->d.data[handle + 3]; | - |
2515 | if (index >= 0 && index < count)TRUE | evaluated 259 times by 5 testsEvaluated by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QMetaObjectBuilder
- tst_languageChange
| FALSE | never evaluated |
TRUE | evaluated 259 times by 5 testsEvaluated by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QMetaObjectBuilder
- tst_languageChange
| FALSE | never evaluated |
| 0-259 |
2516 | return rawStringData(mobj, mobj->d.data[data + 2*index]);executed 259 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
| 259 |
2517 | return 0; never executed: return 0; | 0 |
2518 | } | - |
2519 | | - |
2520 | | - |
2521 | | - |
2522 | | - |
2523 | | - |
2524 | | - |
2525 | | - |
2526 | int QMetaEnum::value(int index) const | - |
2527 | { | - |
2528 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 28 times by 1 test |
| 0-28 |
2529 | return 0; never executed: return 0; | 0 |
2530 | int count = mobj->d.data[handle + 2]; | - |
2531 | int data = mobj->d.data[handle + 3]; | - |
2532 | 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 |
2533 | return mobj->d.data[data + 2*index + 1];executed 28 times by 1 test: return mobj->d.data[data + 2*index + 1]; | 28 |
2534 | return -1; never executed: return -1; | 0 |
2535 | } | - |
2536 | | - |
2537 | | - |
2538 | | - |
2539 | | - |
2540 | | - |
2541 | | - |
2542 | | - |
2543 | | - |
2544 | | - |
2545 | | - |
2546 | | - |
2547 | bool QMetaEnum::isFlag() const | - |
2548 | { | - |
2549 | 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
TRUE | evaluated 35 times by 3 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QObject
| FALSE | never evaluated |
TRUE | evaluated 13 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
| FALSE | evaluated 22 times by 3 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QObject
|
| 0-35 |
2550 | } | - |
2551 | | - |
2552 | | - |
2553 | | - |
2554 | | - |
2555 | | - |
2556 | | - |
2557 | | - |
2558 | | - |
2559 | | - |
2560 | | - |
2561 | const char *QMetaEnum::scope() const | - |
2562 | { | - |
2563 | 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
TRUE | evaluated 59 times by 5 testsEvaluated by:- tst_QAbstractSpinBox
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QObject
- tst_QWidget
| FALSE | never evaluated |
| 0-59 |
2564 | } | - |
2565 | | - |
2566 | | - |
2567 | | - |
2568 | | - |
2569 | | - |
2570 | | - |
2571 | | - |
2572 | | - |
2573 | | - |
2574 | | - |
2575 | | - |
2576 | | - |
2577 | int QMetaEnum::keyToValue(const char *key, bool *ok) const | - |
2578 | { | - |
2579 | 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 |
2580 | *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 |
2581 | 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 |
2582 | return -1; never executed: return -1; | 0 |
2583 | uint scope = 0; | - |
2584 | const char *qualified_key = key; | - |
2585 | const char *s = key + qstrlen(key); | - |
2586 | 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 |
2587 | --s;executed 1706 times by 6 tests: --s; Executed by:- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QMetaObject
- tst_QObject
- tst_languageChange
| 1706 |
2588 | 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 |
2589 | scope = s - key - 1; | - |
2590 | key += scope + 2; | - |
2591 | }executed 6 times by 1 test: end of block | 6 |
2592 | int count = mobj->d.data[handle + 2]; | - |
2593 | int data = mobj->d.data[handle + 3]; | - |
2594 | 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 |
2595 | const QByteArray className = stringData(mobj, priv(mobj->d.data)->className); | - |
2596 | 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 |
2597 | && 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 |
2598 | 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 |
2599 | *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 |
2600 | 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 |
2601 | } | - |
2602 | }executed 37 times by 3 tests: end of block Executed by:- tst_QFiledialog
- tst_QMetaObject
- tst_QObject
| 37 |
2603 | return -1;executed 8 times by 1 test: return -1; | 8 |
2604 | } | - |
2605 | | - |
2606 | | - |
2607 | | - |
2608 | | - |
2609 | | - |
2610 | | - |
2611 | | - |
2612 | | - |
2613 | | - |
2614 | const char* QMetaEnum::valueToKey(int value) const | - |
2615 | { | - |
2616 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 102192 times by 124 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-102192 |
2617 | return 0; never executed: return 0; | 0 |
2618 | int count = mobj->d.data[handle + 2]; | - |
2619 | int data = mobj->d.data[handle + 3]; | - |
2620 | for (int i = 0; i < count; ++i)TRUE | evaluated 558322 times by 124 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 17656 times by 22 testsEvaluated by:- tst_Gestures
- tst_QAbstractItemModel
- tst_QAbstractProxyModel
- tst_QDockWidget
- tst_QGraphicsItem
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QHeaderView
- 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
|
| 17656-558322 |
2621 | if (value == (int)mobj->d.data[data + 2*i + 1])TRUE | evaluated 84536 times by 121 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 473786 times by 108 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
- ...
|
| 84536-473786 |
2622 | return rawStringData(mobj, mobj->d.data[data + 2*i]);executed 84536 times by 121 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
- ...
| 84536 |
2623 | return 0;executed 17656 times by 22 tests: return 0; Executed by:- tst_Gestures
- tst_QAbstractItemModel
- tst_QAbstractProxyModel
- tst_QDockWidget
- tst_QGraphicsItem
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QHeaderView
- 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
| 17656 |
2624 | } | - |
2625 | | - |
2626 | | - |
2627 | | - |
2628 | | - |
2629 | | - |
2630 | | - |
2631 | | - |
2632 | | - |
2633 | | - |
2634 | | - |
2635 | | - |
2636 | int QMetaEnum::keysToValue(const char *keys, bool *ok) const | - |
2637 | { | - |
2638 | if (ok != 0)TRUE | evaluated 41 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QVariant
| FALSE | never evaluated |
| 0-41 |
2639 | *ok = false;executed 41 times by 2 tests: *ok = false; Executed by:- tst_QMetaObject
- tst_QVariant
| 41 |
2640 | 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 |
2641 | return -1; never executed: return -1; | 0 |
2642 | if (ok != 0)TRUE | evaluated 41 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QVariant
| FALSE | never evaluated |
| 0-41 |
2643 | *ok = true;executed 41 times by 2 tests: *ok = true; Executed by:- tst_QMetaObject
- tst_QVariant
| 41 |
2644 | QStringList l = QString::fromLatin1(keys).split(QLatin1Char('|')); | - |
2645 | if (l.isEmpty())TRUE | never evaluated | FALSE | evaluated 41 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QVariant
|
| 0-41 |
2646 | return 0; never executed: return 0; | 0 |
2647 | | - |
2648 | int value = 0; | - |
2649 | int count = mobj->d.data[handle + 2]; | - |
2650 | int data = mobj->d.data[handle + 3]; | - |
2651 | 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 |
2652 | QString trimmed = l.at(li).trimmed(); | - |
2653 | QByteArray qualified_key = trimmed.toLatin1(); | - |
2654 | const char *key = qualified_key.constData(); | - |
2655 | uint scope = 0; | - |
2656 | const char *s = key + qstrlen(key); | - |
2657 | 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 |
2658 | --s;executed 705 times by 2 tests: --s; Executed by:- tst_QMetaObject
- tst_QVariant
| 705 |
2659 | 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 |
2660 | scope = s - key - 1; | - |
2661 | key += scope + 2; | - |
2662 | }executed 24 times by 1 test: end of block | 24 |
2663 | int i; | - |
2664 | 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 |
2665 | const QByteArray className = stringData(mobj, priv(mobj->d.data)->className); | - |
2666 | 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 |
2667 | && 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 |
2668 | value |= mobj->d.data[data + 2*i + 1]; | - |
2669 | break;executed 41 times by 2 tests: break; Executed by:- tst_QMetaObject
- tst_QVariant
| 41 |
2670 | } | - |
2671 | }executed 80 times by 2 tests: end of block Executed by:- tst_QMetaObject
- tst_QVariant
| 80 |
2672 | if (i < 0) {TRUE | evaluated 14 times by 1 test | FALSE | evaluated 41 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QVariant
|
| 14-41 |
2673 | if (ok != 0)TRUE | evaluated 14 times by 1 test | FALSE | never evaluated |
| 0-14 |
2674 | *ok = false;executed 14 times by 1 test: *ok = false; | 14 |
2675 | value |= -1; | - |
2676 | }executed 14 times by 1 test: end of block | 14 |
2677 | }executed 55 times by 2 tests: end of block Executed by:- tst_QMetaObject
- tst_QVariant
| 55 |
2678 | return value;executed 41 times by 2 tests: return value; Executed by:- tst_QMetaObject
- tst_QVariant
| 41 |
2679 | } | - |
2680 | | - |
2681 | | - |
2682 | | - |
2683 | | - |
2684 | | - |
2685 | | - |
2686 | | - |
2687 | QByteArray QMetaEnum::valueToKeys(int value) const | - |
2688 | { | - |
2689 | QByteArray keys; | - |
2690 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 17325 times by 4 testsEvaluated by:- tst_QMetaEnum
- tst_QMetaObject
- tst_QSizePolicy
- tst_QWidget
|
| 0-17325 |
2691 | return keys; never executed: return keys; | 0 |
2692 | int count = mobj->d.data[handle + 2]; | - |
2693 | int data = mobj->d.data[handle + 3]; | - |
2694 | int v = value; | - |
2695 | | - |
2696 | 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 |
2697 | int k = mobj->d.data[data + 2*i + 1]; | - |
2698 | 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 |
2699 | v = v & ~k; | - |
2700 | 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 |
2701 | keys.prepend('|');executed 9 times by 3 tests: keys.prepend('|'); Executed by:- tst_QMetaEnum
- tst_QMetaObject
- tst_QSizePolicy
| 9 |
2702 | keys.prepend(stringData(mobj, mobj->d.data[data + 2*i])); | - |
2703 | }executed 17334 times by 4 tests: end of block Executed by:- tst_QMetaEnum
- tst_QMetaObject
- tst_QSizePolicy
- tst_QWidget
| 17334 |
2704 | }executed 260330 times by 4 tests: end of block Executed by:- tst_QMetaEnum
- tst_QMetaObject
- tst_QSizePolicy
- tst_QWidget
| 260330 |
2705 | return keys;executed 17325 times by 4 tests: return keys; Executed by:- tst_QMetaEnum
- tst_QMetaObject
- tst_QSizePolicy
- tst_QWidget
| 17325 |
2706 | } | - |
2707 | | - |
2708 | | - |
2709 | | - |
2710 | | - |
2711 | | - |
2712 | | - |
2713 | | - |
2714 | | - |
2715 | | - |
2716 | static QByteArray qualifiedName(const QMetaEnum &e) | - |
2717 | { | - |
2718 | 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 |
2719 | } | - |
2720 | | - |
2721 | | - |
2722 | | - |
2723 | | - |
2724 | | - |
2725 | | - |
2726 | | - |
2727 | | - |
2728 | | - |
2729 | | - |
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 | QMetaProperty::QMetaProperty() | - |
2775 | : mobj(0), handle(0), idx(0) | - |
2776 | { | - |
2777 | }executed 29879 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
- ...
| 29879 |
2778 | | - |
2779 | | - |
2780 | | - |
2781 | | - |
2782 | | - |
2783 | | - |
2784 | | - |
2785 | const char *QMetaProperty::name() const | - |
2786 | { | - |
2787 | if (!mobj)TRUE | evaluated 3 times by 1 test | FALSE | evaluated 835 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-835 |
2788 | return 0;executed 3 times by 1 test: return 0; | 3 |
2789 | int handle = priv(mobj->d.data)->propertyData + 3*idx; | - |
2790 | return rawStringData(mobj, mobj->d.data[handle]);executed 835 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
- ...
| 835 |
2791 | } | - |
2792 | | - |
2793 | | - |
2794 | | - |
2795 | | - |
2796 | | - |
2797 | | - |
2798 | const char *QMetaProperty::typeName() const | - |
2799 | { | - |
2800 | 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 |
2801 | return 0; never executed: return 0; | 0 |
2802 | int handle = priv(mobj->d.data)->propertyData + 3*idx; | - |
2803 | 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 |
2804 | } | - |
2805 | | - |
2806 | | - |
2807 | | - |
2808 | | - |
2809 | | - |
2810 | | - |
2811 | | - |
2812 | QVariant::Type QMetaProperty::type() const | - |
2813 | { | - |
2814 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 254 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-254 |
2815 | return QVariant::Invalid; never executed: return QVariant::Invalid; | 0 |
2816 | int handle = priv(mobj->d.data)->propertyData + 3*idx; | - |
2817 | | - |
2818 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
2819 | uint type = typeFromTypeInfo(mobj, mobj->d.data[handle + 1]); | - |
2820 | if (type >= QMetaType::User)TRUE | evaluated 26 times by 4 testsEvaluated by:- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QObject
| FALSE | evaluated 228 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-228 |
2821 | return QVariant::UserType;executed 26 times by 4 tests: return QVariant::UserType; Executed by:- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QObject
| 26 |
2822 | if (type != QMetaType::UnknownType)TRUE | evaluated 224 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-224 |
2823 | return QVariant::Type(type);executed 224 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
- ...
| 224 |
2824 | if (isEnumType()) {TRUE | evaluated 3 times by 1 test | FALSE | evaluated 1 time by 1 test |
| 1-3 |
2825 | int enumMetaTypeId = QMetaType::type(qualifiedName(menum)); | - |
2826 | if (enumMetaTypeId == QMetaType::UnknownType)TRUE | evaluated 2 times by 1 test | FALSE | evaluated 1 time by 1 test |
| 1-2 |
2827 | return QVariant::Int;executed 2 times by 1 test: return QVariant::Int; | 2 |
2828 | }executed 1 time by 1 test: end of block | 1 |
2829 | #ifdef QT_COORD_TYPE | - |
2830 | | - |
2831 | if (strcmp(typeName(), "qreal") == 0) | - |
2832 | return QVariant::Type(qMetaTypeId<qreal>()); | - |
2833 | #endif | - |
2834 | | - |
2835 | return QVariant::UserType;executed 2 times by 2 tests: return QVariant::UserType; Executed by:- tst_QMetaObject
- tst_QObject
| 2 |
2836 | } | - |
2837 | | - |
2838 | | - |
2839 | | - |
2840 | | - |
2841 | | - |
2842 | | - |
2843 | | - |
2844 | | - |
2845 | | - |
2846 | | - |
2847 | int QMetaProperty::userType() const | - |
2848 | { | - |
2849 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 586 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-586 |
2850 | return QMetaType::UnknownType; never executed: return QMetaType::UnknownType; | 0 |
2851 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
2852 | int handle = priv(mobj->d.data)->propertyData + 3*idx; | - |
2853 | int type = typeFromTypeInfo(mobj, mobj->d.data[handle + 1]); | - |
2854 | if (type != QMetaType::UnknownType)TRUE | evaluated 584 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-584 |
2855 | return type;executed 584 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
- ...
| 584 |
2856 | if (isEnumType()) {TRUE | evaluated 1 time by 1 test | FALSE | evaluated 1 time by 1 test |
| 1 |
2857 | type = QMetaType::type(qualifiedName(menum)); | - |
2858 | if (type == QMetaType::UnknownType) {TRUE | never evaluated | FALSE | evaluated 1 time by 1 test |
| 0-1 |
2859 | type = registerPropertyType(); | - |
2860 | if (type == QMetaType::UnknownType)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2861 | return QVariant::Int; never executed: return QVariant::Int; | 0 |
2862 | } never executed: end of block | 0 |
2863 | return type;executed 1 time by 1 test: return type; | 1 |
2864 | } | - |
2865 | type = QMetaType::type(typeName()); | - |
2866 | if (type != QMetaType::UnknownType)TRUE | never evaluated | FALSE | evaluated 1 time by 1 test |
| 0-1 |
2867 | return type; never executed: return type; | 0 |
2868 | return registerPropertyType();executed 1 time by 1 test: return registerPropertyType(); | 1 |
2869 | } | - |
2870 | | - |
2871 | | - |
2872 | | - |
2873 | | - |
2874 | | - |
2875 | | - |
2876 | int QMetaProperty::propertyIndex() const | - |
2877 | { | - |
2878 | if (!mobj)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2879 | return -1; never executed: return -1; | 0 |
2880 | return idx + mobj->propertyOffset(); never executed: return idx + mobj->propertyOffset(); | 0 |
2881 | } | - |
2882 | | - |
2883 | | - |
2884 | | - |
2885 | | - |
2886 | | - |
2887 | | - |
2888 | | - |
2889 | | - |
2890 | | - |
2891 | | - |
2892 | | - |
2893 | bool QMetaProperty::isFlagType() const | - |
2894 | { | - |
2895 | return isEnumType() && menum.isFlag();executed 83 times by 3 tests: return isEnumType() && menum.isFlag(); Executed by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
- tst_QObject
TRUE | evaluated 15 times by 2 testsEvaluated by:- tst_QMetaObjectBuilder
- tst_QObject
| FALSE | evaluated 68 times by 2 testsEvaluated by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
|
TRUE | evaluated 4 times by 1 test | FALSE | evaluated 11 times by 2 testsEvaluated by:- tst_QMetaObjectBuilder
- tst_QObject
|
| 4-83 |
2896 | } | - |
2897 | | - |
2898 | | - |
2899 | | - |
2900 | | - |
2901 | | - |
2902 | | - |
2903 | | - |
2904 | bool QMetaProperty::isEnumType() const | - |
2905 | { | - |
2906 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 22223 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-22223 |
2907 | return false; never executed: return false; | 0 |
2908 | int handle = priv(mobj->d.data)->propertyData + 3*idx; | - |
2909 | int flags = mobj->d.data[handle + 2]; | - |
2910 | return (flags & EnumOrFlag) && menum.name();executed 22223 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
- ...
TRUE | evaluated 149 times by 14 testsEvaluated by:- tst_QAbstractProxyModel
- tst_QAbstractSpinBox
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDateTimeEdit
- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
- tst_QMetaType
- tst_QObject
- tst_QSyntaxHighlighter
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
| FALSE | evaluated 22074 times by 152 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
- ...
|
TRUE | evaluated 72 times by 4 testsEvaluated by:- tst_QAbstractSpinBox
- tst_QDateTimeEdit
- tst_QMetaObjectBuilder
- tst_QObject
| FALSE | evaluated 77 times by 11 testsEvaluated by:- tst_QAbstractProxyModel
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QMetaObject
- tst_QMetaProperty
- tst_QMetaType
- tst_QObject
- tst_QSyntaxHighlighter
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
|
| 72-22223 |
2911 | } | - |
2912 | | - |
2913 | | - |
2914 | | - |
2915 | | - |
2916 | | - |
2917 | | - |
2918 | | - |
2919 | | - |
2920 | | - |
2921 | | - |
2922 | bool QMetaProperty::hasStdCppSet() const | - |
2923 | { | - |
2924 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 60 times by 3 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
|
| 0-60 |
2925 | return false; never executed: return false; | 0 |
2926 | int handle = priv(mobj->d.data)->propertyData + 3*idx; | - |
2927 | int flags = mobj->d.data[handle + 2]; | - |
2928 | return (flags & StdCppSet);executed 60 times by 3 tests: return (flags & StdCppSet); Executed by:- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
| 60 |
2929 | } | - |
2930 | | - |
2931 | | - |
2932 | | - |
2933 | | - |
2934 | | - |
2935 | | - |
2936 | | - |
2937 | int QMetaProperty::registerPropertyType() const | - |
2938 | { | - |
2939 | int registerResult = -1; | - |
2940 | void *argv[] = { ®isterResult }; | - |
2941 | mobj->static_metacall(QMetaObject::RegisterPropertyMetaType, idx, argv); | - |
2942 | return registerResult == -1 ? QMetaType::UnknownType : registerResult;executed 3 times by 2 tests: return registerResult == -1 ? QMetaType::UnknownType : registerResult; Executed by:- tst_QMetaObject
- tst_QMetaProperty
TRUE | evaluated 1 time by 1 test | FALSE | evaluated 2 times by 1 test |
| 1-3 |
2943 | } | - |
2944 | | - |
2945 | | - |
2946 | | - |
2947 | | - |
2948 | | - |
2949 | | - |
2950 | | - |
2951 | QMetaEnum QMetaProperty::enumerator() const | - |
2952 | { | - |
2953 | return menum;executed 1 time by 1 test: return menum; | 1 |
2954 | } | - |
2955 | | - |
2956 | | - |
2957 | | - |
2958 | | - |
2959 | | - |
2960 | | - |
2961 | | - |
2962 | QVariant QMetaProperty::read(const QObject *object) const | - |
2963 | { | - |
2964 | if (!object || !mobj)TRUE | never evaluated | FALSE | evaluated 20966 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 20966 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-20966 |
2965 | return QVariant(); never executed: return QVariant(); | 0 |
2966 | | - |
2967 | uint t = QVariant::Int; | - |
2968 | if (isEnumType()) {TRUE | evaluated 16 times by 2 testsEvaluated by:- tst_QAbstractSpinBox
- tst_QObject
| FALSE | evaluated 20950 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-20950 |
2969 | | - |
2970 | | - |
2971 | | - |
2972 | | - |
2973 | | - |
2974 | int enumMetaTypeId = QMetaType::type(qualifiedName(menum)); | - |
2975 | 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 |
2976 | t = enumMetaTypeId;executed 7 times by 1 test: t = enumMetaTypeId; | 7 |
2977 | } else {executed 16 times by 2 tests: end of block Executed by:- tst_QAbstractSpinBox
- tst_QObject
| 16 |
2978 | int handle = priv(mobj->d.data)->propertyData + 3*idx; | - |
2979 | const char *typeName = 0; | - |
2980 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
2981 | uint typeInfo = mobj->d.data[handle + 1]; | - |
2982 | if (!(typeInfo & IsUnresolvedType))TRUE | evaluated 20916 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-20916 |
2983 | t = typeInfo;executed 20916 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
- ...
| 20916 |
2984 | else { | - |
2985 | typeName = rawStringData(mobj, typeInfo & TypeNameIndexMask); | - |
2986 | t = QMetaType::type(typeName); | - |
2987 | }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 |
2988 | if (t == QMetaType::UnknownType) {TRUE | evaluated 1 time by 1 test | FALSE | evaluated 20949 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-20949 |
2989 | | - |
2990 | t = registerPropertyType(); | - |
2991 | if (t == QMetaType::UnknownType) {TRUE | never evaluated | FALSE | evaluated 1 time by 1 test |
| 0-1 |
2992 | qWarning("QMetaProperty::read: Unable to handle unregistered datatype '%s' for property '%s::%s'", typeName, mobj->className(), name()); | - |
2993 | return QVariant(); never executed: return QVariant(); | 0 |
2994 | } | - |
2995 | }executed 1 time by 1 test: end of block | 1 |
2996 | }executed 20950 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
- ...
| 20950 |
2997 | | - |
2998 | | - |
2999 | | - |
3000 | | - |
3001 | | - |
3002 | | - |
3003 | int status = -1; | - |
3004 | QVariant value; | - |
3005 | void *argv[] = { 0, &value, &status }; | - |
3006 | if (t == QMetaType::QVariant) {TRUE | evaluated 4 times by 1 test | FALSE | evaluated 20962 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-20962 |
3007 | argv[0] = &value; | - |
3008 | } else {executed 4 times by 1 test: end of block | 4 |
3009 | value = QVariant(t, (void*)0); | - |
3010 | argv[0] = value.data(); | - |
3011 | }executed 20962 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
- ...
| 20962 |
3012 | if (priv(mobj->d.data)->flags & PropertyAccessInStaticMetaCall && mobj->d.static_metacall) {TRUE | evaluated 2 times by 1 test | FALSE | evaluated 20964 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-20964 |
3013 | mobj->d.static_metacall(const_cast<QObject*>(object), QMetaObject::ReadProperty, idx, argv); | - |
3014 | } else {executed 2 times by 1 test: end of block | 2 |
3015 | QMetaObject::metacall(const_cast<QObject*>(object), QMetaObject::ReadProperty, | - |
3016 | idx + mobj->propertyOffset(), argv); | - |
3017 | }executed 20964 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
- ...
| 20964 |
3018 | | - |
3019 | if (status != -1)TRUE | evaluated 14 times by 1 testEvaluated by:- tst_QDBusAbstractInterface
| FALSE | evaluated 20952 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-20952 |
3020 | return value;executed 14 times by 1 test: return value; Executed by:- tst_QDBusAbstractInterface
| 14 |
3021 | if (t != QMetaType::QVariant && argv[0] != value.data())TRUE | evaluated 20948 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 20948 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-20948 |
3022 | | - |
3023 | return QVariant((QVariant::Type)t, argv[0]); never executed: return QVariant((QVariant::Type)t, argv[0]); | 0 |
3024 | return value;executed 20952 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
- ...
| 20952 |
3025 | } | - |
3026 | | - |
3027 | | - |
3028 | | - |
3029 | | - |
3030 | | - |
3031 | | - |
3032 | | - |
3033 | | - |
3034 | | - |
3035 | | - |
3036 | | - |
3037 | | - |
3038 | bool QMetaProperty::write(QObject *object, const QVariant &value) const | - |
3039 | { | - |
3040 | if (!object || !isWritable())TRUE | never evaluated | FALSE | evaluated 1064 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 1064 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-1064 |
3041 | return false; never executed: return false; | 0 |
3042 | | - |
3043 | QVariant v = value; | - |
3044 | uint t = QVariant::Invalid; | - |
3045 | if (isEnumType()) {TRUE | evaluated 13 times by 2 testsEvaluated by:- tst_QDateTimeEdit
- tst_QObject
| FALSE | evaluated 1051 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-1051 |
3046 | 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 |
3047 | bool ok; | - |
3048 | if (isFlagType())TRUE | never evaluated | FALSE | evaluated 3 times by 1 test |
| 0-3 |
3049 | v = QVariant(menum.keysToValue(value.toByteArray(), &ok)); never executed: v = QVariant(menum.keysToValue(value.toByteArray(), &ok)); | 0 |
3050 | else | - |
3051 | v = QVariant(menum.keyToValue(value.toByteArray(), &ok));executed 3 times by 1 test: v = QVariant(menum.keyToValue(value.toByteArray(), &ok)); | 3 |
3052 | if (!ok)TRUE | never evaluated | FALSE | evaluated 3 times by 1 test |
| 0-3 |
3053 | return false; never executed: return false; | 0 |
3054 | } 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 |
3055 | int enumMetaTypeId = QMetaType::type(qualifiedName(menum)); | - |
3056 | 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 |
3057 | return false;executed 3 times by 1 test: return false; | 3 |
3058 | v = QVariant(*reinterpret_cast<const int *>(v.constData())); | - |
3059 | }executed 1 time by 1 test: end of block | 1 |
3060 | v.convert(QVariant::Int); | - |
3061 | } else {executed 10 times by 2 tests: end of block Executed by:- tst_QDateTimeEdit
- tst_QObject
| 10 |
3062 | int handle = priv(mobj->d.data)->propertyData + 3*idx; | - |
3063 | const char *typeName = 0; | - |
3064 | Q_ASSERT(priv(mobj->d.data)->revision >= 7); | - |
3065 | uint typeInfo = mobj->d.data[handle + 1]; | - |
3066 | if (!(typeInfo & IsUnresolvedType))TRUE | evaluated 1025 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-1025 |
3067 | t = typeInfo;executed 1025 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
- ...
| 1025 |
3068 | else { | - |
3069 | typeName = rawStringData(mobj, typeInfo & TypeNameIndexMask); | - |
3070 | t = QMetaType::type(typeName); | - |
3071 | 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 |
3072 | t = registerPropertyType();executed 1 time by 1 test: t = registerPropertyType(); | 1 |
3073 | 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 |
3074 | return false; never executed: return false; | 0 |
3075 | }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 |
3076 | if (t != QMetaType::QVariant && int(t) != value.userType()) {TRUE | evaluated 1049 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 1014 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-1049 |
3077 | 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 |
3078 | if (isResettable())TRUE | evaluated 1 time by 1 test | FALSE | evaluated 3 times by 2 testsEvaluated by:- tst_QMetaProperty
- tst_QObject
|
| 1-3 |
3079 | return reset(object);executed 1 time by 1 test: return reset(object); | 1 |
3080 | v = QVariant(t, 0); | - |
3081 | } 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 |
3082 | return false;executed 8 times by 3 tests: return false; Executed by:- tst_QDataWidgetMapper
- tst_QMetaProperty
- tst_QObject
| 8 |
3083 | } | - |
3084 | }executed 26 times by 6 tests: end of block Executed by:- tst_QGraphicsObject
- tst_QMetaProperty
- tst_QObject
- tst_QStyleSheetStyle
- tst_QTableView
- tst_QWizard
| 26 |
3085 | }executed 1042 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
- ...
| 1042 |
3086 | | - |
3087 | | - |
3088 | | - |
3089 | | - |
3090 | | - |
3091 | | - |
3092 | int status = -1; | - |
3093 | | - |
3094 | | - |
3095 | int flags = 0; | - |
3096 | void *argv[] = { 0, &v, &status, &flags }; | - |
3097 | if (t == QMetaType::QVariant)TRUE | evaluated 2 times by 1 test | FALSE | evaluated 1050 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-1050 |
3098 | argv[0] = &v;executed 2 times by 1 test: argv[0] = &v; | 2 |
3099 | else | - |
3100 | argv[0] = v.data();executed 1050 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
- ...
| 1050 |
3101 | if (priv(mobj->d.data)->flags & PropertyAccessInStaticMetaCall && mobj->d.static_metacall)TRUE | evaluated 1 time by 1 test | FALSE | evaluated 1051 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-1051 |
3102 | 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 |
3103 | else | - |
3104 | QMetaObject::metacall(object, QMetaObject::WriteProperty, idx + mobj->propertyOffset(), argv);executed 1051 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
- ...
| 1051 |
3105 | | - |
3106 | return status;executed 1052 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
- ...
| 1052 |
3107 | } | - |
3108 | | - |
3109 | | - |
3110 | | - |
3111 | | - |
3112 | | - |
3113 | | - |
3114 | | - |
3115 | | - |
3116 | | - |
3117 | bool QMetaProperty::reset(QObject *object) const | - |
3118 | { | - |
3119 | 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 |
3120 | return false; never executed: return false; | 0 |
3121 | void *argv[] = { 0 }; | - |
3122 | 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 |
3123 | 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 |
3124 | else | - |
3125 | 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 |
3126 | return true;executed 2 times by 1 test: return true; | 2 |
3127 | } | - |
3128 | | - |
3129 | | - |
3130 | | - |
3131 | | - |
3132 | | - |
3133 | | - |
3134 | | - |
3135 | | - |
3136 | QVariant QMetaProperty::readOnGadget(const void *gadget) const | - |
3137 | { | - |
3138 | Q_ASSERT(priv(mobj->d.data)->flags & PropertyAccessInStaticMetaCall && mobj->d.static_metacall); | - |
3139 | return read(reinterpret_cast<const QObject*>(gadget));executed 2 times by 1 test: return read(reinterpret_cast<const QObject*>(gadget)); | 2 |
3140 | } | - |
3141 | | - |
3142 | | - |
3143 | | - |
3144 | | - |
3145 | | - |
3146 | | - |
3147 | | - |
3148 | | - |
3149 | | - |
3150 | bool QMetaProperty::writeOnGadget(void *gadget, const QVariant &value) const | - |
3151 | { | - |
3152 | Q_ASSERT(priv(mobj->d.data)->flags & PropertyAccessInStaticMetaCall && mobj->d.static_metacall); | - |
3153 | return write(reinterpret_cast<QObject*>(gadget), value);executed 1 time by 1 test: return write(reinterpret_cast<QObject*>(gadget), value); | 1 |
3154 | } | - |
3155 | | - |
3156 | | - |
3157 | | - |
3158 | | - |
3159 | | - |
3160 | | - |
3161 | | - |
3162 | | - |
3163 | | - |
3164 | | - |
3165 | | - |
3166 | bool QMetaProperty::resetOnGadget(void *gadget) const | - |
3167 | { | - |
3168 | Q_ASSERT(priv(mobj->d.data)->flags & PropertyAccessInStaticMetaCall && mobj->d.static_metacall); | - |
3169 | return reset(reinterpret_cast<QObject*>(gadget));executed 1 time by 1 test: return reset(reinterpret_cast<QObject*>(gadget)); | 1 |
3170 | } | - |
3171 | | - |
3172 | | - |
3173 | | - |
3174 | | - |
3175 | | - |
3176 | | - |
3177 | | - |
3178 | bool QMetaProperty::isResettable() const | - |
3179 | { | - |
3180 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 106 times by 4 testsEvaluated by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
- tst_QObject
|
| 0-106 |
3181 | return false; never executed: return false; | 0 |
3182 | int flags = mobj->d.data[handle + 2]; | - |
3183 | return flags & Resettable;executed 106 times by 4 tests: return flags & Resettable; Executed by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
- tst_QObject
| 106 |
3184 | } | - |
3185 | | - |
3186 | | - |
3187 | | - |
3188 | | - |
3189 | | - |
3190 | | - |
3191 | bool QMetaProperty::isReadable() const | - |
3192 | { | - |
3193 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 21241 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-21241 |
3194 | return false; never executed: return false; | 0 |
3195 | int flags = mobj->d.data[handle + 2]; | - |
3196 | return flags & Readable;executed 21241 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
- ...
| 21241 |
3197 | } | - |
3198 | | - |
3199 | | - |
3200 | | - |
3201 | | - |
3202 | | - |
3203 | | - |
3204 | | - |
3205 | bool QMetaProperty::hasNotifySignal() const | - |
3206 | { | - |
3207 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 103 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
|
| 0-103 |
3208 | return false; never executed: return false; | 0 |
3209 | int flags = mobj->d.data[handle + 2]; | - |
3210 | return flags & Notify;executed 103 times by 2 tests: return flags & Notify; Executed by:- tst_QMetaObject
- tst_QMetaObjectBuilder
| 103 |
3211 | } | - |
3212 | | - |
3213 | | - |
3214 | | - |
3215 | | - |
3216 | | - |
3217 | | - |
3218 | | - |
3219 | | - |
3220 | | - |
3221 | QMetaMethod QMetaProperty::notifySignal() const | - |
3222 | { | - |
3223 | int id = notifySignalIndex(); | - |
3224 | if (id != -1)TRUE | evaluated 7 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
| FALSE | evaluated 2 times by 1 test |
| 2-7 |
3225 | return mobj->method(id);executed 7 times by 2 tests: return mobj->method(id); Executed by:- tst_QMetaObject
- tst_QMetaObjectBuilder
| 7 |
3226 | else | - |
3227 | return QMetaMethod();executed 2 times by 1 test: return QMetaMethod(); | 2 |
3228 | } | - |
3229 | | - |
3230 | | - |
3231 | | - |
3232 | | - |
3233 | | - |
3234 | | - |
3235 | | - |
3236 | | - |
3237 | | - |
3238 | int QMetaProperty::notifySignalIndex() const | - |
3239 | { | - |
3240 | if (hasNotifySignal()) {TRUE | evaluated 23 times by 2 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
| FALSE | evaluated 2 times by 1 test |
| 2-23 |
3241 | int offset = priv(mobj->d.data)->propertyData + | - |
3242 | priv(mobj->d.data)->propertyCount * 3 + idx; | - |
3243 | 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 |
3244 | } else { | - |
3245 | return -1;executed 2 times by 1 test: return -1; | 2 |
3246 | } | - |
3247 | } | - |
3248 | | - |
3249 | | - |
3250 | | - |
3251 | | - |
3252 | | - |
3253 | | - |
3254 | | - |
3255 | | - |
3256 | int QMetaProperty::revision() const | - |
3257 | { | - |
3258 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 56 times by 1 test |
| 0-56 |
3259 | return 0; never executed: return 0; | 0 |
3260 | int flags = mobj->d.data[handle + 2]; | - |
3261 | if (flags & Revisioned) {TRUE | evaluated 7 times by 1 test | FALSE | evaluated 49 times by 1 test |
| 7-49 |
3262 | int offset = priv(mobj->d.data)->propertyData + | - |
3263 | priv(mobj->d.data)->propertyCount * 3 + idx; | - |
3264 | | - |
3265 | | - |
3266 | for (int i = 0; i < priv(mobj->d.data)->propertyCount; ++i) {TRUE | evaluated 7 times by 1 test | FALSE | never evaluated |
| 0-7 |
3267 | int handle = priv(mobj->d.data)->propertyData + 3*i; | - |
3268 | if (mobj->d.data[handle + 2] & Notify) {TRUE | evaluated 7 times by 1 test | FALSE | never evaluated |
| 0-7 |
3269 | offset += priv(mobj->d.data)->propertyCount; | - |
3270 | break;executed 7 times by 1 test: break; | 7 |
3271 | } | - |
3272 | } never executed: end of block | 0 |
3273 | return mobj->d.data[offset];executed 7 times by 1 test: return mobj->d.data[offset]; | 7 |
3274 | } else { | - |
3275 | return 0;executed 49 times by 1 test: return 0; | 49 |
3276 | } | - |
3277 | } | - |
3278 | | - |
3279 | | - |
3280 | | - |
3281 | | - |
3282 | | - |
3283 | | - |
3284 | | - |
3285 | bool QMetaProperty::isWritable() const | - |
3286 | { | - |
3287 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 4327 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-4327 |
3288 | return false; never executed: return false; | 0 |
3289 | int flags = mobj->d.data[handle + 2]; | - |
3290 | return flags & Writable;executed 4327 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
- ...
| 4327 |
3291 | } | - |
3292 | | - |
3293 | | - |
3294 | | - |
3295 | | - |
3296 | | - |
3297 | | - |
3298 | | - |
3299 | | - |
3300 | | - |
3301 | | - |
3302 | | - |
3303 | | - |
3304 | bool QMetaProperty::isDesignable(const QObject *object) const | - |
3305 | { | - |
3306 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 103 times by 3 testsEvaluated by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
- tst_QStyleSheetStyle
|
| 0-103 |
3307 | return false; never executed: return false; | 0 |
3308 | int flags = mobj->d.data[handle + 2]; | - |
3309 | bool b = flags & Designable; | - |
3310 | if (object) {TRUE | never evaluated | FALSE | evaluated 103 times by 3 testsEvaluated by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
- tst_QStyleSheetStyle
|
| 0-103 |
3311 | void *argv[] = { &b }; | - |
3312 | QMetaObject::metacall(const_cast<QObject*>(object), QMetaObject::QueryPropertyDesignable, | - |
3313 | idx + mobj->propertyOffset(), argv); | - |
3314 | } never executed: end of block | 0 |
3315 | return b;executed 103 times by 3 tests: return b; Executed by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
- tst_QStyleSheetStyle
| 103 |
3316 | | - |
3317 | | - |
3318 | } | - |
3319 | | - |
3320 | | - |
3321 | | - |
3322 | | - |
3323 | | - |
3324 | | - |
3325 | | - |
3326 | | - |
3327 | | - |
3328 | | - |
3329 | | - |
3330 | bool QMetaProperty::isScriptable(const QObject *object) const | - |
3331 | { | - |
3332 | 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 |
3333 | return false; never executed: return false; | 0 |
3334 | int flags = mobj->d.data[handle + 2]; | - |
3335 | bool b = flags & Scriptable; | - |
3336 | 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 |
3337 | void *argv[] = { &b }; | - |
3338 | QMetaObject::metacall(const_cast<QObject*>(object), QMetaObject::QueryPropertyScriptable, | - |
3339 | idx + mobj->propertyOffset(), argv); | - |
3340 | } never executed: end of block | 0 |
3341 | 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 |
3342 | } | - |
3343 | | - |
3344 | | - |
3345 | | - |
3346 | | - |
3347 | | - |
3348 | | - |
3349 | | - |
3350 | | - |
3351 | | - |
3352 | | - |
3353 | | - |
3354 | bool QMetaProperty::isStored(const QObject *object) const | - |
3355 | { | - |
3356 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 100 times by 2 testsEvaluated by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
|
| 0-100 |
3357 | return false; never executed: return false; | 0 |
3358 | int flags = mobj->d.data[handle + 2]; | - |
3359 | bool b = flags & Stored; | - |
3360 | if (object) {TRUE | never evaluated | FALSE | evaluated 100 times by 2 testsEvaluated by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
|
| 0-100 |
3361 | void *argv[] = { &b }; | - |
3362 | QMetaObject::metacall(const_cast<QObject*>(object), QMetaObject::QueryPropertyStored, | - |
3363 | idx + mobj->propertyOffset(), argv); | - |
3364 | } never executed: end of block | 0 |
3365 | return b;executed 100 times by 2 tests: return b; Executed by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
| 100 |
3366 | } | - |
3367 | | - |
3368 | | - |
3369 | | - |
3370 | | - |
3371 | | - |
3372 | | - |
3373 | | - |
3374 | | - |
3375 | | - |
3376 | | - |
3377 | | - |
3378 | | - |
3379 | | - |
3380 | | - |
3381 | bool QMetaProperty::isUser(const QObject *object) const | - |
3382 | { | - |
3383 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 5463 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-5463 |
3384 | return false; never executed: return false; | 0 |
3385 | int flags = mobj->d.data[handle + 2]; | - |
3386 | bool b = flags & User; | - |
3387 | if (object) {TRUE | never evaluated | FALSE | evaluated 5463 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-5463 |
3388 | void *argv[] = { &b }; | - |
3389 | QMetaObject::metacall(const_cast<QObject*>(object), QMetaObject::QueryPropertyUser, | - |
3390 | idx + mobj->propertyOffset(), argv); | - |
3391 | } never executed: end of block | 0 |
3392 | return b;executed 5463 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
| 5463 |
3393 | } | - |
3394 | | - |
3395 | | - |
3396 | | - |
3397 | | - |
3398 | | - |
3399 | | - |
3400 | | - |
3401 | | - |
3402 | bool QMetaProperty::isConstant() const | - |
3403 | { | - |
3404 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 24 times by 3 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
|
| 0-24 |
3405 | return false; never executed: return false; | 0 |
3406 | int flags = mobj->d.data[handle + 2]; | - |
3407 | return flags & Constant;executed 24 times by 3 tests: return flags & Constant; Executed by:- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
| 24 |
3408 | } | - |
3409 | | - |
3410 | | - |
3411 | | - |
3412 | | - |
3413 | | - |
3414 | | - |
3415 | | - |
3416 | | - |
3417 | bool QMetaProperty::isFinal() const | - |
3418 | { | - |
3419 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 24 times by 3 testsEvaluated by:- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
|
| 0-24 |
3420 | return false; never executed: return false; | 0 |
3421 | int flags = mobj->d.data[handle + 2]; | - |
3422 | return flags & Final;executed 24 times by 3 tests: return flags & Final; Executed by:- tst_QMetaObject
- tst_QMetaObjectBuilder
- tst_QMetaProperty
| 24 |
3423 | } | - |
3424 | | - |
3425 | | - |
3426 | | - |
3427 | | - |
3428 | | - |
3429 | | - |
3430 | | - |
3431 | | - |
3432 | | - |
3433 | | - |
3434 | | - |
3435 | | - |
3436 | | - |
3437 | bool QMetaProperty::isEditable(const QObject *object) const | - |
3438 | { | - |
3439 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 100 times by 2 testsEvaluated by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
|
| 0-100 |
3440 | return false; never executed: return false; | 0 |
3441 | int flags = mobj->d.data[handle + 2]; | - |
3442 | bool b = flags & Editable; | - |
3443 | if (object) {TRUE | never evaluated | FALSE | evaluated 100 times by 2 testsEvaluated by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
|
| 0-100 |
3444 | void *argv[] = { &b }; | - |
3445 | QMetaObject::metacall(const_cast<QObject*>(object), QMetaObject::QueryPropertyEditable, | - |
3446 | idx + mobj->propertyOffset(), argv); | - |
3447 | } never executed: end of block | 0 |
3448 | return b;executed 100 times by 2 tests: return b; Executed by:- tst_QDBusMetaObject
- tst_QMetaObjectBuilder
| 100 |
3449 | } | - |
3450 | | - |
3451 | | - |
3452 | | - |
3453 | | - |
3454 | | - |
3455 | | - |
3456 | | - |
3457 | | - |
3458 | | - |
3459 | | - |
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 | const char *QMetaClassInfo::name() const | - |
3489 | { | - |
3490 | if (!mobj)TRUE | never evaluated | FALSE | evaluated 14 times by 1 test |
| 0-14 |
3491 | return 0; never executed: return 0; | 0 |
3492 | return rawStringData(mobj, mobj->d.data[handle]);executed 14 times by 1 test: return rawStringData(mobj, mobj->d.data[handle]); | 14 |
3493 | } | - |
3494 | | - |
3495 | | - |
3496 | | - |
3497 | | - |
3498 | | - |
3499 | | - |
3500 | const char* QMetaClassInfo::value() const | - |
3501 | { | - |
3502 | 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 |
3503 | return 0; never executed: return 0; | 0 |
3504 | 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 |
3505 | } | - |
3506 | | - |
3507 | | - |
3508 | | - |
3509 | | - |
3510 | | - |
3511 | | - |
3512 | | - |
3513 | | - |
3514 | | - |
3515 | | - |
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 | int QMetaObjectPrivate::originalClone(const QMetaObject *mobj, int local_method_index) | - |
3587 | { | - |
3588 | Q_ASSERT(local_method_index < get(mobj)->methodCount); | - |
3589 | int handle = get(mobj)->methodData + 5 * local_method_index; | - |
3590 | while (mobj->d.data[handle + 4] & MethodCloned) {TRUE | evaluated 52929 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 762015 times by 277 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
- ...
|
| 52929-762015 |
3591 | Q_ASSERT(local_method_index > 0); | - |
3592 | handle -= 5; | - |
3593 | local_method_index--; | - |
3594 | }executed 52929 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
- ...
| 52929 |
3595 | return local_method_index;executed 762015 times by 277 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
- ...
| 762015 |
3596 | } | - |
3597 | | - |
3598 | | - |
3599 | | - |
3600 | | - |
3601 | | - |
3602 | | - |
3603 | QList<QByteArray> QMetaObjectPrivate::parameterTypeNamesFromSignature(const char *signature) | - |
3604 | { | - |
3605 | QList<QByteArray> list; | - |
3606 | 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 |
3607 | ++signature;executed 8883 times by 1 test: ++signature; | 8883 |
3608 | 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 |
3609 | const char *begin = signature; | - |
3610 | int level = 0; | - |
3611 | 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 |
3612 | if (*signature == '<')TRUE | never evaluated | FALSE | evaluated 3066 times by 1 test |
| 0-3066 |
3613 | ++level; never executed: ++level; | 0 |
3614 | else if (*signature == '>')TRUE | never evaluated | FALSE | evaluated 3066 times by 1 test |
| 0-3066 |
3615 | --level; never executed: --level; | 0 |
3616 | ++signature; | - |
3617 | }executed 3066 times by 1 test: end of block | 3066 |
3618 | list += QByteArray(begin, signature - begin); | - |
3619 | }executed 584 times by 1 test: end of block | 584 |
3620 | return list;executed 793 times by 1 test: return list; | 793 |
3621 | } | - |
3622 | | - |
3623 | QT_END_NAMESPACE | - |
| | |