Line | Source | Count |
1 | | - |
2 | | - |
3 | | - |
4 | | - |
5 | | - |
6 | | - |
7 | | - |
8 | | - |
9 | | - |
10 | | - |
11 | | - |
12 | | - |
13 | | - |
14 | | - |
15 | | - |
16 | | - |
17 | | - |
18 | | - |
19 | | - |
20 | | - |
21 | | - |
22 | | - |
23 | | - |
24 | | - |
25 | | - |
26 | | - |
27 | | - |
28 | | - |
29 | | - |
30 | | - |
31 | | - |
32 | | - |
33 | | - |
34 | | - |
35 | | - |
36 | | - |
37 | | - |
38 | | - |
39 | | - |
40 | | - |
41 | #include "qcoreapplication.h" | - |
42 | #include "qcoreapplication_p.h" | - |
43 | | - |
44 | #ifndef QT_NO_QOBJECT | - |
45 | #include "qabstracteventdispatcher.h" | - |
46 | #include "qcoreevent.h" | - |
47 | #include "qeventloop.h" | - |
48 | #endif | - |
49 | #include "qcorecmdlineargs_p.h" | - |
50 | #include <qdatastream.h> | - |
51 | #include <qdebug.h> | - |
52 | #include <qdir.h> | - |
53 | #include <qfile.h> | - |
54 | #include <qfileinfo.h> | - |
55 | #include <qmutex.h> | - |
56 | #include <private/qloggingregistry_p.h> | - |
57 | #include <qstandardpaths.h> | - |
58 | #include <qtextcodec.h> | - |
59 | #ifndef QT_NO_QOBJECT | - |
60 | #include <qthread.h> | - |
61 | #include <qthreadpool.h> | - |
62 | #include <qthreadstorage.h> | - |
63 | #include <private/qthread_p.h> | - |
64 | #endif | - |
65 | #include <qelapsedtimer.h> | - |
66 | #include <qlibraryinfo.h> | - |
67 | #include <qvarlengtharray.h> | - |
68 | #include <private/qfactoryloader_p.h> | - |
69 | #include <private/qfunctions_p.h> | - |
70 | #include <private/qlocale_p.h> | - |
71 | #include <private/qhooks_p.h> | - |
72 | | - |
73 | #ifndef QT_NO_QOBJECT | - |
74 | #if defined(Q_OS_UNIX) | - |
75 | # if defined(Q_OS_OSX) | - |
76 | # include "qeventdispatcher_cf_p.h" | - |
77 | # else | - |
78 | # if !defined(QT_NO_GLIB) | - |
79 | # include "qeventdispatcher_glib_p.h" | - |
80 | # endif | - |
81 | # endif | - |
82 | # include "qeventdispatcher_unix_p.h" | - |
83 | #endif | - |
84 | #ifdef Q_OS_WIN | - |
85 | # ifdef Q_OS_WINRT | - |
86 | # include "qeventdispatcher_winrt_p.h" | - |
87 | # include "qfunctions_winrt.h" | - |
88 | # include <wrl.h> | - |
89 | # include <Windows.ApplicationModel.core.h> | - |
90 | using namespace ABI::Windows::ApplicationModel::Core; | - |
91 | using namespace Microsoft::WRL; | - |
92 | # else | - |
93 | # include "qeventdispatcher_win_p.h" | - |
94 | # endif | - |
95 | #endif | - |
96 | #endif // QT_NO_QOBJECT | - |
97 | | - |
98 | #ifdef Q_OS_MAC | - |
99 | # include "qcore_mac_p.h" | - |
100 | #endif | - |
101 | | - |
102 | #include <stdlib.h> | - |
103 | | - |
104 | #ifdef Q_OS_UNIX | - |
105 | # include <locale.h> | - |
106 | # include <unistd.h> | - |
107 | # include <sys/types.h> | - |
108 | #endif | - |
109 | | - |
110 | #ifdef Q_OS_VXWORKS | - |
111 | # include <taskLib.h> | - |
112 | #endif | - |
113 | | - |
114 | #include <algorithm> | - |
115 | | - |
116 | QT_BEGIN_NAMESPACE | - |
117 | | - |
118 | #ifndef QT_NO_QOBJECT | - |
119 | class QMutexUnlocker | - |
120 | { | - |
121 | public: | - |
122 | inline explicit QMutexUnlocker(QMutex *m) | - |
123 | : mtx(m) | - |
124 | { }executed 657414 times by 491 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- ...
| 657414 |
125 | inline ~QMutexUnlocker() { unlock(); }executed 657414 times by 491 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- ...
| 657414 |
126 | inline void unlock() { if (mtx) mtx->unlock(); mtx = 0; }executed 1304124 times by 491 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- ...
executed 657414 times by 491 tests: mtx->unlock(); Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- ...
TRUE | evaluated 657414 times by 491 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- ...
| FALSE | evaluated 646710 times by 491 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- ...
|
| 646710-1304124 |
127 | | - |
128 | private: | - |
129 | Q_DISABLE_COPY(QMutexUnlocker) | - |
130 | | - |
131 | QMutex *mtx; | - |
132 | }; | - |
133 | #endif | - |
134 | | - |
135 | #if defined(Q_OS_WIN) || defined(Q_OS_MAC) | - |
136 | extern QString qAppFileName(); | - |
137 | #endif | - |
138 | | - |
139 | #if QT_VERSION >= 0x060000 | - |
140 | # error "Bump QCoreApplicatoinPrivate::app_compile_version to 0x060000" | - |
141 | #endif | - |
142 | int QCoreApplicationPrivate::app_compile_version = 0x050000; | - |
143 | | - |
144 | bool QCoreApplicationPrivate::setuidAllowed = false; | - |
145 | | - |
146 | #if !defined(Q_OS_WIN) | - |
147 | #ifdef Q_OS_MAC | - |
148 | QString QCoreApplicationPrivate::macMenuBarName() | - |
149 | { | - |
150 | QString bundleName; | - |
151 | CFTypeRef string = CFBundleGetValueForInfoDictionaryKey(CFBundleGetMainBundle(), CFSTR("CFBundleName")); | - |
152 | if (string) | - |
153 | bundleName = QCFString::toQString(static_cast<CFStringRef>(string)); | - |
154 | return bundleName; | - |
155 | } | - |
156 | #endif | - |
157 | QString QCoreApplicationPrivate::appName() const | - |
158 | { | - |
159 | QString applicationName; | - |
160 | #ifdef Q_OS_MAC | - |
161 | applicationName = macMenuBarName(); | - |
162 | #endif | - |
163 | if (applicationName.isEmpty() && argv[0]) {TRUE | evaluated 1091 times by 27 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QLockFile
- tst_QNetworkConfigurationManager
- tst_QSettings
- tst_QSql
- tst_QWidget_window
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qstandardpaths
- ...
| FALSE | never evaluated |
TRUE | evaluated 1091 times by 27 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QLockFile
- tst_QNetworkConfigurationManager
- tst_QSettings
- tst_QSql
- tst_QWidget_window
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qstandardpaths
- ...
| FALSE | never evaluated |
| 0-1091 |
164 | char *p = strrchr(argv[0], '/'); | - |
165 | applicationName = QString::fromLocal8Bit(p ? p + 1 : argv[0]); | - |
166 | }executed 1091 times by 27 tests: end of block Executed by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QLockFile
- tst_QNetworkConfigurationManager
- tst_QSettings
- tst_QSql
- tst_QWidget_window
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qstandardpaths
- ...
| 1091 |
167 | | - |
168 | return applicationName;executed 1091 times by 27 tests: return applicationName; Executed by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QLockFile
- tst_QNetworkConfigurationManager
- tst_QSettings
- tst_QSql
- tst_QWidget_window
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qstandardpaths
- ...
| 1091 |
169 | } | - |
170 | #endif | - |
171 | | - |
172 | QString *QCoreApplicationPrivate::cachedApplicationFilePath = 0; | - |
173 | | - |
174 | bool QCoreApplicationPrivate::checkInstance(const char *function) | - |
175 | { | - |
176 | bool b = (QCoreApplication::self != 0); | - |
177 | if (!b)TRUE | never evaluated | FALSE | evaluated 174 times by 18 testsEvaluated by:- tst_QApplication
- tst_QColorDialog
- tst_QCoreApplication
- tst_QFontDialog
- tst_QGuiApplication
- tst_QKeySequence
- tst_QLockFile
- tst_QProgressDialog
- tst_QStateMachine
- tst_QSystemTrayIcon
- tst_QTranslator
- tst_languageChange
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qkeysequence - unknown status
|
| 0-174 |
178 | qWarning("QApplication::%s: Please instantiate the QApplication object first", function); never executed: QMessageLogger(__FILE__, 178, __PRETTY_FUNCTION__).warning("QApplication::%s: Please instantiate the QApplication object first", function); | 0 |
179 | return b;executed 174 times by 18 tests: return b; Executed by:- tst_QApplication
- tst_QColorDialog
- tst_QCoreApplication
- tst_QFontDialog
- tst_QGuiApplication
- tst_QKeySequence
- tst_QLockFile
- tst_QProgressDialog
- tst_QStateMachine
- tst_QSystemTrayIcon
- tst_QTranslator
- tst_languageChange
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qkeysequence - unknown status
| 174 |
180 | } | - |
181 | | - |
182 | void QCoreApplicationPrivate::processCommandLineArguments() | - |
183 | { | - |
184 | int j = argc ? 1 : 0;TRUE | evaluated 979 times by 20 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnection_Delayed
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
| FALSE | evaluated 98 times by 6 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDnsLookup_Appless
- tst_QGuiApplication
|
| 98-979 |
185 | for (int i = 1; i < argc; ++i) {TRUE | evaluated 2234 times by 8 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
- tst_qdbusxml2cpp - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
| FALSE | evaluated 1077 times by 23 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
|
| 1077-2234 |
186 | if (!argv[i])TRUE | never evaluated | FALSE | evaluated 2234 times by 8 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
- tst_qdbusxml2cpp - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
|
| 0-2234 |
187 | continue; never executed: continue; | 0 |
188 | if (*argv[i] != '-') {TRUE | evaluated 614 times by 7 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
| FALSE | evaluated 1620 times by 5 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
- tst_qdbusxml2cpp - unknown status
- tst_selftests - unknown status
|
| 614-1620 |
189 | argv[j++] = argv[i]; | - |
190 | continue;executed 614 times by 7 tests: continue; Executed by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
| 614 |
191 | } | - |
192 | const char *arg = argv[i]; | - |
193 | if (arg[1] == '-') TRUE | never evaluated | FALSE | evaluated 1620 times by 5 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
- tst_qdbusxml2cpp - unknown status
- tst_selftests - unknown status
|
| 0-1620 |
194 | ++arg; never executed: ++arg; | 0 |
195 | if (strncmp(arg, "-qmljsdebugger=", 15) == 0) {TRUE | evaluated 2 times by 2 testsEvaluated by:- tst_QCoreApplication
- tst_QGuiApplication
| FALSE | evaluated 1618 times by 4 testsEvaluated by:- tst_QApplication
- tst_QGuiApplication
- tst_qdbusxml2cpp - unknown status
- tst_selftests - unknown status
|
| 2-1618 |
196 | qmljs_debug_arguments = QString::fromLocal8Bit(arg + 15); | - |
197 | } else if (strcmp(arg, "-qmljsdebugger") == 0 && i < argc - 1) {executed 2 times by 2 tests: end of block Executed by:- tst_QCoreApplication
- tst_QGuiApplication
TRUE | never evaluated | FALSE | evaluated 1618 times by 4 testsEvaluated by:- tst_QApplication
- tst_QGuiApplication
- tst_qdbusxml2cpp - unknown status
- tst_selftests - unknown status
|
TRUE | never evaluated | FALSE | never evaluated |
| 0-1618 |
198 | ++i; | - |
199 | qmljs_debug_arguments = QString::fromLocal8Bit(argv[i]); | - |
200 | } else { never executed: end of block | 0 |
201 | argv[j++] = argv[i]; | - |
202 | }executed 1618 times by 4 tests: end of block Executed by:- tst_QApplication
- tst_QGuiApplication
- tst_qdbusxml2cpp - unknown status
- tst_selftests - unknown status
| 1618 |
203 | } | - |
204 | | - |
205 | if (j < argc) {TRUE | evaluated 2 times by 2 testsEvaluated by:- tst_QCoreApplication
- tst_QGuiApplication
| FALSE | evaluated 1075 times by 23 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
|
| 2-1075 |
206 | argv[j] = 0; | - |
207 | argc = j; | - |
208 | }executed 2 times by 2 tests: end of block Executed by:- tst_QCoreApplication
- tst_QGuiApplication
| 2 |
209 | }executed 1077 times by 23 tests: end of block Executed by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
| 1077 |
210 | | - |
211 | | - |
212 | | - |
213 | #ifndef QT_NO_QOBJECT | - |
214 | QSignalSpyCallbackSet Q_CORE_EXPORT qt_signal_spy_callback_set = { 0, 0, 0, 0 }; | - |
215 | | - |
216 | void qt_register_signal_spy_callbacks(const QSignalSpyCallbackSet &callback_set) | - |
217 | { | - |
218 | qt_signal_spy_callback_set = callback_set; | - |
219 | }executed 1238 times by 508 tests: end of block Executed by:- tst_collections - unknown status
- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_largefile - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractfileengine - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractproxymodel - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractsocket - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- ...
| 1238 |
220 | #endif | - |
221 | | - |
222 | extern "C" void Q_CORE_EXPORT qt_startup_hook() | - |
223 | { | - |
224 | } | - |
225 | | - |
226 | typedef QList<QtStartUpFunction> QStartUpFuncList; | - |
227 | Q_GLOBAL_STATIC(QStartUpFuncList, preRList)executed 1171 times by 419 tests: end of block Executed by:- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractproxymodel - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractsocket - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qanimationgroup - unknown status
- tst_qapplication - unknown status
- ...
executed 1171 times by 419 tests: guard.store(QtGlobalStatic::Destroyed); Executed by:- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractproxymodel - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractsocket - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qanimationgroup - unknown status
- tst_qapplication - unknown status
- ...
executed 1095 times by 38 tests: return &holder.value; Executed by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QFtp
- tst_QGlobal
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QSql
- tst_QTcpServer
- tst_QUdpSocket
- tst_QXmlInputSource
- ...
TRUE | evaluated 1171 times by 419 testsEvaluated by:- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractproxymodel - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractsocket - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qanimationgroup - unknown status
- tst_qapplication - unknown status
- ...
| FALSE | never evaluated |
| 0-1171 |
228 | typedef QList<QtCleanUpFunction> QVFuncList; | - |
229 | Q_GLOBAL_STATIC(QVFuncList, postRList)executed 1167 times by 419 tests: end of block Executed by:- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractproxymodel - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractsocket - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qanimationgroup - unknown status
- tst_qapplication - unknown status
- ...
executed 1167 times by 419 tests: guard.store(QtGlobalStatic::Destroyed); Executed by:- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractproxymodel - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractsocket - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qanimationgroup - unknown status
- tst_qapplication - unknown status
- ...
executed 1734 times by 483 tests: return &holder.value; Executed by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDateTimeEdit
- tst_QDnsLookup_Appless
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFtp
- tst_QGestureRecognizer
- tst_QGlobal
- ...
TRUE | evaluated 1167 times by 419 testsEvaluated by:- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractproxymodel - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractsocket - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qanimationgroup - unknown status
- tst_qapplication - unknown status
- ...
| FALSE | never evaluated |
| 0-1734 |
230 | #ifndef QT_NO_QOBJECT | - |
231 | static QBasicMutex globalPreRoutinesMutex; | - |
232 | #endif | - |
233 | | - |
234 | | - |
235 | | - |
236 | | - |
237 | | - |
238 | | - |
239 | | - |
240 | void qAddPreRoutine(QtStartUpFunction p) | - |
241 | { | - |
242 | QStartUpFuncList *list = preRList(); | - |
243 | if (!list)TRUE | never evaluated | FALSE | evaluated 18 times by 16 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_QTcpServer
- tst_QUdpSocket
- tst_QXmlInputSource
- tst_QXmlStream
|
| 0-18 |
244 | return; never executed: return; | 0 |
245 | | - |
246 | | - |
247 | #ifndef QT_NO_THREAD | - |
248 | QMutexLocker locker(&globalPreRoutinesMutex); | - |
249 | #endif | - |
250 | if (QCoreApplication::instance())TRUE | evaluated 18 times by 16 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_QTcpServer
- tst_QUdpSocket
- tst_QXmlInputSource
- tst_QXmlStream
| FALSE | never evaluated |
| 0-18 |
251 | p();executed 18 times by 16 tests: p(); Executed by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QFtp
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QTcpServer
- tst_QUdpSocket
- tst_QXmlInputSource
- tst_QXmlStream
| 18 |
252 | list->prepend(p); | - |
253 | }executed 18 times by 16 tests: end of block Executed by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QFtp
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QTcpServer
- tst_QUdpSocket
- tst_QXmlInputSource
- tst_QXmlStream
| 18 |
254 | | - |
255 | void qAddPostRoutine(QtCleanUpFunction p) | - |
256 | { | - |
257 | QVFuncList *list = postRList(); | - |
258 | if (!list)TRUE | never evaluated | FALSE | evaluated 95 times by 68 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDateTimeEdit
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFtp
- tst_QGestureRecognizer
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsView
- tst_QGridLayout
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QIcon
- ...
|
| 0-95 |
259 | return; never executed: return; | 0 |
260 | list->prepend(p); | - |
261 | }executed 95 times by 68 tests: end of block Executed by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDateTimeEdit
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFtp
- tst_QGestureRecognizer
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsView
- tst_QGridLayout
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QIcon
- ...
| 95 |
262 | | - |
263 | void qRemovePostRoutine(QtCleanUpFunction p) | - |
264 | { | - |
265 | QVFuncList *list = postRList(); | - |
266 | if (!list)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
267 | return; never executed: return; | 0 |
268 | list->removeAll(p); | - |
269 | } never executed: end of block | 0 |
270 | | - |
271 | static void qt_call_pre_routines() | - |
272 | { | - |
273 | QStartUpFuncList *list = preRList(); | - |
274 | if (!list)TRUE | never evaluated | FALSE | evaluated 1077 times by 23 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
|
| 0-1077 |
275 | return; never executed: return; | 0 |
276 | #ifndef QT_NO_THREAD | - |
277 | QMutexLocker locker(&globalPreRoutinesMutex); | - |
278 | #endif | - |
279 | | - |
280 | | - |
281 | | - |
282 | for (int i = 0; i < list->count(); ++i)TRUE | evaluated 4 times by 2 testsEvaluated by:- tst_QGlobal
- tst_QNetworkConfigurationManager
| FALSE | evaluated 1077 times by 23 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
|
| 4-1077 |
283 | list->at(i)();executed 4 times by 2 tests: list->at(i)(); Executed by:- tst_QGlobal
- tst_QNetworkConfigurationManager
| 4 |
284 | }executed 1077 times by 23 tests: end of block Executed by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
| 1077 |
285 | | - |
286 | void Q_CORE_EXPORT qt_call_post_routines() | - |
287 | { | - |
288 | QVFuncList *list = 0; | - |
289 | QT_TRY { | - |
290 | list = postRList(); | - |
291 | } QT_CATCH(const std::bad_alloc &) {executed 1639 times by 420 tests: end of block Executed by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- ...
| 1639 |
292 | | - |
293 | | - |
294 | | - |
295 | } never executed: end of block | 0 |
296 | if (!list)TRUE | never evaluated | FALSE | evaluated 1639 times by 420 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- ...
|
| 0-1639 |
297 | return; never executed: return; | 0 |
298 | while (!list->isEmpty())TRUE | evaluated 252 times by 185 testsEvaluated by:- tst_QApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_gestures - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractspinbox - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qapplication - unknown status
- tst_qboxlayout - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- tst_qcheckbox - unknown status
- tst_qcolordialog - unknown status
- tst_qcolumnview - unknown status
- tst_qcombobox - unknown status
- ...
| FALSE | evaluated 1639 times by 420 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- ...
|
| 252-1639 |
299 | (list->takeFirst())();executed 252 times by 185 tests: (list->takeFirst())(); Executed by:- tst_QApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_gestures - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractspinbox - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qapplication - unknown status
- tst_qboxlayout - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- tst_qcheckbox - unknown status
- tst_qcolordialog - unknown status
- tst_qcolumnview - unknown status
- tst_qcombobox - unknown status
- ...
| 252 |
300 | }executed 1639 times by 420 tests: end of block Executed by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- ...
| 1639 |
301 | | - |
302 | | - |
303 | | - |
304 | static bool qt_locale_initialized = false; | - |
305 | | - |
306 | #ifndef QT_NO_QOBJECT | - |
307 | | - |
308 | | - |
309 | bool QCoreApplicationPrivate::is_app_running = false; | - |
310 | | - |
311 | bool QCoreApplicationPrivate::is_app_closing = false; | - |
312 | | - |
313 | Q_CORE_EXPORT uint qGlobalPostedEventsCount() | - |
314 | { | - |
315 | QThreadData *currentThreadData = QThreadData::current(); | - |
316 | return currentThreadData->postEventList.size() - currentThreadData->postEventList.startOffset;executed 16 times by 2 tests: return currentThreadData->postEventList.size() - currentThreadData->postEventList.startOffset; Executed by:- tst_QCoreApplication
- tst_QGuiApplication
| 16 |
317 | } | - |
318 | | - |
319 | QAbstractEventDispatcher *QCoreApplicationPrivate::eventDispatcher = 0; | - |
320 | | - |
321 | #ifdef Q_OS_UNIX | - |
322 | Qt::HANDLE qt_application_thread_id = 0; | - |
323 | #endif | - |
324 | | - |
325 | #endif // QT_NO_QOBJECT | - |
326 | | - |
327 | QCoreApplication *QCoreApplication::self = 0; | - |
328 | uint QCoreApplicationPrivate::attribs = | - |
329 | (1 << Qt::AA_SynthesizeMouseForUnhandledTouchEvents) | | - |
330 | (1 << Qt::AA_SynthesizeMouseForUnhandledTabletEvents); | - |
331 | | - |
332 | struct QCoreApplicationData { | - |
333 | QCoreApplicationData() Q_DECL_NOTHROW { | - |
334 | applicationNameSet = false; | - |
335 | }executed 850 times by 25 tests: end of block Executed by:- tst_LargeFile
- tst_QAbstractFileEngine
- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
| 850 |
336 | ~QCoreApplicationData() { | - |
337 | #ifndef QT_NO_QOBJECT | - |
338 | | - |
339 | if (QCoreApplicationPrivate::theMainThread) {TRUE | evaluated 1171 times by 421 testsEvaluated by:- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_largefile - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractfileengine - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractproxymodel - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractsocket - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- ...
| FALSE | never evaluated |
| 0-1171 |
340 | QThreadData *data = QThreadData::get2(QCoreApplicationPrivate::theMainThread); | - |
341 | data->deref(); | - |
342 | }executed 1171 times by 421 tests: end of block Executed by:- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_largefile - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractfileengine - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractproxymodel - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractsocket - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- ...
| 1171 |
343 | #endif | - |
344 | }executed 1171 times by 421 tests: end of block Executed by:- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_largefile - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractfileengine - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractproxymodel - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractsocket - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- ...
| 1171 |
345 | | - |
346 | QString orgName, orgDomain; | - |
347 | QString application; | - |
348 | QString applicationVersion; | - |
349 | bool applicationNameSet; | - |
350 | | - |
351 | #ifndef QT_NO_LIBRARY | - |
352 | QScopedPointer<QStringList> app_libpaths; | - |
353 | QScopedPointer<QStringList> manual_libpaths; | - |
354 | #endif | - |
355 | | - |
356 | }; | - |
357 | | - |
358 | Q_GLOBAL_STATIC(QCoreApplicationData, coreappdata)executed 1171 times by 421 tests: end of block Executed by:- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_largefile - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractfileengine - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractproxymodel - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractsocket - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- ...
executed 1171 times by 421 tests: guard.store(QtGlobalStatic::Destroyed); Executed by:- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_largefile - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractfileengine - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractproxymodel - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractsocket - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- ...
executed 29304 times by 601 tests: return &holder.value; Executed by:- tst_Gestures
- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- ...
TRUE | evaluated 1171 times by 421 testsEvaluated by:- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_largefile - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractfileengine - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractproxymodel - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractsocket - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- ...
| FALSE | never evaluated |
| 0-29304 |
359 | | - |
360 | #ifndef QT_NO_QOBJECT | - |
361 | static bool quitLockRefEnabled = true; | - |
362 | #endif | - |
363 | | - |
364 | #if defined(Q_OS_WIN) && !defined(Q_OS_WINRT) | - |
365 | | - |
366 | | - |
367 | | - |
368 | | - |
369 | static inline bool isArgvModified(int argc, char **argv) | - |
370 | { | - |
371 | if (__argc != argc || !__argv ) | - |
372 | return true; | - |
373 | if (__argv == argv) | - |
374 | return false; | - |
375 | for (int a = 0; a < argc; ++a) { | - |
376 | if (argv[a] != __argv[a] && strcmp(argv[a], __argv[a])) | - |
377 | return true; | - |
378 | } | - |
379 | return false; | - |
380 | } | - |
381 | | - |
382 | static inline bool contains(int argc, char **argv, const char *needle) | - |
383 | { | - |
384 | for (int a = 0; a < argc; ++a) { | - |
385 | if (!strcmp(argv[a], needle)) | - |
386 | return true; | - |
387 | } | - |
388 | return false; | - |
389 | } | - |
390 | #endif // Q_OS_WIN && !Q_OS_WINRT | - |
391 | | - |
392 | QCoreApplicationPrivate::QCoreApplicationPrivate(int &aargc, char **aargv, uint flags) | - |
393 | : | - |
394 | #ifndef QT_NO_QOBJECT | - |
395 | QObjectPrivate(), | - |
396 | #endif | - |
397 | argc(aargc) | - |
398 | , argv(aargv) | - |
399 | #if defined(Q_OS_WIN) && !defined(Q_OS_WINRT) | - |
400 | , origArgc(0) | - |
401 | , origArgv(Q_NULLPTR) | - |
402 | #endif | - |
403 | , application_type(QCoreApplicationPrivate::Tty) | - |
404 | #ifndef QT_NO_QOBJECT | - |
405 | , in_exec(false) | - |
406 | , aboutToQuitEmitted(false) | - |
407 | , threadData_clean(false) | - |
408 | #else | - |
409 | , q_ptr(0) | - |
410 | #endif | - |
411 | { | - |
412 | app_compile_version = flags & 0xffffff; | - |
413 | static const char *const empty = ""; | - |
414 | if (argc == 0 || argv == 0) {TRUE | evaluated 98 times by 6 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDnsLookup_Appless
- tst_QGuiApplication
| FALSE | evaluated 980 times by 20 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnection_Delayed
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
|
TRUE | never evaluated | FALSE | evaluated 980 times by 20 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnection_Delayed
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
|
| 0-980 |
415 | argc = 0; | - |
416 | argv = const_cast<char **>(&empty); | - |
417 | }executed 98 times by 6 tests: end of block Executed by:- tst_QApplication
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDnsLookup_Appless
- tst_QGuiApplication
| 98 |
418 | #if defined(Q_OS_WIN) && !defined(Q_OS_WINRT) | - |
419 | if (!isArgvModified(argc, argv)) { | - |
420 | origArgc = argc; | - |
421 | origArgv = new char *[argc]; | - |
422 | std::copy(argv, argv + argc, QT_MAKE_CHECKED_ARRAY_ITERATOR(origArgv, argc)); | - |
423 | } | - |
424 | #endif // Q_OS_WIN && !Q_OS_WINRT | - |
425 | | - |
426 | #ifndef QT_NO_QOBJECT | - |
427 | QCoreApplicationPrivate::is_app_closing = false; | - |
428 | | - |
429 | # if defined(Q_OS_UNIX) | - |
430 | if (Q_UNLIKELY(!setuidAllowed && (geteuid() != getuid())))TRUE | never evaluated | FALSE | evaluated 1078 times by 23 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
|
| 0-1078 |
431 | qFatal("FATAL: The application binary appears to be running setuid, this is a security hole."); never executed: QMessageLogger(__FILE__, 431, __PRETTY_FUNCTION__).fatal("FATAL: The application binary appears to be running setuid, this is a security hole."); | 0 |
432 | # endif // Q_OS_UNIX | - |
433 | | - |
434 | # if defined(Q_OS_UNIX) | - |
435 | qt_application_thread_id = QThread::currentThreadId(); | - |
436 | # endif | - |
437 | | - |
438 | QThread *cur = QThread::currentThread(); | - |
439 | if (cur != theMainThread)TRUE | never evaluated | FALSE | evaluated 1078 times by 23 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
|
| 0-1078 |
440 | qWarning("WARNING: QApplication was not created in the main() thread."); never executed: QMessageLogger(__FILE__, 440, __PRETTY_FUNCTION__).warning("WARNING: QApplication was not created in the main() thread."); | 0 |
441 | #endif | - |
442 | }executed 1078 times by 23 tests: end of block Executed by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
| 1078 |
443 | | - |
444 | QCoreApplicationPrivate::~QCoreApplicationPrivate() | - |
445 | { | - |
446 | #ifndef QT_NO_QOBJECT | - |
447 | cleanupThreadData(); | - |
448 | #endif | - |
449 | #if defined(Q_OS_WIN) && !defined(Q_OS_WINRT) | - |
450 | delete [] origArgv; | - |
451 | #endif | - |
452 | QCoreApplicationPrivate::clearApplicationFilePath(); | - |
453 | }executed 1396 times by 420 tests: end of block Executed by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- ...
| 1396 |
454 | | - |
455 | #ifndef QT_NO_QOBJECT | - |
456 | | - |
457 | void QCoreApplicationPrivate::cleanupThreadData() | - |
458 | { | - |
459 | if (threadData && !threadData_clean) {TRUE | evaluated 1743 times by 420 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- ...
| FALSE | never evaluated |
TRUE | evaluated 1397 times by 420 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- ...
| FALSE | evaluated 346 times by 219 testsEvaluated by:- tst_QApplication
- tst_QGuiApplication
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractproxymodel - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qapplication - unknown status
- tst_qbackingstore - unknown status
- tst_qboxlayout - unknown status
- tst_qbrush - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- tst_qcheckbox - unknown status
- tst_qclipboard - unknown status
- ...
|
| 0-1743 |
460 | #ifndef QT_NO_THREAD | - |
461 | void *data = &threadData->tls; | - |
462 | QThreadStorageData::finish((void **)data); | - |
463 | #endif | - |
464 | | - |
465 | | - |
466 | QMutexLocker locker(&threadData->postEventList.mutex); | - |
467 | for (int i = 0; i < threadData->postEventList.size(); ++i) {TRUE | evaluated 11061 times by 141 testsEvaluated by:- tst_QApplication
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_gestures - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractspinbox - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qapplication - unknown status
- tst_qbackingstore - unknown status
- tst_qboxlayout - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- tst_qcheckbox - unknown status
- tst_qcolumnview - unknown status
- tst_qcombobox - unknown status
- tst_qcommandlinkbutton - unknown status
- tst_qcompleter - unknown status
- ...
| FALSE | evaluated 1397 times by 420 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- ...
|
| 1397-11061 |
468 | const QPostEvent &pe = threadData->postEventList.at(i); | - |
469 | if (pe.event) {TRUE | evaluated 11050 times by 138 testsEvaluated by:- tst_QApplication
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_gestures - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractspinbox - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qapplication - unknown status
- tst_qbackingstore - unknown status
- tst_qboxlayout - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- tst_qcheckbox - unknown status
- tst_qcombobox - unknown status
- tst_qcommandlinkbutton - unknown status
- tst_qcompleter - unknown status
- tst_qdatawidgetmapper - unknown status
- ...
| FALSE | evaluated 11 times by 9 testsEvaluated by:- tst_QApplication
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_networkselftest - unknown status
- tst_qcolumnview - unknown status
- tst_qdbusthreading - unknown status
- tst_qhttpsocketengine - unknown status
- tst_qnetworkaccessmanager - unknown status
- tst_qnetworkinterface - unknown status
|
| 11-11050 |
470 | --pe.receiver->d_func()->postedEvents; | - |
471 | pe.event->posted = false; | - |
472 | delete pe.event; | - |
473 | }executed 11050 times by 138 tests: end of block Executed by:- tst_QApplication
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_gestures - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractspinbox - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qapplication - unknown status
- tst_qbackingstore - unknown status
- tst_qboxlayout - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- tst_qcheckbox - unknown status
- tst_qcombobox - unknown status
- tst_qcommandlinkbutton - unknown status
- tst_qcompleter - unknown status
- tst_qdatawidgetmapper - unknown status
- ...
| 11050 |
474 | }executed 11061 times by 141 tests: end of block Executed by:- tst_QApplication
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_gestures - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractspinbox - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qapplication - unknown status
- tst_qbackingstore - unknown status
- tst_qboxlayout - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- tst_qcheckbox - unknown status
- tst_qcolumnview - unknown status
- tst_qcombobox - unknown status
- tst_qcommandlinkbutton - unknown status
- tst_qcompleter - unknown status
- ...
| 11061 |
475 | threadData->postEventList.clear(); | - |
476 | threadData->postEventList.recursion = 0; | - |
477 | threadData->quitNow = false; | - |
478 | threadData_clean = true; | - |
479 | }executed 1397 times by 420 tests: end of block Executed by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- ...
| 1397 |
480 | }executed 1743 times by 420 tests: end of block Executed by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- ...
| 1743 |
481 | | - |
482 | void QCoreApplicationPrivate::createEventDispatcher() | - |
483 | { | - |
484 | Q_Q(QCoreApplication); | - |
485 | #if defined(Q_OS_UNIX) | - |
486 | # if defined(Q_OS_OSX) | - |
487 | bool ok = false; | - |
488 | int value = qEnvironmentVariableIntValue("QT_EVENT_DISPATCHER_CORE_FOUNDATION", &ok); | - |
489 | if (ok && value > 0) | - |
490 | eventDispatcher = new QEventDispatcherCoreFoundation(q); | - |
491 | else | - |
492 | eventDispatcher = new QEventDispatcherUNIX(q); | - |
493 | # elif !defined(QT_NO_GLIB) | - |
494 | if (qEnvironmentVariableIsEmpty("QT_NO_GLIB") && QEventDispatcherGlib::versionSupported())TRUE | evaluated 940 times by 22 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
| FALSE | never evaluated |
TRUE | evaluated 940 times by 22 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
| FALSE | never evaluated |
| 0-940 |
495 | eventDispatcher = new QEventDispatcherGlib(q);executed 940 times by 22 tests: eventDispatcher = new QEventDispatcherGlib(q); Executed by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
| 940 |
496 | else | - |
497 | eventDispatcher = new QEventDispatcherUNIX(q); never executed: eventDispatcher = new QEventDispatcherUNIX(q); | 0 |
498 | # else | - |
499 | eventDispatcher = new QEventDispatcherUNIX(q); | - |
500 | # endif | - |
501 | #elif defined(Q_OS_WINRT) | - |
502 | eventDispatcher = new QEventDispatcherWinRT(q); | - |
503 | #elif defined(Q_OS_WIN) | - |
504 | eventDispatcher = new QEventDispatcherWin32(q); | - |
505 | #else | - |
506 | # error "QEventDispatcher not yet ported to this platform" | - |
507 | #endif | - |
508 | } | - |
509 | | - |
510 | void QCoreApplicationPrivate::eventDispatcherReady() | - |
511 | { | - |
512 | } | - |
513 | | - |
514 | QBasicAtomicPointer<QThread> QCoreApplicationPrivate::theMainThread = Q_BASIC_ATOMIC_INITIALIZER(0); | - |
515 | QThread *QCoreApplicationPrivate::mainThread() | - |
516 | { | - |
517 | Q_ASSERT(theMainThread.load() != 0); | - |
518 | return theMainThread.load();executed 3386410 times by 382 tests: return theMainThread.load(); Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QBuffer
- ...
| 3386410 |
519 | } | - |
520 | | - |
521 | bool QCoreApplicationPrivate::threadRequiresCoreApplication() | - |
522 | { | - |
523 | QThreadData *data = QThreadData::current(false); | - |
524 | if (!data)TRUE | never evaluated | FALSE | evaluated 2899129 times by 529 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- 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_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
|
| 0-2899129 |
525 | return true; never executed: return true; | 0 |
526 | return data->requiresCoreApplication;executed 2899129 times by 529 tests: return data->requiresCoreApplication; Executed by:- tst_Gestures
- tst_Lancelot
- 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_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| 2899129 |
527 | } | - |
528 | | - |
529 | void QCoreApplicationPrivate::checkReceiverThread(QObject *receiver) | - |
530 | { | - |
531 | QThread *currentThread = QThread::currentThread(); | - |
532 | QThread *thr = receiver->thread(); | - |
533 | Q_ASSERT_X(currentThread == thr || !thr, | - |
534 | "QCoreApplication::sendEvent", | - |
535 | QString::fromLatin1("Cannot send events to objects owned by a different thread. " | - |
536 | "Current thread %1. Receiver '%2' (of type '%3') was created in thread %4") | - |
537 | .arg(QString::number((quintptr) currentThread, 16)) | - |
538 | .arg(receiver->objectName()) | - |
539 | .arg(QLatin1String(receiver->metaObject()->className())) | - |
540 | .arg(QString::number((quintptr) thr, 16)) | - |
541 | .toLocal8Bit().data()); | - |
542 | Q_UNUSED(currentThread); | - |
543 | Q_UNUSED(thr); | - |
544 | }executed 1787912 times by 491 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_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_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| 1787912 |
545 | | - |
546 | #endif // QT_NO_QOBJECT | - |
547 | | - |
548 | void QCoreApplicationPrivate::appendApplicationPathToLibraryPaths() | - |
549 | { | - |
550 | #ifndef QT_NO_LIBRARY | - |
551 | QStringList *app_libpaths = coreappdata()->app_libpaths.data(); | - |
552 | if (!app_libpaths)TRUE | never evaluated | FALSE | evaluated 74 times by 30 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QCoreApplication
- tst_QFactoryLoader
- tst_QFtp
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QImage
- tst_QNetworkAccessManager
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QPluginLoader
- tst_QSql
- tst_QSqlDatabase
- tst_QSqlDriver
- tst_QSqlQuery
- tst_QSqlRelationalTableModel
- tst_QSqlThread
- tst_QTcpServer
- tst_QUdpSocket
- ...
|
| 0-74 |
553 | coreappdata()->app_libpaths.reset(app_libpaths = new QStringList); never executed: coreappdata()->app_libpaths.reset(app_libpaths = new QStringList); | 0 |
554 | QString app_location = QCoreApplication::applicationFilePath(); | - |
555 | app_location.truncate(app_location.lastIndexOf(QLatin1Char('/'))); | - |
556 | #ifdef Q_OS_WINRT | - |
557 | if (app_location.isEmpty()) | - |
558 | app_location.append(QLatin1Char('/')); | - |
559 | #endif | - |
560 | app_location = QDir(app_location).canonicalPath(); | - |
561 | if (QFile::exists(app_location) && !app_libpaths->contains(app_location))TRUE | evaluated 74 times by 30 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QCoreApplication
- tst_QFactoryLoader
- tst_QFtp
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QImage
- tst_QNetworkAccessManager
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QPluginLoader
- tst_QSql
- tst_QSqlDatabase
- tst_QSqlDriver
- tst_QSqlQuery
- tst_QSqlRelationalTableModel
- tst_QSqlThread
- tst_QTcpServer
- tst_QUdpSocket
- ...
| FALSE | never evaluated |
TRUE | evaluated 73 times by 30 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QCoreApplication
- tst_QFactoryLoader
- tst_QFtp
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QImage
- tst_QNetworkAccessManager
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QPluginLoader
- tst_QSql
- tst_QSqlDatabase
- tst_QSqlDriver
- tst_QSqlQuery
- tst_QSqlRelationalTableModel
- tst_QSqlThread
- tst_QTcpServer
- tst_QUdpSocket
- ...
| FALSE | evaluated 1 time by 1 test |
| 0-74 |
562 | app_libpaths->append(app_location);executed 73 times by 30 tests: app_libpaths->append(app_location); Executed by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QCoreApplication
- tst_QFactoryLoader
- tst_QFtp
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QImage
- tst_QNetworkAccessManager
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QPluginLoader
- tst_QSql
- tst_QSqlDatabase
- tst_QSqlDriver
- tst_QSqlQuery
- tst_QSqlRelationalTableModel
- tst_QSqlThread
- tst_QTcpServer
- tst_QUdpSocket
- ...
| 73 |
563 | #endif | - |
564 | }executed 74 times by 30 tests: end of block Executed by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QCoreApplication
- tst_QFactoryLoader
- tst_QFtp
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QImage
- tst_QNetworkAccessManager
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QPluginLoader
- tst_QSql
- tst_QSqlDatabase
- tst_QSqlDriver
- tst_QSqlQuery
- tst_QSqlRelationalTableModel
- tst_QSqlThread
- tst_QTcpServer
- tst_QUdpSocket
- ...
| 74 |
565 | | - |
566 | QString qAppName() | - |
567 | { | - |
568 | if (!QCoreApplicationPrivate::checkInstance("qAppName"))TRUE | never evaluated | FALSE | evaluated 7 times by 4 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
- tst_QLockFile
|
| 0-7 |
569 | return QString(); never executed: return QString(); | 0 |
570 | return QCoreApplication::instance()->d_func()->appName();executed 7 times by 4 tests: return QCoreApplication::instance()->d_func()->appName(); Executed by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
- tst_QLockFile
| 7 |
571 | } | - |
572 | | - |
573 | void QCoreApplicationPrivate::initLocale() | - |
574 | { | - |
575 | if (qt_locale_initialized)TRUE | evaluated 230 times by 8 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
| FALSE | evaluated 848 times by 23 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
|
| 230-848 |
576 | return;executed 230 times by 8 tests: return; Executed by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
| 230 |
577 | qt_locale_initialized = true; | - |
578 | #if defined(Q_OS_UNIX) && !defined(QT_BOOTSTRAPPED) | - |
579 | setlocale(LC_ALL, ""); | - |
580 | #endif | - |
581 | }executed 848 times by 23 tests: end of block Executed by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
| 848 |
582 | | - |
583 | | - |
584 | | - |
585 | | - |
586 | | - |
587 | | - |
588 | | - |
589 | | - |
590 | | - |
591 | | - |
592 | | - |
593 | | - |
594 | | - |
595 | | - |
596 | | - |
597 | | - |
598 | | - |
599 | | - |
600 | | - |
601 | | - |
602 | | - |
603 | | - |
604 | | - |
605 | | - |
606 | | - |
607 | | - |
608 | | - |
609 | | - |
610 | | - |
611 | | - |
612 | | - |
613 | | - |
614 | | - |
615 | | - |
616 | | - |
617 | | - |
618 | | - |
619 | | - |
620 | | - |
621 | | - |
622 | | - |
623 | | - |
624 | | - |
625 | | - |
626 | | - |
627 | | - |
628 | | - |
629 | | - |
630 | | - |
631 | | - |
632 | | - |
633 | | - |
634 | | - |
635 | | - |
636 | | - |
637 | | - |
638 | | - |
639 | | - |
640 | | - |
641 | | - |
642 | | - |
643 | | - |
644 | | - |
645 | | - |
646 | | - |
647 | | - |
648 | | - |
649 | | - |
650 | | - |
651 | | - |
652 | | - |
653 | | - |
654 | | - |
655 | | - |
656 | | - |
657 | | - |
658 | | - |
659 | | - |
660 | | - |
661 | | - |
662 | | - |
663 | | - |
664 | | - |
665 | | - |
666 | | - |
667 | | - |
668 | | - |
669 | | - |
670 | | - |
671 | | - |
672 | QCoreApplication::QCoreApplication(QCoreApplicationPrivate &p) | - |
673 | #ifdef QT_NO_QOBJECT | - |
674 | : d_ptr(&p) | - |
675 | #else | - |
676 | : QObject(p, 0) | - |
677 | #endif | - |
678 | { | - |
679 | d_func()->q_ptr = this; | - |
680 | | - |
681 | | - |
682 | }executed 136 times by 5 tests: end of block Executed by:- tst_QApplication
- tst_QGuiApplication
- tst_qapplication - unknown status
- tst_qprocess - unknown status
- tst_selftests - unknown status
| 136 |
683 | | - |
684 | #ifndef QT_NO_QOBJECT | - |
685 | | - |
686 | | - |
687 | | - |
688 | | - |
689 | | - |
690 | | - |
691 | | - |
692 | | - |
693 | | - |
694 | | - |
695 | | - |
696 | void QCoreApplication::flush() | - |
697 | { | - |
698 | if (self && self->d_func()->eventDispatcher)TRUE | evaluated 295 times by 23 testsEvaluated by:- tst_QAbstractButton
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QCommandLinkButton
- tst_QDialogButtonBox
- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QLineEdit
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMessageBox
- tst_QPushButton
- tst_QRadioButton
- tst_QStateMachine
- tst_QToolBar
- tst_QToolButton
- tst_QWidget
- tst_QWizard
- tst_qmouseevent_modal
| FALSE | never evaluated |
TRUE | evaluated 295 times by 23 testsEvaluated by:- tst_QAbstractButton
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QCommandLinkButton
- tst_QDialogButtonBox
- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QLineEdit
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMessageBox
- tst_QPushButton
- tst_QRadioButton
- tst_QStateMachine
- tst_QToolBar
- tst_QToolButton
- tst_QWidget
- tst_QWizard
- tst_qmouseevent_modal
| FALSE | never evaluated |
| 0-295 |
699 | self->d_func()->eventDispatcher->flush();executed 295 times by 23 tests: self->d_func()->eventDispatcher->flush(); Executed by:- tst_QAbstractButton
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QCommandLinkButton
- tst_QDialogButtonBox
- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QLineEdit
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMessageBox
- tst_QPushButton
- tst_QRadioButton
- tst_QStateMachine
- tst_QToolBar
- tst_QToolButton
- tst_QWidget
- tst_QWizard
- tst_qmouseevent_modal
| 295 |
700 | }executed 295 times by 23 tests: end of block Executed by:- tst_QAbstractButton
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QCommandLinkButton
- tst_QDialogButtonBox
- tst_QFileDialog2
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QLineEdit
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMessageBox
- tst_QPushButton
- tst_QRadioButton
- tst_QStateMachine
- tst_QToolBar
- tst_QToolButton
- tst_QWidget
- tst_QWizard
- tst_qmouseevent_modal
| 295 |
701 | #endif | - |
702 | | - |
703 | | - |
704 | | - |
705 | | - |
706 | | - |
707 | | - |
708 | | - |
709 | | - |
710 | | - |
711 | | - |
712 | | - |
713 | | - |
714 | | - |
715 | | - |
716 | | - |
717 | QCoreApplication::QCoreApplication(int &argc, char **argv | - |
718 | #ifndef Q_QDOC | - |
719 | , int _internal | - |
720 | #endif | - |
721 | ) | - |
722 | #ifdef QT_NO_QOBJECT | - |
723 | : d_ptr(new QCoreApplicationPrivate(argc, argv, _internal)) | - |
724 | #else | - |
725 | : QObject(*new QCoreApplicationPrivate(argc, argv, _internal)) | - |
726 | #endif | - |
727 | { | - |
728 | d_func()->q_ptr = this; | - |
729 | d_func()->init(); | - |
730 | #ifndef QT_NO_QOBJECT | - |
731 | QCoreApplicationPrivate::eventDispatcher->startingUp(); | - |
732 | #endif | - |
733 | }executed 942 times by 22 tests: end of block Executed by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
| 942 |
734 | | - |
735 | | - |
736 | void QCoreApplicationPrivate::init() | - |
737 | { | - |
738 | Q_Q(QCoreApplication); | - |
739 | | - |
740 | initLocale(); | - |
741 | | - |
742 | Q_ASSERT_X(!QCoreApplication::self, "QCoreApplication", "there should be only one application object"); | - |
743 | QCoreApplication::self = q; | - |
744 | | - |
745 | | - |
746 | if (!coreappdata()->applicationNameSet)TRUE | evaluated 1076 times by 23 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
| FALSE | evaluated 2 times by 2 testsEvaluated by:- tst_QCoreApplication
- tst_QGuiApplication
|
| 2-1076 |
747 | coreappdata()->application = appName();executed 1076 times by 23 tests: coreappdata()->application = appName(); Executed by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
| 1076 |
748 | | - |
749 | QLoggingRegistry::instance()->init(); | - |
750 | | - |
751 | #ifndef QT_NO_LIBRARY | - |
752 | | - |
753 | | - |
754 | | - |
755 | QStringList *appPaths = coreappdata()->app_libpaths.take(); | - |
756 | QStringList *manualPaths = coreappdata()->manual_libpaths.take(); | - |
757 | if (appPaths) {TRUE | evaluated 4 times by 3 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
| FALSE | evaluated 1073 times by 23 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
|
| 4-1073 |
758 | if (manualPaths) {TRUE | evaluated 4 times by 3 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
| FALSE | never evaluated |
| 0-4 |
759 | | - |
760 | | - |
761 | | - |
762 | | - |
763 | QStringList newPaths(q->libraryPaths()); | - |
764 | for (int i = manualPaths->length(), j = appPaths->length(); i > 0 || j > 0; qt_noop()) {TRUE | evaluated 8 times by 3 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
| FALSE | evaluated 4 times by 3 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
|
TRUE | never evaluated | FALSE | evaluated 4 times by 3 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
|
| 0-8 |
765 | if (--j < 0) {TRUE | evaluated 4 times by 3 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
| FALSE | evaluated 4 times by 3 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
|
| 4 |
766 | newPaths.prepend((*manualPaths)[--i]); | - |
767 | } else if (--i < 0) {executed 4 times by 3 tests: end of block Executed by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
TRUE | never evaluated | FALSE | evaluated 4 times by 3 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
|
| 0-4 |
768 | newPaths.removeAll((*appPaths)[j]); | - |
769 | } else if ((*manualPaths)[i] != (*appPaths)[j]) { never executed: end of block TRUE | evaluated 3 times by 3 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
| FALSE | evaluated 1 time by 1 test |
| 0-3 |
770 | newPaths.removeAll((*appPaths)[j]); | - |
771 | ++i; | - |
772 | }executed 3 times by 3 tests: end of block Executed by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
| 3 |
773 | }executed 8 times by 3 tests: end of block Executed by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
| 8 |
774 | delete manualPaths; | - |
775 | coreappdata()->manual_libpaths.reset(new QStringList(newPaths)); | - |
776 | }executed 4 times by 3 tests: end of block Executed by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
| 4 |
777 | delete appPaths; | - |
778 | }executed 4 times by 3 tests: end of block Executed by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
| 4 |
779 | #endif | - |
780 | | - |
781 | #ifndef QT_NO_QOBJECT | - |
782 | | - |
783 | if (!eventDispatcher)TRUE | evaluated 1077 times by 23 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
| FALSE | never evaluated |
| 0-1077 |
784 | eventDispatcher = threadData->eventDispatcher.load();executed 1077 times by 23 tests: eventDispatcher = threadData->eventDispatcher.load(); Executed by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
| 1077 |
785 | | - |
786 | if (!eventDispatcher)TRUE | evaluated 1075 times by 23 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
| FALSE | evaluated 2 times by 2 testsEvaluated by:- tst_QCoreApplication
- tst_QGuiApplication
|
| 2-1075 |
787 | createEventDispatcher();executed 1075 times by 23 tests: createEventDispatcher(); Executed by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
| 1075 |
788 | Q_ASSERT(eventDispatcher); | - |
789 | | - |
790 | if (!eventDispatcher->parent()) {TRUE | evaluated 137 times by 6 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
- tst_qapplication - unknown status
- tst_qprocess - unknown status
- tst_selftests - unknown status
| FALSE | evaluated 940 times by 22 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
|
| 137-940 |
791 | eventDispatcher->moveToThread(threadData->thread); | - |
792 | eventDispatcher->setParent(q); | - |
793 | }executed 137 times by 6 tests: end of block Executed by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
- tst_qapplication - unknown status
- tst_qprocess - unknown status
- tst_selftests - unknown status
| 137 |
794 | | - |
795 | threadData->eventDispatcher = eventDispatcher; | - |
796 | eventDispatcherReady(); | - |
797 | #endif | - |
798 | | - |
799 | #ifdef QT_EVAL | - |
800 | extern void qt_core_eval_init(QCoreApplicationPrivate::Type); | - |
801 | qt_core_eval_init(application_type); | - |
802 | #endif | - |
803 | | - |
804 | processCommandLineArguments(); | - |
805 | | - |
806 | qt_call_pre_routines(); | - |
807 | qt_startup_hook(); | - |
808 | #ifndef QT_BOOTSTRAPPED | - |
809 | if (Q_UNLIKELY(qtHookData[QHooks::Startup]))TRUE | never evaluated | FALSE | evaluated 1077 times by 23 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
|
| 0-1077 |
810 | reinterpret_cast<QHooks::StartupCallback>(qtHookData[QHooks::Startup])(); never executed: reinterpret_cast<QHooks::StartupCallback>(qtHookData[QHooks::Startup])(); | 0 |
811 | #endif | - |
812 | | - |
813 | #ifndef QT_NO_QOBJECT | - |
814 | is_app_running = true; | - |
815 | #endif | - |
816 | }executed 1077 times by 23 tests: end of block Executed by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
| 1077 |
817 | | - |
818 | | - |
819 | | - |
820 | | - |
821 | QCoreApplication::~QCoreApplication() | - |
822 | { | - |
823 | qt_call_post_routines(); | - |
824 | | - |
825 | self = 0; | - |
826 | #ifndef QT_NO_QOBJECT | - |
827 | QCoreApplicationPrivate::is_app_closing = true; | - |
828 | QCoreApplicationPrivate::is_app_running = false; | - |
829 | #endif | - |
830 | | - |
831 | #if !defined(QT_NO_THREAD) | - |
832 | | - |
833 | QThreadPool *globalThreadPool = 0; | - |
834 | QT_TRY { | - |
835 | globalThreadPool = QThreadPool::globalInstance(); | - |
836 | } QT_CATCH (...) {executed 1397 times by 420 tests: end of block Executed by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- ...
| 1397 |
837 | | - |
838 | } never executed: end of block | 0 |
839 | if (globalThreadPool)TRUE | evaluated 1397 times by 420 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- ...
| FALSE | never evaluated |
| 0-1397 |
840 | globalThreadPool->waitForDone();executed 1397 times by 420 tests: globalThreadPool->waitForDone(); Executed by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- ...
| 1397 |
841 | #endif | - |
842 | | - |
843 | #ifndef QT_NO_QOBJECT | - |
844 | d_func()->threadData->eventDispatcher = 0; | - |
845 | if (QCoreApplicationPrivate::eventDispatcher)TRUE | evaluated 1050 times by 205 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_compiler - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractsocket - unknown status
- tst_qanimationgroup - unknown status
- tst_qasn1element - unknown status
- tst_qatomicint - unknown status
- tst_qauthenticator - unknown status
- tst_qbuffer - unknown status
- tst_qbytearray - unknown status
- ...
| FALSE | evaluated 347 times by 219 testsEvaluated by:- tst_QApplication
- tst_QGuiApplication
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractproxymodel - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qapplication - unknown status
- tst_qbackingstore - unknown status
- tst_qboxlayout - unknown status
- tst_qbrush - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- tst_qcheckbox - unknown status
- tst_qclipboard - unknown status
- ...
|
| 347-1050 |
846 | QCoreApplicationPrivate::eventDispatcher->closingDown();executed 1050 times by 205 tests: QCoreApplicationPrivate::eventDispatcher->closingDown(); Executed by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_compiler - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractsocket - unknown status
- tst_qanimationgroup - unknown status
- tst_qasn1element - unknown status
- tst_qatomicint - unknown status
- tst_qauthenticator - unknown status
- tst_qbuffer - unknown status
- tst_qbytearray - unknown status
- ...
| 1050 |
847 | QCoreApplicationPrivate::eventDispatcher = 0; | - |
848 | #endif | - |
849 | | - |
850 | #ifndef QT_NO_LIBRARY | - |
851 | coreappdata()->app_libpaths.reset(); | - |
852 | coreappdata()->manual_libpaths.reset(); | - |
853 | #endif | - |
854 | }executed 1397 times by 420 tests: end of block Executed by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_q_func_info - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemmodel - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- ...
| 1397 |
855 | | - |
856 | | - |
857 | | - |
858 | | - |
859 | | - |
860 | | - |
861 | | - |
862 | | - |
863 | | - |
864 | | - |
865 | | - |
866 | | - |
867 | | - |
868 | | - |
869 | | - |
870 | | - |
871 | | - |
872 | | - |
873 | | - |
874 | | - |
875 | | - |
876 | void QCoreApplication::setSetuidAllowed(bool allow) | - |
877 | { | - |
878 | QCoreApplicationPrivate::setuidAllowed = allow; | - |
879 | } never executed: end of block | 0 |
880 | | - |
881 | | - |
882 | | - |
883 | | - |
884 | | - |
885 | | - |
886 | | - |
887 | | - |
888 | | - |
889 | bool QCoreApplication::isSetuidAllowed() | - |
890 | { | - |
891 | return QCoreApplicationPrivate::setuidAllowed; never executed: return QCoreApplicationPrivate::setuidAllowed; | 0 |
892 | } | - |
893 | | - |
894 | | - |
895 | | - |
896 | | - |
897 | | - |
898 | | - |
899 | | - |
900 | | - |
901 | void QCoreApplication::setAttribute(Qt::ApplicationAttribute attribute, bool on) | - |
902 | { | - |
903 | if (on)TRUE | evaluated 801 times by 12 testsEvaluated by:- tst_QApplication
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QGuiApplication
- tst_QStyleSheetStyle
- tst_QTextDocument
- tst_QWidget
- tst_QWidget_window
- tst_QWindow
- tst_qapplication - unknown status
- tst_qprocess - unknown status
- tst_selftests - unknown status
| FALSE | evaluated 78 times by 6 testsEvaluated by:- tst_QApplication
- tst_QGuiApplication
- tst_QStyleSheetStyle
- tst_QWidget
- tst_QWidget_window
- tst_QWindow
|
| 78-801 |
904 | QCoreApplicationPrivate::attribs |= 1 << attribute;executed 801 times by 12 tests: QCoreApplicationPrivate::attribs |= 1 << attribute; Executed by:- tst_QApplication
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QGuiApplication
- tst_QStyleSheetStyle
- tst_QTextDocument
- tst_QWidget
- tst_QWidget_window
- tst_QWindow
- tst_qapplication - unknown status
- tst_qprocess - unknown status
- tst_selftests - unknown status
| 801 |
905 | else | - |
906 | QCoreApplicationPrivate::attribs &= ~(1 << attribute);executed 78 times by 6 tests: QCoreApplicationPrivate::attribs &= ~(1 << attribute); Executed by:- tst_QApplication
- tst_QGuiApplication
- tst_QStyleSheetStyle
- tst_QWidget
- tst_QWidget_window
- tst_QWindow
| 78 |
907 | } | - |
908 | | - |
909 | | - |
910 | | - |
911 | | - |
912 | | - |
913 | | - |
914 | | - |
915 | bool QCoreApplication::testAttribute(Qt::ApplicationAttribute attribute) | - |
916 | { | - |
917 | return QCoreApplicationPrivate::testAttribute(attribute);executed 1431582 times by 174 tests: return QCoreApplicationPrivate::testAttribute(attribute); Executed by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractButton
- tst_QAbstractItemView
- 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
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- ...
| 1431582 |
918 | } | - |
919 | | - |
920 | | - |
921 | #ifndef QT_NO_QOBJECT | - |
922 | | - |
923 | | - |
924 | | - |
925 | | - |
926 | | - |
927 | | - |
928 | | - |
929 | | - |
930 | | - |
931 | | - |
932 | | - |
933 | | - |
934 | bool QCoreApplication::isQuitLockEnabled() | - |
935 | { | - |
936 | return quitLockRefEnabled;executed 195 times by 25 tests: return quitLockRefEnabled; Executed by:- tst_QAccessibility
- tst_QApplication
- tst_QBackingStore
- tst_QDialog
- tst_QGuiApplication
- tst_QKeyEvent
- tst_QLineEdit
- tst_QMdiArea
- tst_QMouseEvent
- tst_QOpenGLWindow
- tst_QRasterWindow
- tst_QTouchEvent
- tst_QWidget
- tst_QWidget_window
- tst_QWindow
- tst_QWindowContainer
- tst_qdoublespinbox - unknown status
- tst_qgraphicsgridlayout - unknown status
- tst_qgraphicsscene - unknown status
- tst_qinputmethod
- tst_qpainter - unknown status
- tst_qpushbutton - unknown status
- tst_qsizegrip - unknown status
- tst_qsplitter - unknown status
- tst_qtreewidget - unknown status
| 195 |
937 | } | - |
938 | | - |
939 | static bool doNotify(QObject *, QEvent *); | - |
940 | | - |
941 | void QCoreApplication::setQuitLockEnabled(bool enabled) | - |
942 | { | - |
943 | quitLockRefEnabled = enabled; | - |
944 | }executed 5 times by 2 tests: end of block Executed by:- tst_QGuiApplication
- tst_QWidget_window
| 5 |
945 | | - |
946 | | - |
947 | | - |
948 | | - |
949 | | - |
950 | | - |
951 | | - |
952 | | - |
953 | bool QCoreApplication::notifyInternal(QObject *receiver, QEvent *event) | - |
954 | { | - |
955 | return notifyInternal2(receiver, event); never executed: return notifyInternal2(receiver, event); | 0 |
956 | } | - |
957 | | - |
958 | | - |
959 | | - |
960 | | - |
961 | | - |
962 | | - |
963 | | - |
964 | | - |
965 | bool QCoreApplication::notifyInternal2(QObject *receiver, QEvent *event) | - |
966 | { | - |
967 | bool selfRequired = QCoreApplicationPrivate::threadRequiresCoreApplication(); | - |
968 | if (!self && selfRequired)TRUE | evaluated 1619 times by 169 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QDBusConnection_NoApplication
- tst_QGuiApplication
- tst_gestures - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractspinbox - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qapplication - unknown status
- tst_qbackingstore - unknown status
- tst_qboxlayout - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- tst_qcheckbox - unknown status
- tst_qcolordialog - unknown status
- tst_qcolumnview - unknown status
- ...
| FALSE | evaluated 1767023 times by 518 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- 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_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
|
TRUE | evaluated 48 times by 8 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QDBusConnection_NoApplication
- tst_QGuiApplication
- tst_qapplication - unknown status
- tst_qcoreapplication - unknown status
- tst_qfilesystemwatcher - unknown status
- tst_qguiapplication - unknown status
| FALSE | evaluated 1571 times by 167 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QDBusConnection_NoApplication
- tst_QGuiApplication
- tst_gestures - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractspinbox - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qapplication - unknown status
- tst_qbackingstore - unknown status
- tst_qboxlayout - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- tst_qcheckbox - unknown status
- tst_qcolordialog - unknown status
- tst_qcolumnview - unknown status
- ...
|
| 48-1767023 |
969 | return false;executed 48 times by 8 tests: return false; Executed by:- tst_QApplication
- tst_QCoreApplication
- tst_QDBusConnection_NoApplication
- tst_QGuiApplication
- tst_qapplication - unknown status
- tst_qcoreapplication - unknown status
- tst_qfilesystemwatcher - unknown status
- tst_qguiapplication - unknown status
| 48 |
970 | | - |
971 | | - |
972 | | - |
973 | bool result = false; | - |
974 | void *cbdata[] = { receiver, event, &result }; | - |
975 | if (QInternal::activateCallbacks(QInternal::EventNotifyCallback, cbdata)) {TRUE | never evaluated | FALSE | evaluated 1768594 times by 527 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- 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_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
|
| 0-1768594 |
976 | return result; never executed: return result; | 0 |
977 | } | - |
978 | | - |
979 | | - |
980 | | - |
981 | | - |
982 | | - |
983 | QObjectPrivate *d = receiver->d_func(); | - |
984 | QThreadData *threadData = d->threadData; | - |
985 | QScopedScopeLevelCounter scopeLevelCounter(threadData); | - |
986 | if (!selfRequired)TRUE | evaluated 22367 times by 324 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
| FALSE | evaluated 1746227 times by 495 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- 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_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
|
| 22367-1746227 |
987 | return doNotify(receiver, event);executed 22367 times by 324 tests: return doNotify(receiver, event); 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
- ...
| 22367 |
988 | return self->notify(receiver, event);executed 1746227 times by 495 tests: return self->notify(receiver, event); Executed by:- tst_Gestures
- tst_Lancelot
- 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_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| 1746227 |
989 | } | - |
990 | | - |
991 | | - |
992 | | - |
993 | | - |
994 | | - |
995 | | - |
996 | | - |
997 | | - |
998 | | - |
999 | | - |
1000 | | - |
1001 | | - |
1002 | | - |
1003 | | - |
1004 | | - |
1005 | | - |
1006 | | - |
1007 | | - |
1008 | | - |
1009 | | - |
1010 | | - |
1011 | | - |
1012 | | - |
1013 | | - |
1014 | | - |
1015 | | - |
1016 | | - |
1017 | | - |
1018 | | - |
1019 | | - |
1020 | | - |
1021 | | - |
1022 | | - |
1023 | | - |
1024 | | - |
1025 | | - |
1026 | | - |
1027 | | - |
1028 | | - |
1029 | | - |
1030 | | - |
1031 | | - |
1032 | | - |
1033 | | - |
1034 | | - |
1035 | | - |
1036 | | - |
1037 | | - |
1038 | | - |
1039 | | - |
1040 | | - |
1041 | | - |
1042 | | - |
1043 | | - |
1044 | bool QCoreApplication::notify(QObject *receiver, QEvent *event) | - |
1045 | { | - |
1046 | | - |
1047 | if (QCoreApplicationPrivate::is_app_closing)TRUE | evaluated 242 times by 158 testsEvaluated by:- tst_QApplication
- tst_gestures - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractspinbox - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qapplication - unknown status
- tst_qboxlayout - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- tst_qcheckbox - unknown status
- tst_qcolordialog - unknown status
- tst_qcolumnview - unknown status
- tst_qcombobox - unknown status
- tst_qcommandlinkbutton - unknown status
- tst_qcompleter - unknown status
- tst_qdatawidgetmapper - unknown status
- tst_qdatetimeedit - unknown status
- ...
| FALSE | evaluated 639831 times by 197 testsEvaluated by:- tst_Lancelot
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractItemModel
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractTextDocumentLayout
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBuffer
- tst_QClipboard
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusMarshall
- ...
|
| 242-639831 |
1048 | return true;executed 242 times by 158 tests: return true; Executed by:- tst_QApplication
- tst_gestures - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractspinbox - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qapplication - unknown status
- tst_qboxlayout - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- tst_qcheckbox - unknown status
- tst_qcolordialog - unknown status
- tst_qcolumnview - unknown status
- tst_qcombobox - unknown status
- tst_qcommandlinkbutton - unknown status
- tst_qcompleter - unknown status
- tst_qdatawidgetmapper - unknown status
- tst_qdatetimeedit - unknown status
- ...
| 242 |
1049 | return doNotify(receiver, event);executed 639831 times by 197 tests: return doNotify(receiver, event); Executed by:- tst_Lancelot
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractItemModel
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractTextDocumentLayout
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBuffer
- tst_QClipboard
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusMarshall
- ...
| 639831 |
1050 | } | - |
1051 | | - |
1052 | static bool doNotify(QObject *receiver, QEvent *event) | - |
1053 | { | - |
1054 | if (receiver == 0) { TRUE | never evaluated | FALSE | evaluated 662198 times by 468 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 0-662198 |
1055 | qWarning("QCoreApplication::notify: Unexpected null receiver"); | - |
1056 | return true; never executed: return true; | 0 |
1057 | } | - |
1058 | | - |
1059 | #ifndef QT_NO_DEBUG | - |
1060 | QCoreApplicationPrivate::checkReceiverThread(receiver); | - |
1061 | #endif | - |
1062 | | - |
1063 | return receiver->isWidgetType() ? false : QCoreApplicationPrivate::notify_helper(receiver, event);executed 662198 times by 468 tests: return receiver->isWidgetType() ? false : QCoreApplicationPrivate::notify_helper(receiver, event); 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
- ...
| 662198 |
1064 | } | - |
1065 | | - |
1066 | bool QCoreApplicationPrivate::sendThroughApplicationEventFilters(QObject *receiver, QEvent *event) | - |
1067 | { | - |
1068 | | - |
1069 | Q_ASSERT(receiver->d_func()->threadData->thread == mainThread()); | - |
1070 | | - |
1071 | if (extraData) {TRUE | evaluated 186941 times by 20 testsEvaluated by:- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QCoreApplication
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGuiApplication
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMenuBar
- tst_QSizeGrip
- tst_QSplitter
- tst_QStateMachine
- tst_QStyleSheetStyle
- tst_QToolTip
- tst_QTranslator
- tst_QWidget
- tst_QWindow
- tst_qwindow - unknown status
| FALSE | evaluated 1368881 times by 338 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- 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_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
|
| 186941-1368881 |
1072 | | - |
1073 | for (int i = 0; i < extraData->eventFilters.size(); ++i) {TRUE | evaluated 218940 times by 20 testsEvaluated by:- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QCoreApplication
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGuiApplication
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMenuBar
- tst_QSizeGrip
- tst_QSplitter
- tst_QStateMachine
- tst_QStyleSheetStyle
- tst_QToolTip
- tst_QTranslator
- tst_QWidget
- tst_QWindow
- tst_qwindow - unknown status
| FALSE | evaluated 186926 times by 20 testsEvaluated by:- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QCoreApplication
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGuiApplication
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMenuBar
- tst_QSizeGrip
- tst_QSplitter
- tst_QStateMachine
- tst_QStyleSheetStyle
- tst_QToolTip
- tst_QTranslator
- tst_QWidget
- tst_QWindow
- tst_qwindow - unknown status
|
| 186926-218940 |
1074 | QObject *obj = extraData->eventFilters.at(i); | - |
1075 | if (!obj)TRUE | evaluated 75235 times by 15 testsEvaluated by:- tst_QAccessibility
- tst_QCalendarWidget
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMenuBar
- tst_QSizeGrip
- tst_QStateMachine
- tst_QStyleSheetStyle
- tst_QToolTip
- tst_QWidget
- tst_QWindow
- tst_qwindow - unknown status
| FALSE | evaluated 143705 times by 19 testsEvaluated by:- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QCoreApplication
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGuiApplication
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMenuBar
- tst_QSizeGrip
- tst_QSplitter
- tst_QStateMachine
- tst_QStyleSheetStyle
- tst_QToolTip
- tst_QTranslator
- tst_QWidget
- tst_QWindow
|
| 75235-143705 |
1076 | continue;executed 75235 times by 15 tests: continue; Executed by:- tst_QAccessibility
- tst_QCalendarWidget
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMenuBar
- tst_QSizeGrip
- tst_QStateMachine
- tst_QStyleSheetStyle
- tst_QToolTip
- tst_QWidget
- tst_QWindow
- tst_qwindow - unknown status
| 75235 |
1077 | if (obj->d_func()->threadData != threadData) {TRUE | never evaluated | FALSE | evaluated 143705 times by 19 testsEvaluated by:- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QCoreApplication
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGuiApplication
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMenuBar
- tst_QSizeGrip
- tst_QSplitter
- tst_QStateMachine
- tst_QStyleSheetStyle
- tst_QToolTip
- tst_QTranslator
- tst_QWidget
- tst_QWindow
|
| 0-143705 |
1078 | qWarning("QCoreApplication: Application event filter cannot be in a different thread."); | - |
1079 | continue; never executed: continue; | 0 |
1080 | } | - |
1081 | if (obj->eventFilter(receiver, event))TRUE | evaluated 15 times by 2 testsEvaluated by:- tst_QCalendarWidget
- tst_QMdiArea
| FALSE | evaluated 143690 times by 19 testsEvaluated by:- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QCoreApplication
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGuiApplication
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMenuBar
- tst_QSizeGrip
- tst_QSplitter
- tst_QStateMachine
- tst_QStyleSheetStyle
- tst_QToolTip
- tst_QTranslator
- tst_QWidget
- tst_QWindow
|
| 15-143690 |
1082 | return true;executed 15 times by 2 tests: return true; Executed by:- tst_QCalendarWidget
- tst_QMdiArea
| 15 |
1083 | }executed 143690 times by 19 tests: end of block Executed by:- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QCoreApplication
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGuiApplication
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMenuBar
- tst_QSizeGrip
- tst_QSplitter
- tst_QStateMachine
- tst_QStyleSheetStyle
- tst_QToolTip
- tst_QTranslator
- tst_QWidget
- tst_QWindow
| 143690 |
1084 | }executed 186926 times by 20 tests: end of block Executed by:- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QCoreApplication
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGuiApplication
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QMenuBar
- tst_QSizeGrip
- tst_QSplitter
- tst_QStateMachine
- tst_QStyleSheetStyle
- tst_QToolTip
- tst_QTranslator
- tst_QWidget
- tst_QWindow
- tst_qwindow - unknown status
| 186926 |
1085 | return false;executed 1555807 times by 340 tests: return false; Executed by:- tst_Gestures
- tst_Lancelot
- 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_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| 1555807 |
1086 | } | - |
1087 | | - |
1088 | bool QCoreApplicationPrivate::sendThroughObjectEventFilters(QObject *receiver, QEvent *event) | - |
1089 | { | - |
1090 | if (receiver != QCoreApplication::instance() && receiver->d_func()->extraData) {TRUE | evaluated 1789934 times by 428 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- 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_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| FALSE | evaluated 2733 times by 254 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
|
TRUE | evaluated 631823 times by 358 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| FALSE | evaluated 1158111 times by 423 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- 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_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
|
| 2733-1789934 |
1091 | for (int i = 0; i < receiver->d_func()->extraData->eventFilters.size(); ++i) {TRUE | evaluated 215688 times by 91 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QCoreApplication
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDirModel
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusFrame
- tst_QFontComboBox
- tst_QFontDialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- ...
| FALSE | evaluated 613580 times by 358 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
|
| 215688-613580 |
1092 | QObject *obj = receiver->d_func()->extraData->eventFilters.at(i); | - |
1093 | if (!obj)TRUE | evaluated 16245 times by 84 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDirModel
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusFrame
- tst_QFontComboBox
- tst_QFontDialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- ...
| FALSE | evaluated 199443 times by 90 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QCoreApplication
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDirModel
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFontDialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- ...
|
| 16245-199443 |
1094 | continue;executed 16245 times by 84 tests: continue; Executed by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDirModel
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusFrame
- tst_QFontComboBox
- tst_QFontDialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- ...
| 16245 |
1095 | if (obj->d_func()->threadData != receiver->d_func()->threadData) {TRUE | evaluated 1 time by 1 test | FALSE | evaluated 199442 times by 90 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QCoreApplication
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDirModel
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFontDialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- ...
|
| 1-199442 |
1096 | qWarning("QCoreApplication: Object event filter cannot be in a different thread."); | - |
1097 | continue;executed 1 time by 1 test: continue; | 1 |
1098 | } | - |
1099 | if (obj->eventFilter(receiver, event))TRUE | evaluated 18243 times by 66 testsEvaluated by:- tst_Gestures
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- tst_QGraphicsLinearLayout
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- ...
| FALSE | evaluated 181199 times by 90 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QCoreApplication
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDirModel
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFontDialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- ...
|
| 18243-181199 |
1100 | return true;executed 18243 times by 66 tests: return true; Executed by:- tst_Gestures
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontDialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- tst_QGraphicsLinearLayout
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- ...
| 18243 |
1101 | }executed 181199 times by 90 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QCoreApplication
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDirModel
- tst_QDockWidget
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFontDialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- ...
| 181199 |
1102 | }executed 613580 times by 358 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_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
- ...
| 613580 |
1103 | return false;executed 1774424 times by 491 tests: return false; Executed by:- tst_Gestures
- tst_Lancelot
- 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_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- ...
| 1774424 |
1104 | } | - |
1105 | | - |
1106 | | - |
1107 | | - |
1108 | | - |
1109 | | - |
1110 | | - |
1111 | bool QCoreApplicationPrivate::notify_helper(QObject *receiver, QEvent * event) | - |
1112 | { | - |
1113 | | - |
1114 | if (QCoreApplication::selfTRUE | evaluated 660627 times by 341 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 1571 times by 167 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QDBusConnection_NoApplication
- tst_QGuiApplication
- tst_gestures - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractspinbox - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qapplication - unknown status
- tst_qbackingstore - unknown status
- tst_qboxlayout - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- tst_qcheckbox - unknown status
- tst_qcolordialog - unknown status
- tst_qcolumnview - unknown status
- ...
|
| 1571-660627 |
1115 | && receiver->d_func()->threadData->thread == mainThread()TRUE | evaluated 427640 times by 195 testsEvaluated by:- tst_Lancelot
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractItemModel
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractTextDocumentLayout
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBuffer
- tst_QClipboard
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusMarshall
- ...
| FALSE | evaluated 232987 times by 204 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
- ...
|
| 232987-427640 |
1116 | && QCoreApplication::self->d_func()->sendThroughApplicationEventFilters(receiver, event))TRUE | never evaluated | FALSE | evaluated 427640 times by 195 testsEvaluated by:- tst_Lancelot
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractItemModel
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractTextDocumentLayout
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBuffer
- tst_QClipboard
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusMarshall
- ...
|
| 0-427640 |
1117 | return true; never executed: return true; | 0 |
1118 | | - |
1119 | if (sendThroughObjectEventFilters(receiver, event))TRUE | never evaluated | FALSE | evaluated 662198 times by 468 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 0-662198 |
1120 | return true; never executed: return true; | 0 |
1121 | | - |
1122 | return receiver->event(event);executed 662198 times by 468 tests: return receiver->event(event); 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
- ...
| 662198 |
1123 | } | - |
1124 | | - |
1125 | | - |
1126 | | - |
1127 | | - |
1128 | | - |
1129 | | - |
1130 | | - |
1131 | | - |
1132 | bool QCoreApplication::startingUp() | - |
1133 | { | - |
1134 | return !QCoreApplicationPrivate::is_app_running;executed 279 times by 6 tests: return !QCoreApplicationPrivate::is_app_running; Executed by:- tst_QApplication
- tst_QGuiApplication
- tst_QScreen
- tst_qapplication - unknown status
- tst_qprocess - unknown status
- tst_selftests - unknown status
| 279 |
1135 | } | - |
1136 | | - |
1137 | | - |
1138 | | - |
1139 | | - |
1140 | | - |
1141 | | - |
1142 | | - |
1143 | | - |
1144 | bool QCoreApplication::closingDown() | - |
1145 | { | - |
1146 | return QCoreApplicationPrivate::is_app_closing;executed 77452 times by 278 tests: return QCoreApplicationPrivate::is_app_closing; 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_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDial
- tst_QDialog
- ...
| 77452 |
1147 | } | - |
1148 | | - |
1149 | | - |
1150 | | - |
1151 | | - |
1152 | | - |
1153 | | - |
1154 | | - |
1155 | | - |
1156 | | - |
1157 | | - |
1158 | | - |
1159 | | - |
1160 | | - |
1161 | | - |
1162 | | - |
1163 | | - |
1164 | | - |
1165 | | - |
1166 | | - |
1167 | | - |
1168 | | - |
1169 | | - |
1170 | | - |
1171 | | - |
1172 | void QCoreApplication::processEvents(QEventLoop::ProcessEventsFlags flags) | - |
1173 | { | - |
1174 | QThreadData *data = QThreadData::current(); | - |
1175 | if (!data->hasEventDispatcher())TRUE | evaluated 1 time by 1 test | FALSE | evaluated 1859061 times by 98 testsEvaluated by:- tst_Gestures
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBoxLayout
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QEventDispatcher
- tst_QEventLoop
- ...
|
| 1-1859061 |
1176 | return;executed 1 time by 1 test: return; | 1 |
1177 | data->eventDispatcher.load()->processEvents(flags); | - |
1178 | }executed 1859061 times by 98 tests: end of block Executed by:- tst_Gestures
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBoxLayout
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QEventDispatcher
- tst_QEventLoop
- ...
| 1859061 |
1179 | | - |
1180 | | - |
1181 | | - |
1182 | | - |
1183 | | - |
1184 | | - |
1185 | | - |
1186 | | - |
1187 | | - |
1188 | | - |
1189 | | - |
1190 | | - |
1191 | | - |
1192 | | - |
1193 | | - |
1194 | | - |
1195 | | - |
1196 | void QCoreApplication::processEvents(QEventLoop::ProcessEventsFlags flags, int maxtime) | - |
1197 | { | - |
1198 | | - |
1199 | | - |
1200 | | - |
1201 | QThreadData *data = QThreadData::current(); | - |
1202 | if (!data->hasEventDispatcher())TRUE | never evaluated | FALSE | evaluated 1255742 times by 149 testsEvaluated by:- tst_Gestures
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusThreading
- tst_QDataWidgetMapper
- ...
|
| 0-1255742 |
1203 | return; never executed: return; | 0 |
1204 | QElapsedTimer start; | - |
1205 | start.start(); | - |
1206 | while (data->eventDispatcher.load()->processEvents(flags & ~QEventLoop::WaitForMoreEvents)) {TRUE | evaluated 40298 times by 149 testsEvaluated by:- tst_Gestures
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusThreading
- tst_QDataWidgetMapper
- ...
| FALSE | evaluated 1255473 times by 148 testsEvaluated by:- tst_Gestures
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusThreading
- tst_QDataWidgetMapper
- ...
|
| 40298-1255473 |
1207 | if (start.elapsed() > maxtime)TRUE | evaluated 269 times by 44 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QBackingStore
- tst_QCalendarWidget
- tst_QCompleter
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QHttpNetworkConnection
- tst_QItemDelegate
- tst_QLineEdit
- tst_QListView
- tst_QListWidget
- tst_QMainWindow
- tst_QMdiArea
- ...
| FALSE | evaluated 40029 times by 148 testsEvaluated by:- tst_Gestures
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusThreading
- tst_QDataWidgetMapper
- ...
|
| 269-40029 |
1208 | break;executed 269 times by 44 tests: break; Executed by:- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QBackingStore
- tst_QCalendarWidget
- tst_QCompleter
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QHttpNetworkConnection
- tst_QItemDelegate
- tst_QLineEdit
- tst_QListView
- tst_QListWidget
- tst_QMainWindow
- tst_QMdiArea
- ...
| 269 |
1209 | }executed 40029 times by 148 tests: end of block Executed by:- tst_Gestures
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusThreading
- tst_QDataWidgetMapper
- ...
| 40029 |
1210 | }executed 1255742 times by 149 tests: end of block Executed by:- tst_Gestures
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusThreading
- tst_QDataWidgetMapper
- ...
| 1255742 |
1211 | | - |
1212 | | - |
1213 | | - |
1214 | | - |
1215 | | - |
1216 | | - |
1217 | | - |
1218 | | - |
1219 | | - |
1220 | | - |
1221 | | - |
1222 | | - |
1223 | | - |
1224 | | - |
1225 | | - |
1226 | | - |
1227 | | - |
1228 | | - |
1229 | | - |
1230 | | - |
1231 | | - |
1232 | | - |
1233 | | - |
1234 | | - |
1235 | | - |
1236 | | - |
1237 | | - |
1238 | | - |
1239 | | - |
1240 | | - |
1241 | | - |
1242 | int QCoreApplication::exec() | - |
1243 | { | - |
1244 | if (!QCoreApplicationPrivate::checkInstance("exec"))TRUE | never evaluated | FALSE | evaluated 85 times by 12 testsEvaluated by:- tst_QApplication
- tst_QColorDialog
- tst_QCoreApplication
- tst_QFontDialog
- tst_QGuiApplication
- tst_QStateMachine
- tst_QSystemTrayIcon
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
|
| 0-85 |
1245 | return -1; never executed: return -1; | 0 |
1246 | | - |
1247 | QThreadData *threadData = self->d_func()->threadData; | - |
1248 | if (threadData != QThreadData::current()) {TRUE | never evaluated | FALSE | evaluated 85 times by 12 testsEvaluated by:- tst_QApplication
- tst_QColorDialog
- tst_QCoreApplication
- tst_QFontDialog
- tst_QGuiApplication
- tst_QStateMachine
- tst_QSystemTrayIcon
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
|
| 0-85 |
1249 | qWarning("%s::exec: Must be called from the main thread", self->metaObject()->className()); | - |
1250 | return -1; never executed: return -1; | 0 |
1251 | } | - |
1252 | if (!threadData->eventLoops.isEmpty()) {TRUE | never evaluated | FALSE | evaluated 85 times by 12 testsEvaluated by:- tst_QApplication
- tst_QColorDialog
- tst_QCoreApplication
- tst_QFontDialog
- tst_QGuiApplication
- tst_QStateMachine
- tst_QSystemTrayIcon
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
|
| 0-85 |
1253 | qWarning("QCoreApplication::exec: The event loop is already running"); | - |
1254 | return -1; never executed: return -1; | 0 |
1255 | } | - |
1256 | | - |
1257 | threadData->quitNow = false; | - |
1258 | QEventLoop eventLoop; | - |
1259 | self->d_func()->in_exec = true; | - |
1260 | self->d_func()->aboutToQuitEmitted = false; | - |
1261 | int returnCode = eventLoop.exec(); | - |
1262 | threadData->quitNow = false; | - |
1263 | if (self) {TRUE | evaluated 84 times by 11 testsEvaluated by:- tst_QApplication
- tst_QColorDialog
- tst_QCoreApplication
- tst_QFontDialog
- tst_QGuiApplication
- tst_QStateMachine
- tst_QSystemTrayIcon
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
| FALSE | never evaluated |
| 0-84 |
1264 | self->d_func()->in_exec = false; | - |
1265 | if (!self->d_func()->aboutToQuitEmitted)TRUE | evaluated 84 times by 11 testsEvaluated by:- tst_QApplication
- tst_QColorDialog
- tst_QCoreApplication
- tst_QFontDialog
- tst_QGuiApplication
- tst_QStateMachine
- tst_QSystemTrayIcon
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
| FALSE | never evaluated |
| 0-84 |
1266 | emit self->aboutToQuit(QPrivateSignal());executed 84 times by 11 tests: self->aboutToQuit(QPrivateSignal()); Executed by:- tst_QApplication
- tst_QColorDialog
- tst_QCoreApplication
- tst_QFontDialog
- tst_QGuiApplication
- tst_QStateMachine
- tst_QSystemTrayIcon
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
| 84 |
1267 | self->d_func()->aboutToQuitEmitted = true; | - |
1268 | sendPostedEvents(0, QEvent::DeferredDelete); | - |
1269 | }executed 84 times by 11 tests: end of block Executed by:- tst_QApplication
- tst_QColorDialog
- tst_QCoreApplication
- tst_QFontDialog
- tst_QGuiApplication
- tst_QStateMachine
- tst_QSystemTrayIcon
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
| 84 |
1270 | | - |
1271 | return returnCode;executed 84 times by 11 tests: return returnCode; Executed by:- tst_QApplication
- tst_QColorDialog
- tst_QCoreApplication
- tst_QFontDialog
- tst_QGuiApplication
- tst_QStateMachine
- tst_QSystemTrayIcon
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
| 84 |
1272 | } | - |
1273 | | - |
1274 | | - |
1275 | | - |
1276 | | - |
1277 | | - |
1278 | | - |
1279 | | - |
1280 | | - |
1281 | | - |
1282 | | - |
1283 | | - |
1284 | | - |
1285 | | - |
1286 | | - |
1287 | | - |
1288 | | - |
1289 | | - |
1290 | | - |
1291 | | - |
1292 | void QCoreApplication::exit(int returnCode) | - |
1293 | { | - |
1294 | if (!self)TRUE | evaluated 2 times by 2 testsEvaluated by:- tst_QCoreApplication
- tst_QGuiApplication
| FALSE | evaluated 92 times by 11 testsEvaluated by:- tst_QApplication
- tst_QColorDialog
- tst_QCoreApplication
- tst_QFontDialog
- tst_QGuiApplication
- tst_QStateMachine
- tst_QSystemTrayIcon
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
|
| 2-92 |
1295 | return;executed 2 times by 2 tests: return; Executed by:- tst_QCoreApplication
- tst_QGuiApplication
| 2 |
1296 | QThreadData *data = self->d_func()->threadData; | - |
1297 | data->quitNow = true; | - |
1298 | for (int i = 0; i < data->eventLoops.size(); ++i) {TRUE | evaluated 91 times by 11 testsEvaluated by:- tst_QApplication
- tst_QColorDialog
- tst_QCoreApplication
- tst_QFontDialog
- tst_QGuiApplication
- tst_QStateMachine
- tst_QSystemTrayIcon
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
| FALSE | evaluated 92 times by 11 testsEvaluated by:- tst_QApplication
- tst_QColorDialog
- tst_QCoreApplication
- tst_QFontDialog
- tst_QGuiApplication
- tst_QStateMachine
- tst_QSystemTrayIcon
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
|
| 91-92 |
1299 | QEventLoop *eventLoop = data->eventLoops.at(i); | - |
1300 | eventLoop->exit(returnCode); | - |
1301 | }executed 91 times by 11 tests: end of block Executed by:- tst_QApplication
- tst_QColorDialog
- tst_QCoreApplication
- tst_QFontDialog
- tst_QGuiApplication
- tst_QStateMachine
- tst_QSystemTrayIcon
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
| 91 |
1302 | #ifdef Q_OS_WINRT | - |
1303 | qWarning("QCoreApplication::exit: It is not recommended to explicitly exit an application on Windows Store Apps"); | - |
1304 | ComPtr<ICoreApplication> app; | - |
1305 | HRESULT hr = RoGetActivationFactory(Wrappers::HString::MakeReference(RuntimeClass_Windows_ApplicationModel_Core_CoreApplication).Get(), | - |
1306 | IID_PPV_ARGS(&app)); | - |
1307 | RETURN_VOID_IF_FAILED("Could not acquire ICoreApplication object"); | - |
1308 | ComPtr<ICoreApplicationExit> appExit; | - |
1309 | | - |
1310 | hr = app.As(&appExit); | - |
1311 | RETURN_VOID_IF_FAILED("Could not acquire ICoreApplicationExit object"); | - |
1312 | hr = appExit->Exit(); | - |
1313 | RETURN_VOID_IF_FAILED("Could not exit application"); | - |
1314 | #endif // Q_OS_WINRT | - |
1315 | }executed 92 times by 11 tests: end of block Executed by:- tst_QApplication
- tst_QColorDialog
- tst_QCoreApplication
- tst_QFontDialog
- tst_QGuiApplication
- tst_QStateMachine
- tst_QSystemTrayIcon
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
| 92 |
1316 | | - |
1317 | | - |
1318 | | - |
1319 | | - |
1320 | | - |
1321 | | - |
1322 | | - |
1323 | | - |
1324 | | - |
1325 | | - |
1326 | | - |
1327 | | - |
1328 | | - |
1329 | | - |
1330 | | - |
1331 | | - |
1332 | | - |
1333 | | - |
1334 | | - |
1335 | | - |
1336 | | - |
1337 | | - |
1338 | | - |
1339 | | - |
1340 | | - |
1341 | | - |
1342 | | - |
1343 | | - |
1344 | | - |
1345 | | - |
1346 | | - |
1347 | | - |
1348 | | - |
1349 | | - |
1350 | | - |
1351 | | - |
1352 | | - |
1353 | | - |
1354 | | - |
1355 | | - |
1356 | | - |
1357 | | - |
1358 | | - |
1359 | | - |
1360 | | - |
1361 | void QCoreApplication::postEvent(QObject *receiver, QEvent *event, int priority) | - |
1362 | { | - |
1363 | if (receiver == 0) {TRUE | never evaluated | FALSE | evaluated 657414 times by 491 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- ...
|
| 0-657414 |
1364 | qWarning("QCoreApplication::postEvent: Unexpected null receiver"); | - |
1365 | delete event; | - |
1366 | return; never executed: return; | 0 |
1367 | } | - |
1368 | | - |
1369 | QThreadData * volatile * pdata = &receiver->d_func()->threadData; | - |
1370 | QThreadData *data = *pdata; | - |
1371 | if (!data) {TRUE | never evaluated | FALSE | evaluated 657414 times by 491 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- ...
|
| 0-657414 |
1372 | | - |
1373 | delete event; | - |
1374 | return; never executed: return; | 0 |
1375 | } | - |
1376 | | - |
1377 | | - |
1378 | data->postEventList.mutex.lock(); | - |
1379 | | - |
1380 | | - |
1381 | while (data != *pdata) {TRUE | never evaluated | FALSE | evaluated 657414 times by 491 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- ...
|
| 0-657414 |
1382 | data->postEventList.mutex.unlock(); | - |
1383 | | - |
1384 | data = *pdata; | - |
1385 | if (!data) {TRUE | never evaluated | FALSE | never evaluated |
| 0 |
1386 | | - |
1387 | delete event; | - |
1388 | return; never executed: return; | 0 |
1389 | } | - |
1390 | | - |
1391 | data->postEventList.mutex.lock(); | - |
1392 | } never executed: end of block | 0 |
1393 | | - |
1394 | QMutexUnlocker locker(&data->postEventList.mutex); | - |
1395 | | - |
1396 | | - |
1397 | if (receiver->d_func()->postedEventsTRUE | evaluated 187930 times by 420 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- ...
| FALSE | evaluated 469484 times by 491 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- ...
|
| 187930-469484 |
1398 | && self && self->compressEvent(event, receiver, &data->postEventList)) {TRUE | evaluated 187137 times by 229 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- ...
| FALSE | evaluated 793 times by 221 testsEvaluated by:- tst_QApplication
- tst_QDBusConnection_NoApplication
- tst_QGuiApplication
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractproxymodel - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qapplication - unknown status
- tst_qbackingstore - unknown status
- tst_qboxlayout - unknown status
- tst_qbrush - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- tst_qcheckbox - unknown status
- ...
|
TRUE | evaluated 10704 times by 106 testsEvaluated by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- 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_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- ...
| FALSE | evaluated 176433 times by 228 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- ...
|
| 793-187137 |
1399 | return;executed 10704 times by 106 tests: return; Executed by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- 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_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- ...
| 10704 |
1400 | } | - |
1401 | | - |
1402 | if (event->type() == QEvent::DeferredDelete && data == QThreadData::current()) {TRUE | evaluated 11591 times by 213 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
| FALSE | evaluated 635119 times by 466 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
|
TRUE | evaluated 10538 times by 192 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
| FALSE | evaluated 1053 times by 37 testsEvaluated by:- tst_QAbstractNetworkCache
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QObject
- tst_QPointer
- tst_Spdy
- tst_networkselftest - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qftp - unknown status
- tst_qhostinfo - unknown status
- tst_qhttpnetworkconnection - unknown status
- tst_qnetworkaccessmanager - unknown status
- ...
|
| 1053-635119 |
1403 | | - |
1404 | | - |
1405 | | - |
1406 | | - |
1407 | | - |
1408 | | - |
1409 | | - |
1410 | | - |
1411 | | - |
1412 | | - |
1413 | | - |
1414 | | - |
1415 | | - |
1416 | | - |
1417 | int loopLevel = data->loopLevel; | - |
1418 | int scopeLevel = data->scopeLevel; | - |
1419 | if (scopeLevel == 0 && loopLevel != 0)TRUE | evaluated 7943 times by 110 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDir
- tst_QDockWidget
- tst_QEventLoop
- tst_QFile
- tst_QFileDialog2
- ...
| FALSE | evaluated 2595 times by 151 testsEvaluated by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_SpyHook
- ...
|
TRUE | evaluated 2 times by 1 test | FALSE | evaluated 7941 times by 110 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDir
- tst_QDockWidget
- tst_QEventLoop
- tst_QFile
- tst_QFileDialog2
- ...
|
| 2-7943 |
1420 | scopeLevel = 1;executed 2 times by 1 test: scopeLevel = 1; | 2 |
1421 | static_cast<QDeferredDeleteEvent *>(event)->level = loopLevel + scopeLevel; | - |
1422 | }executed 10538 times by 192 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
| 10538 |
1423 | | - |
1424 | | - |
1425 | | - |
1426 | QScopedPointer<QEvent> eventDeleter(event); | - |
1427 | data->postEventList.addEvent(QPostEvent(receiver, event, priority)); | - |
1428 | eventDeleter.take(); | - |
1429 | event->posted = true; | - |
1430 | ++receiver->d_func()->postedEvents; | - |
1431 | data->canWait = false; | - |
1432 | locker.unlock(); | - |
1433 | | - |
1434 | QAbstractEventDispatcher* dispatcher = data->eventDispatcher.loadAcquire(); | - |
1435 | if (dispatcher)TRUE | evaluated 643577 times by 400 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- ...
| FALSE | evaluated 3133 times by 385 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
|
| 3133-643577 |
1436 | dispatcher->wakeUp();executed 643577 times by 400 tests: dispatcher->wakeUp(); Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- ...
| 643577 |
1437 | }executed 646710 times by 491 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- ...
| 646710 |
1438 | | - |
1439 | | - |
1440 | | - |
1441 | | - |
1442 | | - |
1443 | bool QCoreApplication::compressEvent(QEvent *event, QObject *receiver, QPostEventList *postedEvents) | - |
1444 | { | - |
1445 | #ifdef Q_OS_WIN | - |
1446 | Q_ASSERT(event); | - |
1447 | Q_ASSERT(receiver); | - |
1448 | Q_ASSERT(postedEvents); | - |
1449 | | - |
1450 | | - |
1451 | if (event->type() == QEvent::Timer && receiver->d_func()->postedEvents > 0) { | - |
1452 | int timerId = ((QTimerEvent *) event)->timerId(); | - |
1453 | for (int i=0; i<postedEvents->size(); ++i) { | - |
1454 | const QPostEvent &e = postedEvents->at(i); | - |
1455 | if (e.receiver == receiver && e.event && e.event->type() == QEvent::Timer | - |
1456 | && ((QTimerEvent *) e.event)->timerId() == timerId) { | - |
1457 | delete event; | - |
1458 | return true; | - |
1459 | } | - |
1460 | } | - |
1461 | } else | - |
1462 | #endif | - |
1463 | if ((event->type() == QEvent::DeferredDeleteTRUE | evaluated 882 times by 35 testsEvaluated by:- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDialog
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QItemDelegate
- tst_QLabel
- tst_QLineEdit
- tst_QListWidget
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QStyleSheetStyle
- tst_QTableWidget
- tst_QTcpServer
- ...
| FALSE | evaluated 152752 times by 221 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
|
| 882-152752 |
1464 | || event->type() == QEvent::Quit)TRUE | never evaluated | FALSE | evaluated 152752 times by 221 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
|
| 0-152752 |
1465 | && receiver->d_func()->postedEvents > 0) {TRUE | evaluated 882 times by 35 testsEvaluated by:- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDialog
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QItemDelegate
- tst_QLabel
- tst_QLineEdit
- tst_QListWidget
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QStyleSheetStyle
- tst_QTableWidget
- tst_QTcpServer
- ...
| FALSE | never evaluated |
| 0-882 |
1466 | for (int i = 0; i < postedEvents->size(); ++i) {TRUE | evaluated 16710 times by 35 testsEvaluated by:- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDialog
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QItemDelegate
- tst_QLabel
- tst_QLineEdit
- tst_QListWidget
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QStyleSheetStyle
- tst_QTableWidget
- tst_QTcpServer
- ...
| FALSE | evaluated 722 times by 33 testsEvaluated by:- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDialog
- tst_QGridLayout
- tst_QItemDelegate
- tst_QLabel
- tst_QLineEdit
- tst_QListWidget
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QStyleSheetStyle
- tst_QTableWidget
- tst_QTcpServer
- tst_QTextEdit
- tst_QToolBar
- ...
|
| 722-16710 |
1467 | const QPostEvent &cur = postedEvents->at(i); | - |
1468 | if (cur.receiver != receiverTRUE | evaluated 15004 times by 31 testsEvaluated by:- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDialog
- tst_QGridLayout
- tst_QItemDelegate
- tst_QLabel
- tst_QLineEdit
- tst_QListWidget
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QStyleSheetStyle
- tst_QTableWidget
- tst_QTcpServer
- tst_QTextEdit
- tst_QToolBar
- tst_QToolBox
- ...
| FALSE | evaluated 1706 times by 35 testsEvaluated by:- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDialog
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QItemDelegate
- tst_QLabel
- tst_QLineEdit
- tst_QListWidget
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QStyleSheetStyle
- tst_QTableWidget
- tst_QTcpServer
- ...
|
| 1706-15004 |
1469 | || cur.event == 0TRUE | evaluated 397 times by 9 testsEvaluated by:- tst_QApplication
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDialog
- tst_QMainWindow
- tst_QNetworkConfigurationManager
- tst_QNetworkReply
- tst_QTreeView
- tst_Spdy
| FALSE | evaluated 1309 times by 35 testsEvaluated by:- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDialog
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGridLayout
- tst_QItemDelegate
- tst_QLabel
- tst_QLineEdit
- tst_QListWidget
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QStyleSheetStyle
- tst_QTableWidget
- tst_QTcpServer
- ...
|
| 397-1309 |
1470 | || cur.event->type() != event->type())TRUE | evaluated 1149 times by 33 testsEvaluated by:- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDialog
- tst_QGridLayout
- tst_QItemDelegate
- tst_QLabel
- tst_QLineEdit
- tst_QListWidget
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QStyleSheetStyle
- tst_QTableWidget
- tst_QTcpServer
- tst_QTextEdit
- tst_QToolBar
- ...
| FALSE | evaluated 160 times by 9 testsEvaluated by:- tst_QApplication
- tst_QColumnView
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QNetworkReply
- tst_QStyleSheetStyle
- tst_QToolTip
- tst_QTreeView
- tst_Spdy
|
| 160-1149 |
1471 | continue;executed 16550 times by 33 tests: continue; Executed by:- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDialog
- tst_QGridLayout
- tst_QItemDelegate
- tst_QLabel
- tst_QLineEdit
- tst_QListWidget
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QStyleSheetStyle
- tst_QTableWidget
- tst_QTcpServer
- tst_QTextEdit
- tst_QToolBar
- ...
| 16550 |
1472 | | - |
1473 | delete event; | - |
1474 | return true;executed 160 times by 9 tests: return true; Executed by:- tst_QApplication
- tst_QColumnView
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QNetworkReply
- tst_QStyleSheetStyle
- tst_QToolTip
- tst_QTreeView
- tst_Spdy
| 160 |
1475 | } | - |
1476 | }executed 722 times by 33 tests: end of block Executed by:- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QDialog
- tst_QGridLayout
- tst_QItemDelegate
- tst_QLabel
- tst_QLineEdit
- tst_QListWidget
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QStyleSheetStyle
- tst_QTableWidget
- tst_QTcpServer
- tst_QTextEdit
- tst_QToolBar
- ...
| 722 |
1477 | return false;executed 153474 times by 222 tests: return false; Executed by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| 153474 |
1478 | } | - |
1479 | | - |
1480 | | - |
1481 | | - |
1482 | | - |
1483 | | - |
1484 | | - |
1485 | | - |
1486 | | - |
1487 | | - |
1488 | | - |
1489 | | - |
1490 | | - |
1491 | | - |
1492 | | - |
1493 | | - |
1494 | | - |
1495 | | - |
1496 | void QCoreApplication::sendPostedEvents(QObject *receiver, int event_type) | - |
1497 | { | - |
1498 | | - |
1499 | | - |
1500 | | - |
1501 | QThreadData *data = QThreadData::current(); | - |
1502 | | - |
1503 | QCoreApplicationPrivate::sendPostedEvents(receiver, event_type, data); | - |
1504 | }executed 1066841 times by 738 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QAtomicInt
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| 1066841 |
1505 | | - |
1506 | void QCoreApplicationPrivate::sendPostedEvents(QObject *receiver, int event_type, | - |
1507 | QThreadData *data) | - |
1508 | { | - |
1509 | if (event_type == -1) {TRUE | never evaluated | FALSE | evaluated 1066841 times by 740 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QAtomicInt
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
|
| 0-1066841 |
1510 | | - |
1511 | event_type = 0; | - |
1512 | } never executed: end of block | 0 |
1513 | | - |
1514 | if (receiver && receiver->d_func()->threadData != data) {TRUE | evaluated 1811 times by 30 testsEvaluated by:- tst_Gestures
- tst_QAbstractItemView
- tst_QCoreApplication
- tst_QDBusPendingCall
- tst_QDialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- tst_QGraphicsLinearLayout
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsSceneIndex
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QGuiApplication
- tst_QItemDelegate
- tst_QItemView
- tst_QMainWindow
- tst_QObject
- tst_QOpenGLWidget
- tst_QPainter
- tst_QPrinter
- ...
| FALSE | evaluated 1065030 times by 740 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QAtomicInt
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
|
TRUE | never evaluated | FALSE | evaluated 1811 times by 30 testsEvaluated by:- tst_Gestures
- tst_QAbstractItemView
- tst_QCoreApplication
- tst_QDBusPendingCall
- tst_QDialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- tst_QGraphicsLinearLayout
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsSceneIndex
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QGuiApplication
- tst_QItemDelegate
- tst_QItemView
- tst_QMainWindow
- tst_QObject
- tst_QOpenGLWidget
- tst_QPainter
- tst_QPrinter
- ...
|
| 0-1065030 |
1515 | qWarning("QCoreApplication::sendPostedEvents: Cannot send " | - |
1516 | "posted events for objects in another thread"); | - |
1517 | return; never executed: return; | 0 |
1518 | } | - |
1519 | | - |
1520 | ++data->postEventList.recursion; | - |
1521 | | - |
1522 | QMutexLocker locker(&data->postEventList.mutex); | - |
1523 | | - |
1524 | | - |
1525 | | - |
1526 | | - |
1527 | data->canWait = (data->postEventList.size() == 0); | - |
1528 | | - |
1529 | if (data->postEventList.size() == 0 || (receiver && !receiver->d_func()->postedEvents)) {TRUE | evaluated 685786 times by 708 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QApplication
- tst_QAtomicInt
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| FALSE | evaluated 381055 times by 352 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
TRUE | evaluated 1811 times by 30 testsEvaluated by:- tst_Gestures
- tst_QAbstractItemView
- tst_QCoreApplication
- tst_QDBusPendingCall
- tst_QDialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- tst_QGraphicsLinearLayout
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsSceneIndex
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QGuiApplication
- tst_QItemDelegate
- tst_QItemView
- tst_QMainWindow
- tst_QObject
- tst_QOpenGLWidget
- tst_QPainter
- tst_QPrinter
- ...
| FALSE | evaluated 379244 times by 352 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
TRUE | evaluated 52 times by 8 testsEvaluated by:- tst_QAbstractItemView
- tst_QDBusPendingCall
- tst_QGraphicsItem
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QItemDelegate
- tst_QTableView
- tst_QTreeWidget
| FALSE | evaluated 1759 times by 28 testsEvaluated by:- tst_Gestures
- tst_QAbstractItemView
- tst_QCoreApplication
- tst_QDBusPendingCall
- tst_QDialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- tst_QGraphicsLinearLayout
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsSceneIndex
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QGuiApplication
- tst_QItemDelegate
- tst_QItemView
- tst_QMainWindow
- tst_QObject
- tst_QOpenGLWidget
- tst_QPainter
- tst_QPrinter
- ...
|
| 52-685786 |
1530 | --data->postEventList.recursion; | - |
1531 | return;executed 685838 times by 708 tests: return; Executed by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAccessibility
- tst_QApplication
- tst_QAtomicInt
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| 685838 |
1532 | } | - |
1533 | | - |
1534 | data->canWait = true; | - |
1535 | | - |
1536 | | - |
1537 | | - |
1538 | int startOffset = data->postEventList.startOffset; | - |
1539 | int &i = (!event_type && !receiver) ? data->postEventList.startOffset : startOffset;TRUE | evaluated 376528 times by 351 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 4475 times by 116 testsEvaluated by:- tst_Gestures
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QBackingStore
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QDialog
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- ...
|
TRUE | evaluated 376495 times by 351 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 33 times by 6 testsEvaluated by:- tst_QAbstractItemView
- tst_QCoreApplication
- tst_QGuiApplication
- tst_QItemDelegate
- tst_QItemView
- tst_QTreeView
|
| 33-376528 |
1540 | data->postEventList.insertionOffset = data->postEventList.size(); | - |
1541 | | - |
1542 | | - |
1543 | struct CleanUp { | - |
1544 | QObject *receiver; | - |
1545 | int event_type; | - |
1546 | QThreadData *data; | - |
1547 | bool exceptionCaught; | - |
1548 | | - |
1549 | inline CleanUp(QObject *receiver, int event_type, QThreadData *data) : | - |
1550 | receiver(receiver), event_type(event_type), data(data), exceptionCaught(true) | - |
1551 | {}executed 381003 times by 352 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| 381003 |
1552 | inline ~CleanUp() | - |
1553 | { | - |
1554 | if (exceptionCaught) {TRUE | never evaluated | FALSE | evaluated 381003 times by 353 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
| 0-381003 |
1555 | | - |
1556 | data->canWait = false; | - |
1557 | } never executed: end of block | 0 |
1558 | | - |
1559 | --data->postEventList.recursion; | - |
1560 | if (!data->postEventList.recursion && !data->canWait && data->hasEventDispatcher())TRUE | evaluated 378014 times by 353 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 2989 times by 29 testsEvaluated by:- tst_Gestures
- tst_QApplication
- tst_QColorDialog
- tst_QCoreApplication
- tst_QDialog
- tst_QEventLoop
- tst_QFontDialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- tst_QGraphicsLinearLayout
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsSceneIndex
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QGuiApplication
- tst_QGuiEventLoop
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkReply
- tst_QObject
- tst_QOpenGLWidget
- ...
|
TRUE | evaluated 29494 times by 202 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| FALSE | evaluated 348520 times by 353 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
TRUE | evaluated 29494 times by 202 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| FALSE | never evaluated |
| 0-378014 |
1561 | data->eventDispatcher.load()->wakeUp();executed 29494 times by 202 tests: data->eventDispatcher.load()->wakeUp(); Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| 29494 |
1562 | | - |
1563 | | - |
1564 | | - |
1565 | if (!event_type && !receiver && data->postEventList.startOffset >= 0) {TRUE | evaluated 376528 times by 352 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 4475 times by 116 testsEvaluated by:- tst_Gestures
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QBackingStore
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QDialog
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- ...
|
TRUE | evaluated 376495 times by 352 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 33 times by 6 testsEvaluated by:- tst_QAbstractItemView
- tst_QCoreApplication
- tst_QGuiApplication
- tst_QItemDelegate
- tst_QItemView
- tst_QTreeView
|
TRUE | evaluated 376495 times by 352 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| FALSE | never evaluated |
| 0-376528 |
1566 | const QPostEventList::iterator it = data->postEventList.begin(); | - |
1567 | data->postEventList.erase(it, it + data->postEventList.startOffset); | - |
1568 | data->postEventList.insertionOffset -= data->postEventList.startOffset; | - |
1569 | Q_ASSERT(data->postEventList.insertionOffset >= 0); | - |
1570 | data->postEventList.startOffset = 0; | - |
1571 | }executed 376495 times by 352 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| 376495 |
1572 | }executed 381003 times by 353 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| 381003 |
1573 | }; | - |
1574 | CleanUp cleanup(receiver, event_type, data); | - |
1575 | | - |
1576 | while (i < data->postEventList.size()) {TRUE | evaluated 666141 times by 352 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 352105 times by 352 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
| 352105-666141 |
1577 | | - |
1578 | if (i >= data->postEventList.insertionOffset)TRUE | evaluated 28898 times by 204 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| FALSE | evaluated 637243 times by 352 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
| 28898-637243 |
1579 | break;executed 28898 times by 204 tests: break; Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| 28898 |
1580 | | - |
1581 | const QPostEvent &pe = data->postEventList.at(i); | - |
1582 | ++i; | - |
1583 | | - |
1584 | if (!pe.event)TRUE | evaluated 45969 times by 131 testsEvaluated by:- tst_Gestures
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QDialog
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QEventLoop
- tst_QFileDialog2
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsAnchorLayout
- ...
| FALSE | evaluated 591274 times by 351 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
| 45969-591274 |
1585 | continue;executed 45969 times by 131 tests: continue; Executed by:- tst_Gestures
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusPendingCall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QDialog
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QEventLoop
- tst_QFileDialog2
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsAnchorLayout
- ...
| 45969 |
1586 | if ((receiver && receiver != pe.receiver) || (event_type && event_type != pe.event->type())) {TRUE | evaluated 28700 times by 28 testsEvaluated by:- tst_Gestures
- tst_QAbstractItemView
- tst_QCoreApplication
- tst_QDBusPendingCall
- tst_QDialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- tst_QGraphicsLinearLayout
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsSceneIndex
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QGuiApplication
- tst_QItemDelegate
- tst_QItemView
- tst_QMainWindow
- tst_QObject
- tst_QOpenGLWidget
- tst_QPainter
- tst_QPrinter
- ...
| FALSE | evaluated 562574 times by 351 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
TRUE | evaluated 24733 times by 26 testsEvaluated by:- tst_Gestures
- tst_QAbstractItemView
- tst_QCoreApplication
- tst_QDialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- tst_QGraphicsLinearLayout
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsSceneIndex
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QGuiApplication
- tst_QItemDelegate
- tst_QItemView
- tst_QMainWindow
- tst_QOpenGLWidget
- tst_QPainter
- tst_QPrinter
- tst_QTouchEvent
- tst_QTreeView
- ...
| FALSE | evaluated 3967 times by 28 testsEvaluated by:- tst_Gestures
- tst_QAbstractItemView
- tst_QCoreApplication
- tst_QDBusPendingCall
- tst_QDialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- tst_QGraphicsLinearLayout
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsSceneIndex
- tst_QGraphicsView
- tst_QGraphicsWidget
- tst_QGuiApplication
- tst_QItemDelegate
- tst_QItemView
- tst_QMainWindow
- tst_QObject
- tst_QOpenGLWidget
- tst_QPainter
- tst_QPrinter
- ...
|
TRUE | evaluated 13239 times by 72 testsEvaluated by:- tst_Gestures
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QBackingStore
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QDialog
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- ...
| FALSE | evaluated 553302 times by 351 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
TRUE | evaluated 10672 times by 49 testsEvaluated by:- tst_Gestures
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QBackingStore
- tst_QCalendarWidget
- tst_QCompleter
- tst_QDialog
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- tst_QGraphicsLinearLayout
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsSceneIndex
- tst_QGraphicsView
- tst_QGraphicsWidget
- ...
| FALSE | evaluated 2567 times by 58 testsEvaluated by:- tst_Gestures
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDBusAbstractAdaptor
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QDialog
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- tst_QGraphicsLinearLayout
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsSceneIndex
- tst_QGraphicsView
- tst_QGraphicsWidget
- ...
|
| 2567-562574 |
1587 | data->canWait = false; | - |
1588 | continue;executed 35405 times by 53 tests: continue; Executed by:- tst_Gestures
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QBackingStore
- tst_QCalendarWidget
- tst_QCompleter
- tst_QCoreApplication
- tst_QDialog
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- tst_QGraphicsGridLayout
- tst_QGraphicsItem
- tst_QGraphicsLayout
- tst_QGraphicsLinearLayout
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsSceneIndex
- tst_QGraphicsView
- ...
| 35405 |
1589 | } | - |
1590 | | - |
1591 | if (pe.event->type() == QEvent::DeferredDelete) {TRUE | evaluated 5745 times by 173 testsEvaluated by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- ...
| FALSE | evaluated 550124 times by 349 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
| 5745-550124 |
1592 | | - |
1593 | | - |
1594 | | - |
1595 | | - |
1596 | | - |
1597 | | - |
1598 | int eventLevel = static_cast<QDeferredDeleteEvent *>(pe.event)->loopLevel(); | - |
1599 | int loopLevel = data->loopLevel + data->scopeLevel; | - |
1600 | const bool allowDeferredDelete = | - |
1601 | (eventLevel > loopLevelTRUE | evaluated 2239 times by 150 testsEvaluated by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_SpyHook
- ...
| FALSE | evaluated 3506 times by 73 testsEvaluated by:- tst_Gestures
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QDockWidget
- tst_QFileDialog2
- tst_QGraphicsProxyWidget
- tst_QHeaderView
- tst_QItemDelegate
- tst_QListWidget
- tst_QLocalSocket
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- ...
|
| 2239-3506 |
1602 | || (!eventLevel && loopLevel > 0)TRUE | evaluated 3374 times by 72 testsEvaluated by:- tst_Gestures
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QDockWidget
- tst_QFileDialog2
- tst_QGraphicsProxyWidget
- tst_QHeaderView
- tst_QItemDelegate
- tst_QListWidget
- tst_QLocalSocket
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- ...
| FALSE | evaluated 132 times by 4 testsEvaluated by:- tst_QApplication
- tst_QItemDelegate
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QTcpSocket
|
TRUE | evaluated 1207 times by 41 testsEvaluated by:- tst_QApplication
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QObject
- tst_QPointer
- tst_QProcess
- tst_QSslSocket
- tst_QToolButton
- tst_Spdy
- tst_networkselftest - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- ...
| FALSE | evaluated 2167 times by 39 testsEvaluated by:- tst_Gestures
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDBusAbstractAdaptor
- tst_QDBusThreading
- tst_QDockWidget
- tst_QFileDialog2
- tst_QGraphicsProxyWidget
- tst_QHeaderView
- tst_QItemDelegate
- tst_QListWidget
- tst_QLocalSocket
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QObject
- tst_QPrinter
- tst_QProcess
- ...
|
| 132-3374 |
1603 | || (event_type == QEvent::DeferredDeleteTRUE | evaluated 808 times by 37 testsEvaluated by:- tst_Gestures
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDBusAbstractAdaptor
- tst_QDBusThreading
- tst_QDockWidget
- tst_QFileDialog2
- tst_QGraphicsProxyWidget
- tst_QHeaderView
- tst_QItemDelegate
- tst_QListWidget
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QObject
- tst_QPrinter
- tst_QProcess
- tst_QShortcut
- ...
| FALSE | evaluated 1491 times by 34 testsEvaluated by:- tst_Gestures
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDBusAbstractAdaptor
- tst_QDBusThreading
- tst_QDockWidget
- tst_QFileDialog2
- tst_QGraphicsProxyWidget
- tst_QHeaderView
- tst_QItemDelegate
- tst_QLocalSocket
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkDiskCache
- tst_QNetworkReply
- tst_QPrinter
- tst_QProcess
- tst_QProcess_and_GuiEventLoop
- tst_QShortcut
- ...
|
| 808-1491 |
1604 | && eventLevel == loopLevel));TRUE | evaluated 807 times by 37 testsEvaluated by:- tst_Gestures
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDBusAbstractAdaptor
- tst_QDBusThreading
- tst_QDockWidget
- tst_QFileDialog2
- tst_QGraphicsProxyWidget
- tst_QHeaderView
- tst_QItemDelegate
- tst_QListWidget
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QObject
- tst_QPrinter
- tst_QProcess
- tst_QShortcut
- ...
| FALSE | evaluated 1 time by 1 test |
| 1-807 |
1605 | if (!allowDeferredDelete) {TRUE | evaluated 1492 times by 34 testsEvaluated by:- tst_Gestures
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDBusAbstractAdaptor
- tst_QDBusThreading
- tst_QDockWidget
- tst_QFileDialog2
- tst_QGraphicsProxyWidget
- tst_QHeaderView
- tst_QItemDelegate
- tst_QLocalSocket
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkDiskCache
- tst_QNetworkReply
- tst_QPrinter
- tst_QProcess
- tst_QProcess_and_GuiEventLoop
- tst_QShortcut
- ...
| FALSE | evaluated 4253 times by 172 testsEvaluated by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- ...
|
| 1492-4253 |
1606 | | - |
1607 | if (!event_type && !receiver) {TRUE | evaluated 1491 times by 34 testsEvaluated by:- tst_Gestures
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDBusAbstractAdaptor
- tst_QDBusThreading
- tst_QDockWidget
- tst_QFileDialog2
- tst_QGraphicsProxyWidget
- tst_QHeaderView
- tst_QItemDelegate
- tst_QLocalSocket
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkDiskCache
- tst_QNetworkReply
- tst_QPrinter
- tst_QProcess
- tst_QProcess_and_GuiEventLoop
- tst_QShortcut
- ...
| FALSE | evaluated 1 time by 1 test |
TRUE | evaluated 1491 times by 34 testsEvaluated by:- tst_Gestures
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDBusAbstractAdaptor
- tst_QDBusThreading
- tst_QDockWidget
- tst_QFileDialog2
- tst_QGraphicsProxyWidget
- tst_QHeaderView
- tst_QItemDelegate
- tst_QLocalSocket
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkDiskCache
- tst_QNetworkReply
- tst_QPrinter
- tst_QProcess
- tst_QProcess_and_GuiEventLoop
- tst_QShortcut
- ...
| FALSE | never evaluated |
| 0-1491 |
1608 | | - |
1609 | | - |
1610 | | - |
1611 | | - |
1612 | QPostEvent pe_copy = pe; | - |
1613 | | - |
1614 | | - |
1615 | | - |
1616 | const_cast<QPostEvent &>(pe).event = 0; | - |
1617 | | - |
1618 | | - |
1619 | data->postEventList.addEvent(pe_copy); | - |
1620 | }executed 1491 times by 34 tests: end of block Executed by:- tst_Gestures
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDBusAbstractAdaptor
- tst_QDBusThreading
- tst_QDockWidget
- tst_QFileDialog2
- tst_QGraphicsProxyWidget
- tst_QHeaderView
- tst_QItemDelegate
- tst_QLocalSocket
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkDiskCache
- tst_QNetworkReply
- tst_QPrinter
- tst_QProcess
- tst_QProcess_and_GuiEventLoop
- tst_QShortcut
- ...
| 1491 |
1621 | continue;executed 1492 times by 34 tests: continue; Executed by:- tst_Gestures
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QColumnView
- tst_QComboBox
- tst_QDBusAbstractAdaptor
- tst_QDBusThreading
- tst_QDockWidget
- tst_QFileDialog2
- tst_QGraphicsProxyWidget
- tst_QHeaderView
- tst_QItemDelegate
- tst_QLocalSocket
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMenu
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkDiskCache
- tst_QNetworkReply
- tst_QPrinter
- tst_QProcess
- tst_QProcess_and_GuiEventLoop
- tst_QShortcut
- ...
| 1492 |
1622 | } | - |
1623 | }executed 4253 times by 172 tests: end of block Executed by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- ...
| 4253 |
1624 | | - |
1625 | | - |
1626 | | - |
1627 | pe.event->posted = false; | - |
1628 | QEvent *e = pe.event; | - |
1629 | QObject * r = pe.receiver; | - |
1630 | | - |
1631 | --r->d_func()->postedEvents; | - |
1632 | Q_ASSERT(r->d_func()->postedEvents >= 0); | - |
1633 | | - |
1634 | | - |
1635 | | - |
1636 | const_cast<QPostEvent &>(pe).event = 0; | - |
1637 | | - |
1638 | struct MutexUnlocker | - |
1639 | { | - |
1640 | QMutexLocker &m; | - |
1641 | MutexUnlocker(QMutexLocker &m) : m(m) { m.unlock(); }executed 554377 times by 350 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| 554377 |
1642 | ~MutexUnlocker() { m.relock(); }executed 554377 times by 351 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| 554377 |
1643 | }; | - |
1644 | MutexUnlocker unlocker(locker); | - |
1645 | | - |
1646 | QScopedPointer<QEvent> event_deleter(e); | - |
1647 | | - |
1648 | | - |
1649 | QCoreApplication::sendEvent(r, e); | - |
1650 | | - |
1651 | | - |
1652 | | - |
1653 | | - |
1654 | }executed 554376 times by 350 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| 554376 |
1655 | | - |
1656 | cleanup.exceptionCaught = false; | - |
1657 | }executed 381003 times by 353 tests: end of block Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
| 381003 |
1658 | | - |
1659 | | - |
1660 | | - |
1661 | | - |
1662 | | - |
1663 | | - |
1664 | | - |
1665 | | - |
1666 | | - |
1667 | | - |
1668 | | - |
1669 | | - |
1670 | | - |
1671 | | - |
1672 | | - |
1673 | | - |
1674 | | - |
1675 | | - |
1676 | | - |
1677 | | - |
1678 | | - |
1679 | void QCoreApplication::removePostedEvents(QObject *receiver, int eventType) | - |
1680 | { | - |
1681 | QThreadData *data = receiver ? receiver->d_func()->threadData : QThreadData::current();TRUE | evaluated 78885 times by 474 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- ...
| FALSE | evaluated 4 times by 2 testsEvaluated by:- tst_QCoreApplication
- tst_QGuiApplication
|
| 4-78885 |
1682 | QMutexLocker locker(&data->postEventList.mutex); | - |
1683 | | - |
1684 | | - |
1685 | | - |
1686 | | - |
1687 | | - |
1688 | if (receiver && !receiver->d_func()->postedEvents)TRUE | evaluated 78885 times by 474 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- ...
| FALSE | evaluated 4 times by 2 testsEvaluated by:- tst_QCoreApplication
- tst_QGuiApplication
|
TRUE | evaluated 26136 times by 276 testsEvaluated by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- ...
| FALSE | evaluated 52749 times by 456 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
|
| 4-78885 |
1689 | return;executed 26136 times by 276 tests: return; Executed by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- ...
| 26136 |
1690 | | - |
1691 | | - |
1692 | | - |
1693 | QVarLengthArray<QEvent*> events; | - |
1694 | int n = data->postEventList.size(); | - |
1695 | int j = 0; | - |
1696 | | - |
1697 | for (int i = 0; i < n; ++i) {TRUE | evaluated 7024883 times by 456 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 52753 times by 456 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
|
| 52753-7024883 |
1698 | const QPostEvent &pe = data->postEventList.at(i); | - |
1699 | | - |
1700 | if ((!receiver || pe.receiver == receiver)TRUE | evaluated 24 times by 2 testsEvaluated by:- tst_QCoreApplication
- tst_QGuiApplication
| FALSE | evaluated 7024859 times by 456 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
|
TRUE | evaluated 82520 times by 456 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 6942339 times by 207 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
|
| 24-7024859 |
1701 | && (pe.event && (eventType == 0 || pe.event->type() == eventType))) {TRUE | evaluated 81429 times by 456 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 1115 times by 36 testsEvaluated by:- tst_QAbstractItemView
- tst_QApplication
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QFtp
- tst_QGraphicsItem
- tst_QGraphicsScene
- tst_QHttpSocketEngine
- tst_QItemDelegate
- tst_QLabel
- tst_QLineEdit
- tst_QListWidget
- tst_QMainWindow
- tst_QMdiSubWindow
- tst_QMessageBox
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QProgressBar
- tst_QStyleSheetStyle
- ...
|
TRUE | evaluated 81133 times by 455 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 296 times by 7 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QDBusConnection_SpyHook
- tst_QFutureWatcher
- tst_QGuiApplication
- tst_QMessageBox
- tst_QWidget
|
TRUE | evaluated 163 times by 6 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QFutureWatcher
- tst_QGuiApplication
- tst_QMessageBox
- tst_QWidget
| FALSE | evaluated 133 times by 6 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QDBusConnection_SpyHook
- tst_QGuiApplication
- tst_QMessageBox
- tst_QWidget
|
| 133-81429 |
1702 | --pe.receiver->d_func()->postedEvents; | - |
1703 | pe.event->posted = false; | - |
1704 | events.append(pe.event); | - |
1705 | const_cast<QPostEvent &>(pe).event = 0; | - |
1706 | } else if (!data->postEventList.recursion) {executed 81296 times by 456 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
TRUE | evaluated 6932042 times by 190 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
| FALSE | evaluated 11545 times by 54 testsEvaluated by:- tst_QApplication
- tst_QColorDialog
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsItem
- tst_QGuiApplication
- tst_QHttpSocketEngine
- tst_QLabel
- tst_QLineEdit
- tst_QListWidget
- tst_QMainWindow
- tst_QMdiSubWindow
- tst_QMessageBox
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QProgressBar
- tst_QStyleSheetStyle
- ...
|
| 11545-6932042 |
1707 | if (i != j)TRUE | evaluated 1150973 times by 168 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- 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_QCoreApplication
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- ...
| FALSE | evaluated 5781069 times by 176 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
|
| 1150973-5781069 |
1708 | qSwap(data->postEventList[i], data->postEventList[j]);executed 1150973 times by 168 tests: qSwap(data->postEventList[i], data->postEventList[j]); Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- 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_QCoreApplication
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- ...
| 1150973 |
1709 | ++j; | - |
1710 | }executed 6932042 times by 190 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractAdaptor
- ...
| 6932042 |
1711 | }executed 7024883 times by 456 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
| 7024883 |
1712 | | - |
1713 | #ifdef QT_DEBUG | - |
1714 | if (receiver && eventType == 0) {TRUE | evaluated 52749 times by 456 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 4 times by 2 testsEvaluated by:- tst_QCoreApplication
- tst_QGuiApplication
|
TRUE | evaluated 52618 times by 455 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 131 times by 7 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QDBusConnection_SpyHook
- tst_QFutureWatcher
- tst_QGuiApplication
- tst_QMessageBox
- tst_QWidget
|
| 4-52749 |
1715 | Q_ASSERT(!receiver->d_func()->postedEvents); | - |
1716 | }executed 52618 times by 455 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
| 52618 |
1717 | #endif | - |
1718 | | - |
1719 | if (!data->postEventList.recursion) {TRUE | evaluated 51554 times by 453 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 1199 times by 54 testsEvaluated by:- tst_QApplication
- tst_QColorDialog
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusServiceWatcher
- tst_QDBusThreading
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsItem
- tst_QGuiApplication
- tst_QHttpSocketEngine
- tst_QLabel
- tst_QLineEdit
- tst_QListWidget
- tst_QMainWindow
- tst_QMdiSubWindow
- tst_QMessageBox
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QProgressBar
- tst_QStyleSheetStyle
- ...
|
| 1199-51554 |
1720 | | - |
1721 | data->postEventList.erase(data->postEventList.begin() + j, data->postEventList.end()); | - |
1722 | }executed 51554 times by 453 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
| 51554 |
1723 | | - |
1724 | locker.unlock(); | - |
1725 | for (int i = 0; i < events.count(); ++i) {TRUE | evaluated 81296 times by 456 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
| FALSE | evaluated 52753 times by 456 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
|
| 52753-81296 |
1726 | delete events[i]; | - |
1727 | }executed 81296 times by 456 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
| 81296 |
1728 | }executed 52753 times by 456 tests: end of block Executed by:- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
| 52753 |
1729 | | - |
1730 | | - |
1731 | | - |
1732 | | - |
1733 | | - |
1734 | | - |
1735 | | - |
1736 | | - |
1737 | | - |
1738 | | - |
1739 | | - |
1740 | void QCoreApplicationPrivate::removePostedEvent(QEvent * event) | - |
1741 | { | - |
1742 | if (!event || !event->posted)TRUE | never evaluated | FALSE | never evaluated |
TRUE | never evaluated | FALSE | never evaluated |
| 0 |
1743 | return; never executed: return; | 0 |
1744 | | - |
1745 | QThreadData *data = QThreadData::current(); | - |
1746 | | - |
1747 | QMutexLocker locker(&data->postEventList.mutex); | - |
1748 | | - |
1749 | if (data->postEventList.size() == 0) {TRUE | never evaluated | FALSE | never evaluated |
| 0 |
1750 | #if defined(QT_DEBUG) | - |
1751 | qDebug("QCoreApplication::removePostedEvent: Internal error: %p %d is posted", | - |
1752 | (void*)event, event->type()); | - |
1753 | return; never executed: return; | 0 |
1754 | #endif | - |
1755 | } | - |
1756 | | - |
1757 | for (int i = 0; i < data->postEventList.size(); ++i) {TRUE | never evaluated | FALSE | never evaluated |
| 0 |
1758 | const QPostEvent & pe = data->postEventList.at(i); | - |
1759 | if (pe.event == event) {TRUE | never evaluated | FALSE | never evaluated |
| 0 |
1760 | #ifndef QT_NO_DEBUG | - |
1761 | qWarning("QCoreApplication::removePostedEvent: Event of type %d deleted while posted to %s %s", | - |
1762 | event->type(), | - |
1763 | pe.receiver->metaObject()->className(), | - |
1764 | pe.receiver->objectName().toLocal8Bit().data()); | - |
1765 | #endif | - |
1766 | --pe.receiver->d_func()->postedEvents; | - |
1767 | pe.event->posted = false; | - |
1768 | delete pe.event; | - |
1769 | const_cast<QPostEvent &>(pe).event = 0; | - |
1770 | return; never executed: return; | 0 |
1771 | } | - |
1772 | } never executed: end of block | 0 |
1773 | } never executed: end of block | 0 |
1774 | | - |
1775 | | - |
1776 | | - |
1777 | | - |
1778 | bool QCoreApplication::event(QEvent *e) | - |
1779 | { | - |
1780 | if (e->type() == QEvent::Quit) {TRUE | evaluated 17 times by 6 testsEvaluated by:- tst_QApplication
- tst_QColorDialog
- tst_QCoreApplication
- tst_QFontDialog
- tst_QGuiApplication
- tst_QSystemTrayIcon
| FALSE | evaluated 2716 times by 254 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
|
| 17-2716 |
1781 | quit(); | - |
1782 | return true;executed 17 times by 6 tests: return true; Executed by:- tst_QApplication
- tst_QColorDialog
- tst_QCoreApplication
- tst_QFontDialog
- tst_QGuiApplication
- tst_QSystemTrayIcon
| 17 |
1783 | } | - |
1784 | return QObject::event(e);executed 2716 times by 254 tests: return QObject::event(e); Executed by:- tst_Gestures
- tst_ModelTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBuffer
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| 2716 |
1785 | } | - |
1786 | | - |
1787 | | - |
1788 | | - |
1789 | | - |
1790 | | - |
1791 | | - |
1792 | | - |
1793 | | - |
1794 | | - |
1795 | | - |
1796 | | - |
1797 | | - |
1798 | | - |
1799 | | - |
1800 | | - |
1801 | | - |
1802 | void QCoreApplicationPrivate::ref() | - |
1803 | { | - |
1804 | quitLockRef.ref(); | - |
1805 | }executed 12 times by 2 tests: end of block Executed by:- tst_QCoreApplication
- tst_QGuiApplication
| 12 |
1806 | | - |
1807 | void QCoreApplicationPrivate::deref() | - |
1808 | { | - |
1809 | if (!quitLockRef.deref())TRUE | evaluated 2 times by 2 testsEvaluated by:- tst_QCoreApplication
- tst_QGuiApplication
| FALSE | evaluated 10 times by 2 testsEvaluated by:- tst_QCoreApplication
- tst_QGuiApplication
|
| 2-10 |
1810 | maybeQuit();executed 2 times by 2 tests: maybeQuit(); Executed by:- tst_QCoreApplication
- tst_QGuiApplication
| 2 |
1811 | }executed 12 times by 2 tests: end of block Executed by:- tst_QCoreApplication
- tst_QGuiApplication
| 12 |
1812 | | - |
1813 | void QCoreApplicationPrivate::maybeQuit() | - |
1814 | { | - |
1815 | if (quitLockRef.load() == 0 && in_exec && quitLockRefEnabled && shouldQuit())TRUE | evaluated 2919 times by 120 testsEvaluated by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDial
- tst_QDialog
- tst_QDialogButtonBox
- ...
| FALSE | never evaluated |
TRUE | evaluated 22 times by 6 testsEvaluated by:- tst_QApplication
- tst_QColorDialog
- tst_QCoreApplication
- tst_QFontDialog
- tst_QGuiApplication
- tst_QSystemTrayIcon
| FALSE | evaluated 2897 times by 117 testsEvaluated by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDial
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QErrorMessage
- ...
|
TRUE | evaluated 22 times by 6 testsEvaluated by:- tst_QApplication
- tst_QColorDialog
- tst_QCoreApplication
- tst_QFontDialog
- tst_QGuiApplication
- tst_QSystemTrayIcon
| FALSE | never evaluated |
TRUE | evaluated 21 times by 6 testsEvaluated by:- tst_QApplication
- tst_QColorDialog
- tst_QCoreApplication
- tst_QFontDialog
- tst_QGuiApplication
- tst_QSystemTrayIcon
| FALSE | evaluated 1 time by 1 test |
| 0-2919 |
1816 | QCoreApplication::postEvent(QCoreApplication::instance(), new QEvent(QEvent::Quit));executed 21 times by 6 tests: QCoreApplication::postEvent(QCoreApplication::instance(), new QEvent(QEvent::Quit)); Executed by:- tst_QApplication
- tst_QColorDialog
- tst_QCoreApplication
- tst_QFontDialog
- tst_QGuiApplication
- tst_QSystemTrayIcon
| 21 |
1817 | }executed 2919 times by 120 tests: end of block Executed by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDial
- tst_QDialog
- tst_QDialogButtonBox
- ...
| 2919 |
1818 | | - |
1819 | | - |
1820 | | - |
1821 | | - |
1822 | | - |
1823 | | - |
1824 | | - |
1825 | | - |
1826 | | - |
1827 | | - |
1828 | | - |
1829 | | - |
1830 | | - |
1831 | | - |
1832 | | - |
1833 | | - |
1834 | void QCoreApplication::quit() | - |
1835 | { | - |
1836 | exit(0);executed 88 times by 11 tests: exit(0); Executed by:- tst_QApplication
- tst_QColorDialog
- tst_QCoreApplication
- tst_QFontDialog
- tst_QGuiApplication
- tst_QStateMachine
- tst_QSystemTrayIcon
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
| 88 |
1837 | } | - |
1838 | | - |
1839 | | - |
1840 | | - |
1841 | | - |
1842 | | - |
1843 | | - |
1844 | | - |
1845 | | - |
1846 | | - |
1847 | | - |
1848 | | - |
1849 | | - |
1850 | | - |
1851 | | - |
1852 | | - |
1853 | | - |
1854 | #endif // QT_NO_QOBJECT | - |
1855 | | - |
1856 | #ifndef QT_NO_TRANSLATION | - |
1857 | | - |
1858 | | - |
1859 | | - |
1860 | | - |
1861 | | - |
1862 | | - |
1863 | | - |
1864 | | - |
1865 | | - |
1866 | | - |
1867 | | - |
1868 | | - |
1869 | | - |
1870 | | - |
1871 | | - |
1872 | | - |
1873 | | - |
1874 | | - |
1875 | | - |
1876 | | - |
1877 | | - |
1878 | | - |
1879 | | - |
1880 | | - |
1881 | | - |
1882 | bool QCoreApplication::installTranslator(QTranslator *translationFile) | - |
1883 | { | - |
1884 | if (!translationFile)TRUE | never evaluated | FALSE | evaluated 35 times by 4 testsEvaluated by:- tst_QKeySequence
- tst_QProgressDialog
- tst_QTranslator
- tst_languageChange
|
| 0-35 |
1885 | return false; never executed: return false; | 0 |
1886 | | - |
1887 | if (!QCoreApplicationPrivate::checkInstance("installTranslator"))TRUE | never evaluated | FALSE | evaluated 35 times by 4 testsEvaluated by:- tst_QKeySequence
- tst_QProgressDialog
- tst_QTranslator
- tst_languageChange
|
| 0-35 |
1888 | return false; never executed: return false; | 0 |
1889 | QCoreApplicationPrivate *d = self->d_func(); | - |
1890 | d->translators.prepend(translationFile); | - |
1891 | | - |
1892 | #ifndef QT_NO_TRANSLATION_BUILDER | - |
1893 | if (translationFile->isEmpty())TRUE | evaluated 1 time by 1 test | FALSE | evaluated 34 times by 4 testsEvaluated by:- tst_QKeySequence
- tst_QProgressDialog
- tst_QTranslator
- tst_languageChange
|
| 1-34 |
1894 | return false;executed 1 time by 1 test: return false; | 1 |
1895 | #endif | - |
1896 | | - |
1897 | #ifndef QT_NO_QOBJECT | - |
1898 | QEvent ev(QEvent::LanguageChange); | - |
1899 | QCoreApplication::sendEvent(self, &ev); | - |
1900 | #endif | - |
1901 | | - |
1902 | return true;executed 34 times by 4 tests: return true; Executed by:- tst_QKeySequence
- tst_QProgressDialog
- tst_QTranslator
- tst_languageChange
| 34 |
1903 | } | - |
1904 | | - |
1905 | | - |
1906 | | - |
1907 | | - |
1908 | | - |
1909 | | - |
1910 | | - |
1911 | | - |
1912 | | - |
1913 | | - |
1914 | | - |
1915 | bool QCoreApplication::removeTranslator(QTranslator *translationFile) | - |
1916 | { | - |
1917 | if (!translationFile)TRUE | never evaluated | FALSE | evaluated 47 times by 5 testsEvaluated by:- tst_QKeySequence
- tst_QProgressDialog
- tst_QTranslator
- tst_languageChange
- tst_qkeysequence - unknown status
|
| 0-47 |
1918 | return false; never executed: return false; | 0 |
1919 | if (!QCoreApplicationPrivate::checkInstance("removeTranslator"))TRUE | never evaluated | FALSE | evaluated 47 times by 5 testsEvaluated by:- tst_QKeySequence
- tst_QProgressDialog
- tst_QTranslator
- tst_languageChange
- tst_qkeysequence - unknown status
|
| 0-47 |
1920 | return false; never executed: return false; | 0 |
1921 | QCoreApplicationPrivate *d = self->d_func(); | - |
1922 | if (d->translators.removeAll(translationFile)) {TRUE | evaluated 35 times by 4 testsEvaluated by:- tst_QKeySequence
- tst_QProgressDialog
- tst_QTranslator
- tst_languageChange
| FALSE | evaluated 12 times by 3 testsEvaluated by:- tst_QProgressDialog
- tst_QTranslator
- tst_qkeysequence - unknown status
|
| 12-35 |
1923 | #ifndef QT_NO_QOBJECT | - |
1924 | if (!self->closingDown()) {TRUE | evaluated 35 times by 4 testsEvaluated by:- tst_QKeySequence
- tst_QProgressDialog
- tst_QTranslator
- tst_languageChange
| FALSE | never evaluated |
| 0-35 |
1925 | QEvent ev(QEvent::LanguageChange); | - |
1926 | QCoreApplication::sendEvent(self, &ev); | - |
1927 | }executed 35 times by 4 tests: end of block Executed by:- tst_QKeySequence
- tst_QProgressDialog
- tst_QTranslator
- tst_languageChange
| 35 |
1928 | #endif | - |
1929 | return true;executed 35 times by 4 tests: return true; Executed by:- tst_QKeySequence
- tst_QProgressDialog
- tst_QTranslator
- tst_languageChange
| 35 |
1930 | } | - |
1931 | return false;executed 12 times by 3 tests: return false; Executed by:- tst_QProgressDialog
- tst_QTranslator
- tst_qkeysequence - unknown status
| 12 |
1932 | } | - |
1933 | | - |
1934 | static void replacePercentN(QString *result, int n) | - |
1935 | { | - |
1936 | if (n >= 0) {TRUE | evaluated 6 times by 1 test | FALSE | evaluated 361258 times by 197 testsEvaluated by:- tst_Lancelot
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- ...
|
| 6-361258 |
1937 | int percentPos = 0; | - |
1938 | int len = 0; | - |
1939 | while ((percentPos = result->indexOf(QLatin1Char('%'), percentPos + len)) != -1) {TRUE | evaluated 6 times by 1 test | FALSE | evaluated 6 times by 1 test |
| 6 |
1940 | len = 1; | - |
1941 | QString fmt; | - |
1942 | if (result->at(percentPos + len) == QLatin1Char('L')) {TRUE | never evaluated | FALSE | evaluated 6 times by 1 test |
| 0-6 |
1943 | ++len; | - |
1944 | fmt = QLatin1String("%L1"); | - |
1945 | } else { never executed: end of block | 0 |
1946 | fmt = QLatin1String("%1"); | - |
1947 | }executed 6 times by 1 test: end of block | 6 |
1948 | if (result->at(percentPos + len) == QLatin1Char('n')) {TRUE | evaluated 6 times by 1 test | FALSE | never evaluated |
| 0-6 |
1949 | fmt = fmt.arg(n); | - |
1950 | ++len; | - |
1951 | result->replace(percentPos, len, fmt); | - |
1952 | len = fmt.length(); | - |
1953 | }executed 6 times by 1 test: end of block | 6 |
1954 | }executed 6 times by 1 test: end of block | 6 |
1955 | }executed 6 times by 1 test: end of block | 6 |
1956 | }executed 361264 times by 197 tests: end of block Executed by:- tst_Lancelot
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- ...
| 361264 |
1957 | | - |
1958 | | - |
1959 | | - |
1960 | | - |
1961 | | - |
1962 | | - |
1963 | | - |
1964 | | - |
1965 | | - |
1966 | | - |
1967 | | - |
1968 | | - |
1969 | | - |
1970 | | - |
1971 | | - |
1972 | | - |
1973 | | - |
1974 | | - |
1975 | | - |
1976 | | - |
1977 | | - |
1978 | | - |
1979 | | - |
1980 | | - |
1981 | | - |
1982 | | - |
1983 | | - |
1984 | | - |
1985 | | - |
1986 | | - |
1987 | | - |
1988 | | - |
1989 | | - |
1990 | | - |
1991 | | - |
1992 | | - |
1993 | | - |
1994 | | - |
1995 | | - |
1996 | QString QCoreApplication::translate(const char *context, const char *sourceText, | - |
1997 | const char *disambiguation, int n) | - |
1998 | { | - |
1999 | QString result; | - |
2000 | | - |
2001 | if (!sourceText)TRUE | never evaluated | FALSE | evaluated 361264 times by 197 testsEvaluated by:- tst_Lancelot
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- ...
|
| 0-361264 |
2002 | return result; never executed: return result; | 0 |
2003 | | - |
2004 | if (self && !self->d_func()->translators.isEmpty()) {TRUE | evaluated 361229 times by 193 testsEvaluated by:- tst_Lancelot
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- ...
| FALSE | evaluated 35 times by 5 testsEvaluated by:- tst_QApplication
- tst_QDnsLookup_Appless
- tst_QPageLayout
- tst_QPageSize
- tst_qudpsocket - unknown status
|
TRUE | evaluated 386 times by 4 testsEvaluated by:- tst_QKeySequence
- tst_QProgressDialog
- tst_QTranslator
- tst_languageChange
| FALSE | evaluated 360843 times by 192 testsEvaluated by:- tst_Lancelot
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- ...
|
| 35-361229 |
2005 | QList<QTranslator*>::ConstIterator it; | - |
2006 | QTranslator *translationFile; | - |
2007 | for (it = self->d_func()->translators.constBegin(); it != self->d_func()->translators.constEnd(); ++it) {TRUE | evaluated 431 times by 4 testsEvaluated by:- tst_QKeySequence
- tst_QProgressDialog
- tst_QTranslator
- tst_languageChange
| FALSE | evaluated 66 times by 2 testsEvaluated by:- tst_QKeySequence
- tst_QTranslator
|
| 66-431 |
2008 | translationFile = *it; | - |
2009 | result = translationFile->translate(context, sourceText, disambiguation, n); | - |
2010 | if (!result.isNull())TRUE | evaluated 320 times by 4 testsEvaluated by:- tst_QKeySequence
- tst_QProgressDialog
- tst_QTranslator
- tst_languageChange
| FALSE | evaluated 111 times by 2 testsEvaluated by:- tst_QKeySequence
- tst_QTranslator
|
| 111-320 |
2011 | break;executed 320 times by 4 tests: break; Executed by:- tst_QKeySequence
- tst_QProgressDialog
- tst_QTranslator
- tst_languageChange
| 320 |
2012 | }executed 111 times by 2 tests: end of block Executed by:- tst_QKeySequence
- tst_QTranslator
| 111 |
2013 | }executed 386 times by 4 tests: end of block Executed by:- tst_QKeySequence
- tst_QProgressDialog
- tst_QTranslator
- tst_languageChange
| 386 |
2014 | | - |
2015 | if (result.isNull())TRUE | evaluated 360944 times by 197 testsEvaluated by:- tst_Lancelot
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- ...
| FALSE | evaluated 320 times by 4 testsEvaluated by:- tst_QKeySequence
- tst_QProgressDialog
- tst_QTranslator
- tst_languageChange
|
| 320-360944 |
2016 | result = QString::fromUtf8(sourceText);executed 360944 times by 197 tests: result = QString::fromUtf8(sourceText); Executed by:- tst_Lancelot
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- ...
| 360944 |
2017 | | - |
2018 | replacePercentN(&result, n); | - |
2019 | return result;executed 361264 times by 197 tests: return result; Executed by:- tst_Lancelot
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- ...
| 361264 |
2020 | } | - |
2021 | | - |
2022 | | - |
2023 | | - |
2024 | | - |
2025 | | - |
2026 | | - |
2027 | | - |
2028 | QString qtTrId(const char *id, int n) | - |
2029 | { | - |
2030 | return QCoreApplication::translate(0, id, 0, n); never executed: return QCoreApplication::translate(0, id, 0, n); | 0 |
2031 | } | - |
2032 | | - |
2033 | bool QCoreApplicationPrivate::isTranslatorInstalled(QTranslator *translator) | - |
2034 | { | - |
2035 | return QCoreApplication::selfexecuted 38 times by 5 tests: return QCoreApplication::self && QCoreApplication::self->d_func()->translators.contains(translator); Executed by:- tst_QKeySequence
- tst_QProgressDialog
- tst_QTranslator
- tst_languageChange
- tst_qkeysequence - unknown status
| 38 |
2036 | && QCoreApplication::self->d_func()->translators.contains(translator);executed 38 times by 5 tests: return QCoreApplication::self && QCoreApplication::self->d_func()->translators.contains(translator); Executed by:- tst_QKeySequence
- tst_QProgressDialog
- tst_QTranslator
- tst_languageChange
- tst_qkeysequence - unknown status
| 38 |
2037 | } | - |
2038 | | - |
2039 | #else | - |
2040 | | - |
2041 | QString QCoreApplication::translate(const char *context, const char *sourceText, | - |
2042 | const char *disambiguation, int n) | - |
2043 | { | - |
2044 | Q_UNUSED(context) | - |
2045 | Q_UNUSED(disambiguation) | - |
2046 | QString ret = QString::fromUtf8(sourceText); | - |
2047 | if (n >= 0) | - |
2048 | ret.replace(QLatin1String("%n"), QString::number(n)); | - |
2049 | return ret; | - |
2050 | } | - |
2051 | | - |
2052 | #endif //QT_NO_TRANSLATE | - |
2053 | | - |
2054 | | - |
2055 | | - |
2056 | | - |
2057 | | - |
2058 | | - |
2059 | | - |
2060 | void QCoreApplicationPrivate::setApplicationFilePath(const QString &path) | - |
2061 | { | - |
2062 | if (QCoreApplicationPrivate::cachedApplicationFilePath)TRUE | never evaluated | FALSE | evaluated 954 times by 23 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
|
| 0-954 |
2063 | *QCoreApplicationPrivate::cachedApplicationFilePath = path; never executed: *QCoreApplicationPrivate::cachedApplicationFilePath = path; | 0 |
2064 | else | - |
2065 | QCoreApplicationPrivate::cachedApplicationFilePath = new QString(path);executed 954 times by 23 tests: QCoreApplicationPrivate::cachedApplicationFilePath = new QString(path); Executed by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
| 954 |
2066 | } | - |
2067 | | - |
2068 | | - |
2069 | | - |
2070 | | - |
2071 | | - |
2072 | | - |
2073 | | - |
2074 | | - |
2075 | | - |
2076 | | - |
2077 | | - |
2078 | | - |
2079 | | - |
2080 | | - |
2081 | | - |
2082 | | - |
2083 | | - |
2084 | | - |
2085 | | - |
2086 | | - |
2087 | QString QCoreApplication::applicationDirPath() | - |
2088 | { | - |
2089 | if (!self) {TRUE | never evaluated | FALSE | evaluated 2346 times by 93 testsEvaluated by:- tst_Lancelot
- tst_QApplication
- tst_QByteArray
- tst_QClipboard
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDataStream
- tst_QDirIterator
- tst_QDnsLookup_Appless
- tst_QFactoryLoader
- tst_QFile
- tst_QFileInfo
- tst_QFileSelector
- tst_QFontDialog
- tst_QFrame
- tst_QFtp
- ...
|
| 0-2346 |
2090 | qWarning("QCoreApplication::applicationDirPath: Please instantiate the QApplication object first"); | - |
2091 | return QString(); never executed: return QString(); | 0 |
2092 | } | - |
2093 | | - |
2094 | QCoreApplicationPrivate *d = self->d_func(); | - |
2095 | if (d->cachedApplicationDirPath.isNull())TRUE | evaluated 952 times by 23 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
| FALSE | evaluated 1394 times by 74 testsEvaluated by:- tst_Lancelot
- tst_QApplication
- tst_QByteArray
- tst_QClipboard
- tst_QComboBox
- tst_QCryptographicHash
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDataStream
- tst_QDirIterator
- tst_QFactoryLoader
- tst_QFile
- tst_QFileInfo
- tst_QFileSelector
- tst_QFontDialog
- tst_QFrame
- tst_QFtp
- tst_QGlyphRun
- tst_QGraphicsScene
- tst_QIODevice
- tst_QIcoImageFormat
- tst_QImageReader
- tst_QImageWriter
- ...
|
| 952-1394 |
2096 | d->cachedApplicationDirPath = QFileInfo(applicationFilePath()).path();executed 952 times by 23 tests: d->cachedApplicationDirPath = QFileInfo(applicationFilePath()).path(); Executed by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
| 952 |
2097 | return d->cachedApplicationDirPath;executed 2346 times by 93 tests: return d->cachedApplicationDirPath; Executed by:- tst_Lancelot
- tst_QApplication
- tst_QByteArray
- tst_QClipboard
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDataStream
- tst_QDirIterator
- tst_QDnsLookup_Appless
- tst_QFactoryLoader
- tst_QFile
- tst_QFileInfo
- tst_QFileSelector
- tst_QFontDialog
- tst_QFrame
- tst_QFtp
- ...
| 2346 |
2098 | } | - |
2099 | | - |
2100 | | - |
2101 | | - |
2102 | | - |
2103 | | - |
2104 | | - |
2105 | | - |
2106 | | - |
2107 | | - |
2108 | | - |
2109 | | - |
2110 | | - |
2111 | | - |
2112 | | - |
2113 | | - |
2114 | | - |
2115 | QString QCoreApplication::applicationFilePath() | - |
2116 | { | - |
2117 | if (!self) {TRUE | never evaluated | FALSE | evaluated 1036 times by 52 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QFactoryLoader
- tst_QFile
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFtp
- tst_QGlobal
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QImage
- tst_QNetworkAccessManager
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- ...
|
| 0-1036 |
2118 | qWarning("QCoreApplication::applicationFilePath: Please instantiate the QApplication object first"); | - |
2119 | return QString(); never executed: return QString(); | 0 |
2120 | } | - |
2121 | | - |
2122 | QCoreApplicationPrivate *d = self->d_func(); | - |
2123 | | - |
2124 | if (d->argc) {TRUE | evaluated 954 times by 49 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnection_Delayed
- tst_QFactoryLoader
- tst_QFile
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFtp
- tst_QGlobal
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QImage
- tst_QNetworkAccessManager
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QPluginLoader
- tst_QSql
- ...
| FALSE | evaluated 82 times by 5 testsEvaluated by:- tst_QApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDnsLookup_Appless
- tst_QGuiApplication
|
| 82-954 |
2125 | static const char *procName = d->argv[0]; | - |
2126 | if (qstrcmp(procName, d->argv[0]) != 0) {TRUE | evaluated 5 times by 2 testsEvaluated by:- tst_QApplication
- tst_QGuiApplication
| FALSE | evaluated 949 times by 49 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnection_Delayed
- tst_QFactoryLoader
- tst_QFile
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFtp
- tst_QGlobal
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QImage
- tst_QNetworkAccessManager
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QPluginLoader
- tst_QSql
- ...
|
| 5-949 |
2127 | | - |
2128 | QCoreApplicationPrivate::clearApplicationFilePath(); | - |
2129 | procName = d->argv[0]; | - |
2130 | }executed 5 times by 2 tests: end of block Executed by:- tst_QApplication
- tst_QGuiApplication
| 5 |
2131 | }executed 954 times by 49 tests: end of block Executed by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnection_Delayed
- tst_QFactoryLoader
- tst_QFile
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFtp
- tst_QGlobal
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QImage
- tst_QNetworkAccessManager
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QPluginLoader
- tst_QSql
- ...
| 954 |
2132 | | - |
2133 | if (QCoreApplicationPrivate::cachedApplicationFilePath)TRUE | evaluated 82 times by 36 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QFactoryLoader
- tst_QFile
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFtp
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QImage
- tst_QNetworkAccessManager
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QPluginLoader
- tst_QSql
- tst_QSqlDatabase
- tst_QSqlDriver
- tst_QSqlQuery
- tst_QSqlRelationalTableModel
- ...
| FALSE | evaluated 954 times by 23 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
|
| 82-954 |
2134 | return *QCoreApplicationPrivate::cachedApplicationFilePath;executed 82 times by 36 tests: return *QCoreApplicationPrivate::cachedApplicationFilePath; Executed by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QFactoryLoader
- tst_QFile
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFtp
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QImage
- tst_QNetworkAccessManager
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QPluginLoader
- tst_QSql
- tst_QSqlDatabase
- tst_QSqlDriver
- tst_QSqlQuery
- tst_QSqlRelationalTableModel
- ...
| 82 |
2135 | | - |
2136 | #if defined(Q_OS_WIN) | - |
2137 | QCoreApplicationPrivate::setApplicationFilePath(QFileInfo(qAppFileName()).filePath()); | - |
2138 | return *QCoreApplicationPrivate::cachedApplicationFilePath; | - |
2139 | #elif defined(Q_OS_MAC) | - |
2140 | QString qAppFileName_str = qAppFileName(); | - |
2141 | if(!qAppFileName_str.isEmpty()) { | - |
2142 | QFileInfo fi(qAppFileName_str); | - |
2143 | if (fi.exists()) { | - |
2144 | QCoreApplicationPrivate::setApplicationFilePath(fi.canonicalFilePath()); | - |
2145 | return *QCoreApplicationPrivate::cachedApplicationFilePath; | - |
2146 | } | - |
2147 | } | - |
2148 | #endif | - |
2149 | #if defined( Q_OS_UNIX ) | - |
2150 | # if defined(Q_OS_LINUX) && !defined(Q_OS_ANDROID) | - |
2151 | | - |
2152 | | - |
2153 | QFileInfo pfi(QString::fromLatin1("/proc/%1/exe").arg(getpid())); | - |
2154 | if (pfi.exists() && pfi.isSymLink()) {TRUE | evaluated 954 times by 23 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
| FALSE | never evaluated |
TRUE | evaluated 954 times by 23 testsEvaluated by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
| FALSE | never evaluated |
| 0-954 |
2155 | QCoreApplicationPrivate::setApplicationFilePath(pfi.canonicalFilePath()); | - |
2156 | return *QCoreApplicationPrivate::cachedApplicationFilePath;executed 954 times by 23 tests: return *QCoreApplicationPrivate::cachedApplicationFilePath; Executed by:- tst_QApplication
- tst_QCommandLineParser
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDnsLookup_Appless
- tst_QGlobal
- tst_QGuiApplication
- tst_QNetworkConfigurationManager
- tst_QSql
- tst_qapplication - unknown status
- tst_qdbusabstractadaptor - unknown status
- tst_qdbusabstractinterface - unknown status
- tst_qdbusinterface - unknown status
- tst_qdbusmarshall - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qlogging - unknown status
- tst_qobject - unknown status
- tst_qprocess - unknown status
- tst_qsharedmemory - unknown status
- tst_qsystemsemaphore - unknown status
- tst_selftests - unknown status
| 954 |
2157 | } | - |
2158 | # endif | - |
2159 | if (!arguments().isEmpty()) {TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2160 | QString argv0 = QFile::decodeName(arguments().at(0).toLocal8Bit()); | - |
2161 | QString absPath; | - |
2162 | | - |
2163 | if (!argv0.isEmpty() && argv0.at(0) == QLatin1Char('/')) {TRUE | never evaluated | FALSE | never evaluated |
TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2164 | | - |
2165 | | - |
2166 | | - |
2167 | | - |
2168 | absPath = argv0; | - |
2169 | } else if (argv0.contains(QLatin1Char('/'))) { never executed: end of block TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2170 | | - |
2171 | | - |
2172 | | - |
2173 | | - |
2174 | absPath = QDir::current().absoluteFilePath(argv0); | - |
2175 | } else { never executed: end of block | 0 |
2176 | | - |
2177 | | - |
2178 | | - |
2179 | | - |
2180 | absPath = QStandardPaths::findExecutable(argv0); | - |
2181 | } never executed: end of block | 0 |
2182 | | - |
2183 | absPath = QDir::cleanPath(absPath); | - |
2184 | | - |
2185 | QFileInfo fi(absPath); | - |
2186 | if (fi.exists()) {TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2187 | QCoreApplicationPrivate::setApplicationFilePath(fi.canonicalFilePath()); | - |
2188 | return *QCoreApplicationPrivate::cachedApplicationFilePath; never executed: return *QCoreApplicationPrivate::cachedApplicationFilePath; | 0 |
2189 | } | - |
2190 | } never executed: end of block | 0 |
2191 | | - |
2192 | #endif | - |
2193 | return QString(); never executed: return QString(); | 0 |
2194 | } | - |
2195 | | - |
2196 | | - |
2197 | | - |
2198 | | - |
2199 | | - |
2200 | | - |
2201 | qint64 QCoreApplication::applicationPid() | - |
2202 | { | - |
2203 | #if defined(Q_OS_WIN) | - |
2204 | return GetCurrentProcessId(); | - |
2205 | #elif defined(Q_OS_VXWORKS) | - |
2206 | return (pid_t) taskIdCurrent; | - |
2207 | #else | - |
2208 | return getpid();executed 2773 times by 29 tests: return getpid(); Executed by:- tst_QAbstractNetworkCache
- tst_QColorDialog
- tst_QCoreApplication
- tst_QDBusMarshall
- tst_QDir
- tst_QFile
- tst_QFileDialog2
- tst_QFileInfo
- tst_QFileSystemModel
- tst_QFileSystemWatcher
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QGuiApplication
- tst_QIcon
- tst_QImageReader
- tst_QImageWriter
- tst_QLockFile
- tst_QMimeDatabase
- tst_QNetworkDiskCache
- tst_QNetworkReply
- tst_QPdfWriter
- tst_QPixmap
- tst_QSaveFile
- tst_QSettings
- tst_QStorageInfo
- ...
| 2773 |
2209 | #endif | - |
2210 | } | - |
2211 | | - |
2212 | | - |
2213 | | - |
2214 | | - |
2215 | | - |
2216 | | - |
2217 | | - |
2218 | | - |
2219 | | - |
2220 | | - |
2221 | | - |
2222 | | - |
2223 | | - |
2224 | | - |
2225 | | - |
2226 | | - |
2227 | | - |
2228 | | - |
2229 | | - |
2230 | | - |
2231 | | - |
2232 | | - |
2233 | | - |
2234 | | - |
2235 | | - |
2236 | | - |
2237 | | - |
2238 | | - |
2239 | | - |
2240 | | - |
2241 | | - |
2242 | | - |
2243 | QStringList QCoreApplication::arguments() | - |
2244 | { | - |
2245 | QStringList list; | - |
2246 | | - |
2247 | if (!self) {TRUE | never evaluated | FALSE | evaluated 462 times by 131 testsEvaluated by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- ...
|
| 0-462 |
2248 | qWarning("QCoreApplication::arguments: Please instantiate the QApplication object first"); | - |
2249 | return list; never executed: return list; | 0 |
2250 | } | - |
2251 | const int ac = self->d_func()->argc; | - |
2252 | char ** const av = self->d_func()->argv; | - |
2253 | list.reserve(ac); | - |
2254 | | - |
2255 | #if defined(Q_OS_WIN) && !defined(Q_OS_WINRT) | - |
2256 | | - |
2257 | | - |
2258 | | - |
2259 | | - |
2260 | QString cmdline = QString::fromWCharArray(GetCommandLine()); | - |
2261 | | - |
2262 | #if defined(Q_OS_WINCE) | - |
2263 | wchar_t tempFilename[MAX_PATH+1]; | - |
2264 | if (GetModuleFileName(0, tempFilename, MAX_PATH)) { | - |
2265 | tempFilename[MAX_PATH] = 0; | - |
2266 | cmdline.prepend(QLatin1Char('\"') + QString::fromWCharArray(tempFilename) + QLatin1String("\" ")); | - |
2267 | } | - |
2268 | #endif // Q_OS_WINCE | - |
2269 | | - |
2270 | const QCoreApplicationPrivate *d = self->d_func(); | - |
2271 | if (d->origArgv) { | - |
2272 | const QStringList allArguments = qWinCmdArgs(cmdline); | - |
2273 | Q_ASSERT(allArguments.size() == d->origArgc); | - |
2274 | for (int i = 0; i < d->origArgc; ++i) { | - |
2275 | if (contains(ac, av, d->origArgv[i])) | - |
2276 | list.append(allArguments.at(i)); | - |
2277 | } | - |
2278 | return list; | - |
2279 | } | - |
2280 | #endif // defined(Q_OS_WIN) && !defined(Q_OS_WINRT) | - |
2281 | | - |
2282 | for (int a = 0; a < ac; ++a) {TRUE | evaluated 856 times by 131 testsEvaluated by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- ...
| FALSE | evaluated 462 times by 131 testsEvaluated by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- ...
|
| 462-856 |
2283 | list << QString::fromLocal8Bit(av[a]); | - |
2284 | }executed 856 times by 131 tests: end of block Executed by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- ...
| 856 |
2285 | | - |
2286 | return list;executed 462 times by 131 tests: return list; Executed by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- ...
| 462 |
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 | void QCoreApplication::setOrganizationName(const QString &orgName) | - |
2314 | { | - |
2315 | if (coreappdata()->orgName == orgName)TRUE | evaluated 1 time by 1 test | FALSE | evaluated 7 times by 3 testsEvaluated by:- tst_QSettings
- tst_qdesktopservices
- tst_qstandardpaths
|
| 1-7 |
2316 | return;executed 1 time by 1 test: return; | 1 |
2317 | coreappdata()->orgName = orgName; | - |
2318 | #ifndef QT_NO_QOBJECT | - |
2319 | if (QCoreApplication::self)TRUE | evaluated 7 times by 3 testsEvaluated by:- tst_QSettings
- tst_qdesktopservices
- tst_qstandardpaths
| FALSE | never evaluated |
| 0-7 |
2320 | emit QCoreApplication::self->organizationNameChanged();executed 7 times by 3 tests: QCoreApplication::self->organizationNameChanged(); Executed by:- tst_QSettings
- tst_qdesktopservices
- tst_qstandardpaths
| 7 |
2321 | #endif | - |
2322 | }executed 7 times by 3 tests: end of block Executed by:- tst_QSettings
- tst_qdesktopservices
- tst_qstandardpaths
| 7 |
2323 | | - |
2324 | QString QCoreApplication::organizationName() | - |
2325 | { | - |
2326 | return coreappdata()->orgName;executed 46 times by 3 tests: return coreappdata()->orgName; Executed by:- tst_QSettings
- tst_qdesktopservices
- tst_qstandardpaths
| 46 |
2327 | } | - |
2328 | | - |
2329 | | - |
2330 | | - |
2331 | | - |
2332 | | - |
2333 | | - |
2334 | | - |
2335 | | - |
2336 | | - |
2337 | | - |
2338 | | - |
2339 | | - |
2340 | | - |
2341 | | - |
2342 | | - |
2343 | | - |
2344 | | - |
2345 | | - |
2346 | | - |
2347 | | - |
2348 | | - |
2349 | | - |
2350 | void QCoreApplication::setOrganizationDomain(const QString &orgDomain) | - |
2351 | { | - |
2352 | if (coreappdata()->orgDomain == orgDomain)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2353 | return; never executed: return; | 0 |
2354 | coreappdata()->orgDomain = orgDomain; | - |
2355 | #ifndef QT_NO_QOBJECT | - |
2356 | if (QCoreApplication::self)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2357 | emit QCoreApplication::self->organizationDomainChanged(); never executed: QCoreApplication::self->organizationDomainChanged(); | 0 |
2358 | #endif | - |
2359 | } never executed: end of block | 0 |
2360 | | - |
2361 | QString QCoreApplication::organizationDomain() | - |
2362 | { | - |
2363 | return coreappdata()->orgDomain;executed 8 times by 3 tests: return coreappdata()->orgDomain; Executed by:- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- tst_QSettings
| 8 |
2364 | } | - |
2365 | | - |
2366 | | - |
2367 | | - |
2368 | | - |
2369 | | - |
2370 | | - |
2371 | | - |
2372 | | - |
2373 | | - |
2374 | | - |
2375 | | - |
2376 | | - |
2377 | | - |
2378 | | - |
2379 | | - |
2380 | | - |
2381 | | - |
2382 | | - |
2383 | | - |
2384 | void QCoreApplication::setApplicationName(const QString &application) | - |
2385 | { | - |
2386 | coreappdata()->applicationNameSet = !application.isEmpty(); | - |
2387 | QString newAppName = application; | - |
2388 | if (newAppName.isEmpty() && QCoreApplication::self)TRUE | evaluated 10 times by 5 testsEvaluated by:- tst_QCoreApplication
- tst_QGuiApplication
- tst_QSettings
- tst_QWidget_window
- tst_qstandardpaths
| FALSE | evaluated 147 times by 11 testsEvaluated by:- tst_QAccessibility
- tst_QCoreApplication
- tst_QGuiApplication
- tst_QSettings
- tst_QTemporaryDir
- tst_QTemporaryFile
- tst_QWidget_window
- tst_qdbusxml2cpp - unknown status
- tst_qdesktopservices
- tst_qlogging - unknown status
- tst_qstandardpaths
|
TRUE | evaluated 8 times by 3 testsEvaluated by:- tst_QSettings
- tst_QWidget_window
- tst_qstandardpaths
| FALSE | evaluated 2 times by 2 testsEvaluated by:- tst_QCoreApplication
- tst_QGuiApplication
|
| 2-147 |
2389 | newAppName = QCoreApplication::self->d_func()->appName();executed 8 times by 3 tests: newAppName = QCoreApplication::self->d_func()->appName(); Executed by:- tst_QSettings
- tst_QWidget_window
- tst_qstandardpaths
| 8 |
2390 | if (coreappdata()->application == newAppName)TRUE | evaluated 130 times by 5 testsEvaluated by:- tst_QSettings
- tst_QTemporaryDir
- tst_QTemporaryFile
- tst_QWidget_window
- tst_qdbusxml2cpp - unknown status
| FALSE | evaluated 27 times by 8 testsEvaluated by:- tst_QAccessibility
- tst_QCoreApplication
- tst_QGuiApplication
- tst_QSettings
- tst_QWidget_window
- tst_qdesktopservices
- tst_qlogging - unknown status
- tst_qstandardpaths
|
| 27-130 |
2391 | return;executed 130 times by 5 tests: return; Executed by:- tst_QSettings
- tst_QTemporaryDir
- tst_QTemporaryFile
- tst_QWidget_window
- tst_qdbusxml2cpp - unknown status
| 130 |
2392 | coreappdata()->application = newAppName; | - |
2393 | #ifndef QT_NO_QOBJECT | - |
2394 | if (QCoreApplication::self)TRUE | evaluated 23 times by 6 testsEvaluated by:- tst_QAccessibility
- tst_QSettings
- tst_QWidget_window
- tst_qdesktopservices
- tst_qlogging - unknown status
- tst_qstandardpaths
| FALSE | evaluated 4 times by 2 testsEvaluated by:- tst_QCoreApplication
- tst_QGuiApplication
|
| 4-23 |
2395 | emit QCoreApplication::self->applicationNameChanged();executed 23 times by 6 tests: QCoreApplication::self->applicationNameChanged(); Executed by:- tst_QAccessibility
- tst_QSettings
- tst_QWidget_window
- tst_qdesktopservices
- tst_qlogging - unknown status
- tst_qstandardpaths
| 23 |
2396 | #endif | - |
2397 | }executed 27 times by 8 tests: end of block Executed by:- tst_QAccessibility
- tst_QCoreApplication
- tst_QGuiApplication
- tst_QSettings
- tst_QWidget_window
- tst_qdesktopservices
- tst_qlogging - unknown status
- tst_qstandardpaths
| 27 |
2398 | | - |
2399 | QString QCoreApplication::applicationName() | - |
2400 | { | - |
2401 | return coreappdata() ? coreappdata()->application : QString();executed 9967 times by 157 tests: return coreappdata() ? coreappdata()->application : QString(); Executed by:- tst_Gestures
- tst_LargeFile
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusConnection
- tst_QDBusConnection_SpyHook
- ...
| 9967 |
2402 | } | - |
2403 | | - |
2404 | | - |
2405 | Q_CORE_EXPORT QString qt_applicationName_noFallback() | - |
2406 | { | - |
2407 | return coreappdata()->applicationNameSet ? coreappdata()->application : QString();executed 2 times by 1 test: return coreappdata()->applicationNameSet ? coreappdata()->application : QString(); | 2 |
2408 | } | - |
2409 | | - |
2410 | | - |
2411 | | - |
2412 | | - |
2413 | | - |
2414 | | - |
2415 | | - |
2416 | | - |
2417 | | - |
2418 | | - |
2419 | | - |
2420 | | - |
2421 | | - |
2422 | | - |
2423 | void QCoreApplication::setApplicationVersion(const QString &version) | - |
2424 | { | - |
2425 | if (coreappdata()->applicationVersion == version)TRUE | never evaluated | FALSE | evaluated 124 times by 3 testsEvaluated by:- tst_QCoreApplication
- tst_QGuiApplication
- tst_qdbusxml2cpp - unknown status
|
| 0-124 |
2426 | return; never executed: return; | 0 |
2427 | coreappdata()->applicationVersion = version; | - |
2428 | #ifndef QT_NO_QOBJECT | - |
2429 | if (QCoreApplication::self)TRUE | evaluated 120 times by 1 testEvaluated by:- tst_qdbusxml2cpp - unknown status
| FALSE | evaluated 4 times by 2 testsEvaluated by:- tst_QCoreApplication
- tst_QGuiApplication
|
| 4-120 |
2430 | emit QCoreApplication::self->applicationVersionChanged();executed 120 times by 1 test: QCoreApplication::self->applicationVersionChanged(); Executed by:- tst_qdbusxml2cpp - unknown status
| 120 |
2431 | #endif | - |
2432 | }executed 124 times by 3 tests: end of block Executed by:- tst_QCoreApplication
- tst_QGuiApplication
- tst_qdbusxml2cpp - unknown status
| 124 |
2433 | | - |
2434 | QString QCoreApplication::applicationVersion() | - |
2435 | { | - |
2436 | return coreappdata()->applicationVersion;executed 8 times by 2 tests: return coreappdata()->applicationVersion; Executed by:- tst_QCoreApplication
- tst_QGuiApplication
| 8 |
2437 | } | - |
2438 | | - |
2439 | #ifndef QT_NO_LIBRARY | - |
2440 | | - |
2441 | Q_GLOBAL_STATIC_WITH_ARGS(QMutex, libraryPathMutex, (QMutex::Recursive))executed 273 times by 247 tests: end of block Executed by:- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractproxymodel - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qapplication - unknown status
- tst_qbackingstore - unknown status
- tst_qboxlayout - unknown status
- tst_qbrush - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- tst_qcheckbox - unknown status
- tst_qclipboard - unknown status
- ...
executed 273 times by 247 tests: guard.store(QtGlobalStatic::Destroyed); Executed by:- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractproxymodel - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qapplication - unknown status
- tst_qbackingstore - unknown status
- tst_qboxlayout - unknown status
- tst_qbrush - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- tst_qcheckbox - unknown status
- tst_qclipboard - unknown status
- ...
executed 502 times by 147 tests: return &holder.value; Executed by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDockWidget
- tst_QDoubleSpinBox
- ...
TRUE | evaluated 273 times by 247 testsEvaluated by:- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractproxymodel - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qapplication - unknown status
- tst_qbackingstore - unknown status
- tst_qboxlayout - unknown status
- tst_qbrush - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- tst_qcheckbox - unknown status
- tst_qclipboard - unknown status
- ...
| FALSE | never evaluated |
| 0-502 |
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 | QStringList QCoreApplication::libraryPaths() | - |
2478 | { | - |
2479 | QMutexLocker locker(libraryPathMutex()); | - |
2480 | | - |
2481 | if (coreappdata()->manual_libpaths)TRUE | evaluated 52 times by 5 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QFactoryLoader
- tst_QGuiApplication
- tst_QPluginLoader
| FALSE | evaluated 434 times by 147 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDockWidget
- tst_QDoubleSpinBox
- ...
|
| 52-434 |
2482 | return *(coreappdata()->manual_libpaths);executed 52 times by 5 tests: return *(coreappdata()->manual_libpaths); Executed by:- tst_QApplication
- tst_QCoreApplication
- tst_QFactoryLoader
- tst_QGuiApplication
- tst_QPluginLoader
| 52 |
2483 | | - |
2484 | if (!coreappdata()->app_libpaths) {TRUE | evaluated 78 times by 30 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QCoreApplication
- tst_QFactoryLoader
- tst_QFtp
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QImage
- tst_QNetworkAccessManager
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QPluginLoader
- tst_QSql
- tst_QSqlDatabase
- tst_QSqlDriver
- tst_QSqlQuery
- tst_QSqlRelationalTableModel
- tst_QSqlThread
- tst_QTcpServer
- tst_QUdpSocket
- ...
| FALSE | evaluated 356 times by 125 testsEvaluated by:- tst_Gestures
- tst_QAbstractItemView
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QErrorMessage
- tst_QFileDialog2
- ...
|
| 78-356 |
2485 | QStringList *app_libpaths = new QStringList; | - |
2486 | coreappdata()->app_libpaths.reset(app_libpaths); | - |
2487 | | - |
2488 | const QByteArray libPathEnv = qgetenv("QT_PLUGIN_PATH"); | - |
2489 | if (!libPathEnv.isEmpty()) {TRUE | evaluated 50 times by 28 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QCoreApplication
- tst_QFactoryLoader
- tst_QFtp
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QImage
- tst_QNetworkAccessManager
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QPluginLoader
- tst_QSql
- tst_QSqlDatabase
- tst_QSqlDriver
- tst_QSqlQuery
- tst_QSqlRelationalTableModel
- tst_QSqlThread
- tst_QTcpServer
- tst_QUdpSocket
- ...
| FALSE | evaluated 28 times by 3 testsEvaluated by:- tst_QApplication
- tst_qapplication - unknown status
- tst_selftests - unknown status
|
| 28-50 |
2490 | QStringList paths = QFile::decodeName(libPathEnv).split(QDir::listSeparator(), QString::SkipEmptyParts); | - |
2491 | for (QStringList::const_iterator it = paths.constBegin(); it != paths.constEnd(); ++it) {TRUE | evaluated 52 times by 28 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QCoreApplication
- tst_QFactoryLoader
- tst_QFtp
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QImage
- tst_QNetworkAccessManager
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QPluginLoader
- tst_QSql
- tst_QSqlDatabase
- tst_QSqlDriver
- tst_QSqlQuery
- tst_QSqlRelationalTableModel
- tst_QSqlThread
- tst_QTcpServer
- tst_QUdpSocket
- ...
| FALSE | evaluated 50 times by 28 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QCoreApplication
- tst_QFactoryLoader
- tst_QFtp
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QImage
- tst_QNetworkAccessManager
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QPluginLoader
- tst_QSql
- tst_QSqlDatabase
- tst_QSqlDriver
- tst_QSqlQuery
- tst_QSqlRelationalTableModel
- tst_QSqlThread
- tst_QTcpServer
- tst_QUdpSocket
- ...
|
| 50-52 |
2492 | QString canonicalPath = QDir(*it).canonicalPath(); | - |
2493 | if (!canonicalPath.isEmpty()TRUE | evaluated 50 times by 28 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QCoreApplication
- tst_QFactoryLoader
- tst_QFtp
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QImage
- tst_QNetworkAccessManager
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QPluginLoader
- tst_QSql
- tst_QSqlDatabase
- tst_QSqlDriver
- tst_QSqlQuery
- tst_QSqlRelationalTableModel
- tst_QSqlThread
- tst_QTcpServer
- tst_QUdpSocket
- ...
| FALSE | evaluated 2 times by 1 test |
| 2-50 |
2494 | && !app_libpaths->contains(canonicalPath)) {TRUE | evaluated 50 times by 28 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QCoreApplication
- tst_QFactoryLoader
- tst_QFtp
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QImage
- tst_QNetworkAccessManager
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QPluginLoader
- tst_QSql
- tst_QSqlDatabase
- tst_QSqlDriver
- tst_QSqlQuery
- tst_QSqlRelationalTableModel
- tst_QSqlThread
- tst_QTcpServer
- tst_QUdpSocket
- ...
| FALSE | never evaluated |
| 0-50 |
2495 | app_libpaths->append(canonicalPath); | - |
2496 | }executed 50 times by 28 tests: end of block Executed by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QCoreApplication
- tst_QFactoryLoader
- tst_QFtp
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QImage
- tst_QNetworkAccessManager
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QPluginLoader
- tst_QSql
- tst_QSqlDatabase
- tst_QSqlDriver
- tst_QSqlQuery
- tst_QSqlRelationalTableModel
- tst_QSqlThread
- tst_QTcpServer
- tst_QUdpSocket
- ...
| 50 |
2497 | }executed 52 times by 28 tests: end of block Executed by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QCoreApplication
- tst_QFactoryLoader
- tst_QFtp
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QImage
- tst_QNetworkAccessManager
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QPluginLoader
- tst_QSql
- tst_QSqlDatabase
- tst_QSqlDriver
- tst_QSqlQuery
- tst_QSqlRelationalTableModel
- tst_QSqlThread
- tst_QTcpServer
- tst_QUdpSocket
- ...
| 52 |
2498 | }executed 50 times by 28 tests: end of block Executed by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QCoreApplication
- tst_QFactoryLoader
- tst_QFtp
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QImage
- tst_QNetworkAccessManager
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QPluginLoader
- tst_QSql
- tst_QSqlDatabase
- tst_QSqlDriver
- tst_QSqlQuery
- tst_QSqlRelationalTableModel
- tst_QSqlThread
- tst_QTcpServer
- tst_QUdpSocket
- ...
| 50 |
2499 | | - |
2500 | QString installPathPlugins = QLibraryInfo::location(QLibraryInfo::PluginsPath); | - |
2501 | if (QFile::exists(installPathPlugins)) {TRUE | evaluated 78 times by 30 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QCoreApplication
- tst_QFactoryLoader
- tst_QFtp
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QImage
- tst_QNetworkAccessManager
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QPluginLoader
- tst_QSql
- tst_QSqlDatabase
- tst_QSqlDriver
- tst_QSqlQuery
- tst_QSqlRelationalTableModel
- tst_QSqlThread
- tst_QTcpServer
- tst_QUdpSocket
- ...
| FALSE | never evaluated |
| 0-78 |
2502 | | - |
2503 | installPathPlugins = QDir(installPathPlugins).canonicalPath(); | - |
2504 | if (!app_libpaths->contains(installPathPlugins))TRUE | evaluated 31 times by 3 testsEvaluated by:- tst_QApplication
- tst_qapplication - unknown status
- tst_selftests - unknown status
| FALSE | evaluated 47 times by 28 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QCoreApplication
- tst_QFactoryLoader
- tst_QFtp
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QImage
- tst_QNetworkAccessManager
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QPluginLoader
- tst_QSql
- tst_QSqlDatabase
- tst_QSqlDriver
- tst_QSqlQuery
- tst_QSqlRelationalTableModel
- tst_QSqlThread
- tst_QTcpServer
- tst_QUdpSocket
- ...
|
| 31-47 |
2505 | app_libpaths->append(installPathPlugins);executed 31 times by 3 tests: app_libpaths->append(installPathPlugins); Executed by:- tst_QApplication
- tst_qapplication - unknown status
- tst_selftests - unknown status
| 31 |
2506 | }executed 78 times by 30 tests: end of block Executed by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QCoreApplication
- tst_QFactoryLoader
- tst_QFtp
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QImage
- tst_QNetworkAccessManager
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QPluginLoader
- tst_QSql
- tst_QSqlDatabase
- tst_QSqlDriver
- tst_QSqlQuery
- tst_QSqlRelationalTableModel
- tst_QSqlThread
- tst_QTcpServer
- tst_QUdpSocket
- ...
| 78 |
2507 | | - |
2508 | | - |
2509 | | - |
2510 | if (self) self->d_func()->appendApplicationPathToLibraryPaths();executed 74 times by 30 tests: self->d_func()->appendApplicationPathToLibraryPaths(); Executed by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QCoreApplication
- tst_QFactoryLoader
- tst_QFtp
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QImage
- tst_QNetworkAccessManager
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QPluginLoader
- tst_QSql
- tst_QSqlDatabase
- tst_QSqlDriver
- tst_QSqlQuery
- tst_QSqlRelationalTableModel
- tst_QSqlThread
- tst_QTcpServer
- tst_QUdpSocket
- ...
TRUE | evaluated 74 times by 30 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QCoreApplication
- tst_QFactoryLoader
- tst_QFtp
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QImage
- tst_QNetworkAccessManager
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QPluginLoader
- tst_QSql
- tst_QSqlDatabase
- tst_QSqlDriver
- tst_QSqlQuery
- tst_QSqlRelationalTableModel
- tst_QSqlThread
- tst_QTcpServer
- tst_QUdpSocket
- ...
| FALSE | evaluated 4 times by 3 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
|
| 4-74 |
2511 | }executed 78 times by 30 tests: end of block Executed by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QCoreApplication
- tst_QFactoryLoader
- tst_QFtp
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QImage
- tst_QNetworkAccessManager
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- tst_QNetworkProxyFactory
- tst_QPluginLoader
- tst_QSql
- tst_QSqlDatabase
- tst_QSqlDriver
- tst_QSqlQuery
- tst_QSqlRelationalTableModel
- tst_QSqlThread
- tst_QTcpServer
- tst_QUdpSocket
- ...
| 78 |
2512 | return *(coreappdata()->app_libpaths);executed 434 times by 147 tests: return *(coreappdata()->app_libpaths); Executed by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDockWidget
- tst_QDoubleSpinBox
- ...
| 434 |
2513 | } | - |
2514 | | - |
2515 | | - |
2516 | | - |
2517 | | - |
2518 | | - |
2519 | | - |
2520 | | - |
2521 | | - |
2522 | | - |
2523 | | - |
2524 | | - |
2525 | | - |
2526 | | - |
2527 | | - |
2528 | void QCoreApplication::setLibraryPaths(const QStringList &paths) | - |
2529 | { | - |
2530 | QMutexLocker locker(libraryPathMutex()); | - |
2531 | | - |
2532 | | - |
2533 | | - |
2534 | | - |
2535 | if (!coreappdata()->app_libpaths)TRUE | evaluated 2 times by 2 testsEvaluated by:- tst_QApplication
- tst_QFactoryLoader
| FALSE | evaluated 3 times by 3 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
|
| 2-3 |
2536 | libraryPaths();executed 2 times by 2 tests: libraryPaths(); Executed by:- tst_QApplication
- tst_QFactoryLoader
| 2 |
2537 | | - |
2538 | if (coreappdata()->manual_libpaths)TRUE | evaluated 2 times by 2 testsEvaluated by:- tst_QCoreApplication
- tst_QGuiApplication
| FALSE | evaluated 3 times by 2 testsEvaluated by:- tst_QApplication
- tst_QFactoryLoader
|
| 2-3 |
2539 | *(coreappdata()->manual_libpaths) = paths;executed 2 times by 2 tests: *(coreappdata()->manual_libpaths) = paths; Executed by:- tst_QCoreApplication
- tst_QGuiApplication
| 2 |
2540 | else | - |
2541 | coreappdata()->manual_libpaths.reset(new QStringList(paths));executed 3 times by 2 tests: coreappdata()->manual_libpaths.reset(new QStringList(paths)); Executed by:- tst_QApplication
- tst_QFactoryLoader
| 3 |
2542 | | - |
2543 | locker.unlock(); | - |
2544 | QFactoryLoader::refreshAll(); | - |
2545 | }executed 5 times by 4 tests: end of block Executed by:- tst_QApplication
- tst_QCoreApplication
- tst_QFactoryLoader
- tst_QGuiApplication
| 5 |
2546 | | - |
2547 | | - |
2548 | | - |
2549 | | - |
2550 | | - |
2551 | | - |
2552 | | - |
2553 | | - |
2554 | | - |
2555 | | - |
2556 | | - |
2557 | | - |
2558 | | - |
2559 | | - |
2560 | | - |
2561 | | - |
2562 | void QCoreApplication::addLibraryPath(const QString &path) | - |
2563 | { | - |
2564 | if (path.isEmpty())TRUE | never evaluated | FALSE | evaluated 9 times by 4 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
- tst_QPluginLoader
|
| 0-9 |
2565 | return; never executed: return; | 0 |
2566 | | - |
2567 | QString canonicalPath = QDir(path).canonicalPath(); | - |
2568 | if (canonicalPath.isEmpty())TRUE | never evaluated | FALSE | evaluated 9 times by 4 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
- tst_QPluginLoader
|
| 0-9 |
2569 | return; never executed: return; | 0 |
2570 | | - |
2571 | QMutexLocker locker(libraryPathMutex()); | - |
2572 | | - |
2573 | QStringList *libpaths = coreappdata()->manual_libpaths.data(); | - |
2574 | if (libpaths) {TRUE | evaluated 1 time by 1 test | FALSE | evaluated 8 times by 4 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
- tst_QPluginLoader
|
| 1-8 |
2575 | if (libpaths->contains(canonicalPath))TRUE | evaluated 1 time by 1 test | FALSE | never evaluated |
| 0-1 |
2576 | return;executed 1 time by 1 test: return; | 1 |
2577 | } else { never executed: end of block | 0 |
2578 | | - |
2579 | libraryPaths(); | - |
2580 | QStringList *app_libpaths = coreappdata()->app_libpaths.data(); | - |
2581 | if (app_libpaths->contains(canonicalPath))TRUE | evaluated 3 times by 1 test | FALSE | evaluated 5 times by 4 testsEvaluated by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
- tst_QPluginLoader
|
| 3-5 |
2582 | return;executed 3 times by 1 test: return; | 3 |
2583 | | - |
2584 | coreappdata()->manual_libpaths.reset(libpaths = new QStringList(*app_libpaths)); | - |
2585 | }executed 5 times by 4 tests: end of block Executed by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
- tst_QPluginLoader
| 5 |
2586 | | - |
2587 | libpaths->prepend(canonicalPath); | - |
2588 | locker.unlock(); | - |
2589 | QFactoryLoader::refreshAll(); | - |
2590 | }executed 5 times by 4 tests: end of block Executed by:- tst_QApplication
- tst_QCoreApplication
- tst_QGuiApplication
- tst_QPluginLoader
| 5 |
2591 | | - |
2592 | | - |
2593 | | - |
2594 | | - |
2595 | | - |
2596 | | - |
2597 | | - |
2598 | | - |
2599 | | - |
2600 | | - |
2601 | void QCoreApplication::removeLibraryPath(const QString &path) | - |
2602 | { | - |
2603 | if (path.isEmpty())TRUE | never evaluated | FALSE | evaluated 2 times by 2 testsEvaluated by:- tst_QCoreApplication
- tst_QGuiApplication
|
| 0-2 |
2604 | return; never executed: return; | 0 |
2605 | | - |
2606 | QString canonicalPath = QDir(path).canonicalPath(); | - |
2607 | if (canonicalPath.isEmpty())TRUE | never evaluated | FALSE | evaluated 2 times by 2 testsEvaluated by:- tst_QCoreApplication
- tst_QGuiApplication
|
| 0-2 |
2608 | return; never executed: return; | 0 |
2609 | | - |
2610 | QMutexLocker locker(libraryPathMutex()); | - |
2611 | | - |
2612 | QStringList *libpaths = coreappdata()->manual_libpaths.data(); | - |
2613 | if (libpaths) {TRUE | evaluated 2 times by 2 testsEvaluated by:- tst_QCoreApplication
- tst_QGuiApplication
| FALSE | never evaluated |
| 0-2 |
2614 | if (libpaths->removeAll(canonicalPath) == 0)TRUE | never evaluated | FALSE | evaluated 2 times by 2 testsEvaluated by:- tst_QCoreApplication
- tst_QGuiApplication
|
| 0-2 |
2615 | return; never executed: return; | 0 |
2616 | } else {executed 2 times by 2 tests: end of block Executed by:- tst_QCoreApplication
- tst_QGuiApplication
| 2 |
2617 | | - |
2618 | libraryPaths(); | - |
2619 | QStringList *app_libpaths = coreappdata()->app_libpaths.data(); | - |
2620 | if (!app_libpaths->contains(canonicalPath))TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2621 | return; never executed: return; | 0 |
2622 | | - |
2623 | coreappdata()->manual_libpaths.reset(libpaths = new QStringList(*app_libpaths)); | - |
2624 | libpaths->removeAll(canonicalPath); | - |
2625 | } never executed: end of block | 0 |
2626 | | - |
2627 | locker.unlock(); | - |
2628 | QFactoryLoader::refreshAll(); | - |
2629 | }executed 2 times by 2 tests: end of block Executed by:- tst_QCoreApplication
- tst_QGuiApplication
| 2 |
2630 | | - |
2631 | #endif //QT_NO_LIBRARY | - |
2632 | | - |
2633 | #ifndef QT_NO_QOBJECT | - |
2634 | | - |
2635 | | - |
2636 | | - |
2637 | | - |
2638 | | - |
2639 | | - |
2640 | | - |
2641 | | - |
2642 | | - |
2643 | | - |
2644 | | - |
2645 | | - |
2646 | | - |
2647 | | - |
2648 | | - |
2649 | | - |
2650 | | - |
2651 | | - |
2652 | | - |
2653 | | - |
2654 | | - |
2655 | | - |
2656 | | - |
2657 | | - |
2658 | | - |
2659 | | - |
2660 | | - |
2661 | | - |
2662 | | - |
2663 | | - |
2664 | void QCoreApplication::installNativeEventFilter(QAbstractNativeEventFilter *filterObj) | - |
2665 | { | - |
2666 | if (QCoreApplication::testAttribute(Qt::AA_PluginApplication)) {TRUE | never evaluated | FALSE | evaluated 1 time by 1 test |
| 0-1 |
2667 | qWarning("Native event filters are not applied when the Qt::AA_PluginApplication attribute is set"); | - |
2668 | return; never executed: return; | 0 |
2669 | } | - |
2670 | | - |
2671 | QAbstractEventDispatcher *eventDispatcher = QAbstractEventDispatcher::instance(QCoreApplicationPrivate::theMainThread); | - |
2672 | if (!filterObj || !eventDispatcher)TRUE | never evaluated | FALSE | evaluated 1 time by 1 test |
TRUE | never evaluated | FALSE | evaluated 1 time by 1 test |
| 0-1 |
2673 | return; never executed: return; | 0 |
2674 | eventDispatcher->installNativeEventFilter(filterObj); | - |
2675 | }executed 1 time by 1 test: end of block | 1 |
2676 | | - |
2677 | | - |
2678 | | - |
2679 | | - |
2680 | | - |
2681 | | - |
2682 | | - |
2683 | | - |
2684 | | - |
2685 | | - |
2686 | | - |
2687 | | - |
2688 | | - |
2689 | | - |
2690 | void QCoreApplication::removeNativeEventFilter(QAbstractNativeEventFilter *filterObject) | - |
2691 | { | - |
2692 | QAbstractEventDispatcher *eventDispatcher = QAbstractEventDispatcher::instance(); | - |
2693 | if (!filterObject || !eventDispatcher)TRUE | never evaluated | FALSE | never evaluated |
TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2694 | return; never executed: return; | 0 |
2695 | eventDispatcher->removeNativeEventFilter(filterObject); | - |
2696 | } never executed: end of block | 0 |
2697 | | - |
2698 | | - |
2699 | | - |
2700 | | - |
2701 | | - |
2702 | | - |
2703 | | - |
2704 | | - |
2705 | | - |
2706 | | - |
2707 | | - |
2708 | | - |
2709 | | - |
2710 | | - |
2711 | #if QT_DEPRECATED_SINCE(5, 3) | - |
2712 | bool QCoreApplication::hasPendingEvents() | - |
2713 | { | - |
2714 | QAbstractEventDispatcher *eventDispatcher = QAbstractEventDispatcher::instance(); | - |
2715 | if (eventDispatcher)TRUE | never evaluated | FALSE | never evaluated |
| 0 |
2716 | return eventDispatcher->hasPendingEvents(); never executed: return eventDispatcher->hasPendingEvents(); | 0 |
2717 | return false; never executed: return false; | 0 |
2718 | } | - |
2719 | #endif | - |
2720 | | - |
2721 | | - |
2722 | | - |
2723 | | - |
2724 | | - |
2725 | QAbstractEventDispatcher *QCoreApplication::eventDispatcher() | - |
2726 | { | - |
2727 | if (QCoreApplicationPrivate::theMainThread)TRUE | evaluated 190 times by 131 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_QCoreApplication
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDial
- ...
| FALSE | never evaluated |
| 0-190 |
2728 | return QCoreApplicationPrivate::theMainThread.load()->eventDispatcher();executed 190 times by 131 tests: return QCoreApplicationPrivate::theMainThread.load()->eventDispatcher(); 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_QCoreApplication
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDesktopWidget
- tst_QDial
- ...
| 190 |
2729 | return 0; never executed: return 0; | 0 |
2730 | } | - |
2731 | | - |
2732 | | - |
2733 | | - |
2734 | | - |
2735 | | - |
2736 | | - |
2737 | | - |
2738 | void QCoreApplication::setEventDispatcher(QAbstractEventDispatcher *eventDispatcher) | - |
2739 | { | - |
2740 | QThread *mainThread = QCoreApplicationPrivate::theMainThread; | - |
2741 | if (!mainThread)TRUE | never evaluated | FALSE | evaluated 2 times by 2 testsEvaluated by:- tst_QCoreApplication
- tst_QGuiApplication
|
| 0-2 |
2742 | mainThread = QThread::currentThread(); never executed: mainThread = QThread::currentThread(); | 0 |
2743 | mainThread->setEventDispatcher(eventDispatcher); | - |
2744 | }executed 2 times by 2 tests: end of block Executed by:- tst_QCoreApplication
- tst_QGuiApplication
| 2 |
2745 | | - |
2746 | #endif // QT_NO_QOBJECT | - |
2747 | | - |
2748 | | - |
2749 | | - |
2750 | | - |
2751 | | - |
2752 | | - |
2753 | | - |
2754 | | - |
2755 | | - |
2756 | | - |
2757 | | - |
2758 | | - |
2759 | | - |
2760 | | - |
2761 | | - |
2762 | | - |
2763 | | - |
2764 | | - |
2765 | | - |
2766 | | - |
2767 | | - |
2768 | | - |
2769 | | - |
2770 | | - |
2771 | | - |
2772 | | - |
2773 | | - |
2774 | | - |
2775 | | - |
2776 | | - |
2777 | | - |
2778 | | - |
2779 | | - |
2780 | | - |
2781 | | - |
2782 | | - |
2783 | | - |
2784 | | - |
2785 | | - |
2786 | | - |
2787 | | - |
2788 | | - |
2789 | | - |
2790 | | - |
2791 | | - |
2792 | | - |
2793 | | - |
2794 | | - |
2795 | | - |
2796 | | - |
2797 | | - |
2798 | | - |
2799 | | - |
2800 | | - |
2801 | | - |
2802 | | - |
2803 | | - |
2804 | | - |
2805 | | - |
2806 | | - |
2807 | | - |
2808 | | - |
2809 | | - |
2810 | | - |
2811 | | - |
2812 | | - |
2813 | | - |
2814 | | - |
2815 | | - |
2816 | | - |
2817 | | - |
2818 | | - |
2819 | | - |
2820 | | - |
2821 | | - |
2822 | | - |
2823 | | - |
2824 | | - |
2825 | | - |
2826 | | - |
2827 | | - |
2828 | | - |
2829 | | - |
2830 | | - |
2831 | | - |
2832 | | - |
2833 | | - |
2834 | | - |
2835 | | - |
2836 | | - |
2837 | | - |
2838 | | - |
2839 | | - |
2840 | | - |
2841 | | - |
2842 | | - |
2843 | | - |
2844 | | - |
2845 | | - |
2846 | | - |
2847 | | - |
2848 | QT_END_NAMESPACE | - |
| | |