| Line | Source | Count |
| 1 | | - |
| 2 | | - |
| 3 | | - |
| 4 | | - |
| 5 | | - |
| 6 | | - |
| 7 | | - |
| 8 | | - |
| 9 | | - |
| 10 | | - |
| 11 | | - |
| 12 | | - |
| 13 | | - |
| 14 | | - |
| 15 | | - |
| 16 | | - |
| 17 | static inline bool hasFastCrc32() | - |
| 18 | { | - |
| 19 | returnexecuted 2537828 times by 478 tests: return ((qCompilerCpuFeatures & (static_cast<unsigned long long>(1ULL) << CpuFeatureSSE4_2)) || (qCpuFeatures() & (static_cast<unsigned long long>(1ULL) << CpuFeatureSSE4_2)));Executed by:- tst_Collections
- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- ...
((qCompilerCpuFeatures & (static_cast<unsigned long long>(1ULL) << CpuFeatureSSE4_2)) || (qCpuFeatures() & (static_cast<unsigned long long>(1ULL) << CpuFeatureSSE4_2)));executed 2537828 times by 478 tests: return ((qCompilerCpuFeatures & (static_cast<unsigned long long>(1ULL) << CpuFeatureSSE4_2)) || (qCpuFeatures() & (static_cast<unsigned long long>(1ULL) << CpuFeatureSSE4_2)));Executed by:- tst_Collections
- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- ...
| 2537828 |
| 20 | } | - |
| 21 | | - |
| 22 | template <typename Char> | - |
| 23 | __attribute__((__target__("sse4.2"))) | - |
| 24 | static uint crc32(const Char *ptr, size_t len, uint h) | - |
| 25 | { | - |
| 26 | | - |
| 27 | const uchar *p = reinterpret_cast<const uchar *>(ptr); | - |
| 28 | const uchar *const e = p + (len * sizeof(Char)); | - |
| 29 | | - |
| 30 | | - |
| 31 | | - |
| 32 | qulonglong h2 = h; | - |
| 33 | | - |
| 34 | p += 8; | - |
| 35 | for ( ; p <= e| TRUE | evaluated 3283570 times by 459 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCache
- tst_QCalendarWidget
- ...
| | FALSE | evaluated 2537828 times by 478 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- ...
|
; p += 8) | 2537828-3283570 |
| 36 | h2 = _mm_crc32_u64(h2, qFromUnaligned<qlonglong>(p - 8));executed 3283570 times by 459 tests: h2 = _mm_crc32_u64(h2, qFromUnaligned<qlonglong>(p - 8));Executed by:- tst_Collections
- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCache
- tst_QCalendarWidget
- ...
| 3283570 |
| 37 | h = h2; | - |
| 38 | p -= 8; | - |
| 39 | | - |
| 40 | len = e - p; | - |
| 41 | if (len & 4| TRUE | evaluated 978985 times by 428 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QByteArray
- tst_QCache
- tst_QCalendarWidget
- ...
| | FALSE | evaluated 1558843 times by 465 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- ...
|
) { | 978985-1558843 |
| 42 | h = _mm_crc32_u32(h, qFromUnaligned<uint>(p)); | - |
| 43 | p += 4; | - |
| 44 | }executed 978985 times by 428 tests: end of blockExecuted by:- tst_Collections
- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QByteArray
- tst_QCache
- tst_QCalendarWidget
- ...
| 978985 |
| 45 | | - |
| 46 | | - |
| 47 | | - |
| 48 | | - |
| 49 | | - |
| 50 | | - |
| 51 | | - |
| 52 | if (len & 2| TRUE | evaluated 1536703 times by 458 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- ...
| | FALSE | evaluated 1001125 times by 460 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QByteArray
- tst_QCache
- tst_QCalendarWidget
- ...
|
) { | 1001125-1536703 |
| 53 | h = _mm_crc32_u16(h, qFromUnaligned<ushort>(p)); | - |
| 54 | p += 2; | - |
| 55 | }executed 1536703 times by 458 tests: end of blockExecuted by:- tst_Collections
- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- ...
| 1536703 |
| 56 | if (sizeof(Char) == 1| TRUE | evaluated 145634 times by 401 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
| | FALSE | evaluated 2392194 times by 441 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- ...
|
&& len & 1| TRUE | evaluated 43328 times by 330 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QComplexText
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| | FALSE | evaluated 102306 times by 390 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- ...
|
) | 43328-2392194 |
| 57 | h = _mm_crc32_u8(h, *p);executed 43328 times by 330 tests: h = _mm_crc32_u8(h, *p);Executed by:- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QComplexText
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| 43328 |
| 58 | returnexecuted 2537828 times by 478 tests: return h;Executed by:- tst_Collections
- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- ...
h;executed 2537828 times by 478 tests: return h;Executed by:- tst_Collections
- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- ...
| 2537828 |
| 59 | } | - |
| 60 | static inline uint hash(const uchar *p, int len, uint seed) noexcept | - |
| 61 | { | - |
| 62 | uint h = seed; | - |
| 63 | | - |
| 64 | if (hasFastCrc32()| TRUE | evaluated 145634 times by 401 testsEvaluated by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
| | FALSE | never evaluated |
) | 0-145634 |
| 65 | returnexecuted 145634 times by 401 tests: return crc32(p, size_t(len), h);Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
crc32(p, size_t(len), h);executed 145634 times by 401 tests: return crc32(p, size_t(len), h);Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
| 145634 |
| 66 | | - |
| 67 | for (int i = 0; i < len| TRUE | never evaluated | | FALSE | never evaluated |
; ++i) | 0 |
| 68 | h = 31 * h + p[i]; never executed: h = 31 * h + p[i]; | 0 |
| 69 | | - |
| 70 | return never executed: return h; h;never executed: return h; | 0 |
| 71 | } | - |
| 72 | | - |
| 73 | uint qHashBits(const void *p, size_t len, uint seed) noexcept | - |
| 74 | { | - |
| 75 | returnexecuted 10 times by 1 test: return hash(static_cast<const uchar*>(p), int(len), seed); hash(static_cast<const uchar*>(p), int(len), seed);executed 10 times by 1 test: return hash(static_cast<const uchar*>(p), int(len), seed); | 10 |
| 76 | } | - |
| 77 | | - |
| 78 | static inline uint hash(const QChar *p, int len, uint seed) noexcept | - |
| 79 | { | - |
| 80 | uint h = seed; | - |
| 81 | | - |
| 82 | if (hasFastCrc32()| TRUE | evaluated 2392194 times by 441 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- ...
| | FALSE | never evaluated |
) | 0-2392194 |
| 83 | returnexecuted 2392194 times by 441 tests: return crc32(p, size_t(len), h);Executed by:- tst_Collections
- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- ...
crc32(p, size_t(len), h);executed 2392194 times by 441 tests: return crc32(p, size_t(len), h);Executed by:- tst_Collections
- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- ...
| 2392194 |
| 84 | | - |
| 85 | for (int i = 0; i < len| TRUE | never evaluated | | FALSE | never evaluated |
; ++i) | 0 |
| 86 | h = 31 * h + p[i].unicode(); never executed: h = 31 * h + p[i].unicode(); | 0 |
| 87 | | - |
| 88 | return never executed: return h; h;never executed: return h; | 0 |
| 89 | } | - |
| 90 | | - |
| 91 | uint qHash(const QByteArray &key, uint seed) noexcept | - |
| 92 | { | - |
| 93 | returnexecuted 110206 times by 397 tests: return hash(reinterpret_cast<const uchar *>(key.constData()), key.size(), seed);Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
hash(reinterpret_cast<const uchar *>(key.constData()), key.size(), seed);executed 110206 times by 397 tests: return hash(reinterpret_cast<const uchar *>(key.constData()), key.size(), seed);Executed by:- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
| 110206 |
| 94 | } | - |
| 95 | | - |
| 96 | uint qHash(const QString &key, uint seed) noexcept | - |
| 97 | { | - |
| 98 | returnexecuted 2392182 times by 441 tests: return hash(key.unicode(), key.size(), seed);Executed by:- tst_Collections
- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- ...
hash(key.unicode(), key.size(), seed);executed 2392182 times by 441 tests: return hash(key.unicode(), key.size(), seed);Executed by:- tst_Collections
- tst_Gestures
- tst_Lancelot
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- ...
| 2392182 |
| 99 | } | - |
| 100 | | - |
| 101 | uint qHash(const QStringRef &key, uint seed) noexcept | - |
| 102 | { | - |
| 103 | returnexecuted 12 times by 1 test: return hash(key.unicode(), key.size(), seed); hash(key.unicode(), key.size(), seed);executed 12 times by 1 test: return hash(key.unicode(), key.size(), seed); | 12 |
| 104 | } | - |
| 105 | | - |
| 106 | uint qHash(const QBitArray &bitArray, uint seed) noexcept | - |
| 107 | { | - |
| 108 | int m = bitArray.d.size() - 1; | - |
| 109 | uint result = hash(reinterpret_cast<const uchar *>(bitArray.d.constData()), qMax(0, m), seed); | - |
| 110 | | - |
| 111 | | - |
| 112 | | - |
| 113 | int n = bitArray.size(); | - |
| 114 | if (n & 0x7| TRUE | evaluated 9 times by 1 test | | FALSE | evaluated 1 time by 1 test |
) | 1-9 |
| 115 | result = ((result << 4) + bitArray.d.at(m)) & ((1 << n) - 1);executed 9 times by 1 test: result = ((result << 4) + bitArray.d.at(m)) & ((1 << n) - 1); | 9 |
| 116 | returnexecuted 10 times by 1 test: return result; result;executed 10 times by 1 test: return result; | 10 |
| 117 | } | - |
| 118 | | - |
| 119 | uint qHash(QLatin1String key, uint seed) noexcept | - |
| 120 | { | - |
| 121 | returnexecuted 18091 times by 1 test: return hash(reinterpret_cast<const uchar *>(key.data()), key.size(), seed);Executed by:- tst_qdbuscpp2xml - unknown status
hash(reinterpret_cast<const uchar *>(key.data()), key.size(), seed);executed 18091 times by 1 test: return hash(reinterpret_cast<const uchar *>(key.data()), key.size(), seed);Executed by:- tst_qdbuscpp2xml - unknown status
| 18091 |
| 122 | } | - |
| 123 | static uint qt_create_qhash_seed() | - |
| 124 | { | - |
| 125 | uint seed = 0; | - |
| 126 | | - |
| 127 | | - |
| 128 | QByteArray envSeed = qgetenv("QT_HASH_SEED"); | - |
| 129 | if (!envSeed.isNull()| TRUE | never evaluated | | FALSE | evaluated 1228 times by 151 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_LargeFile
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAuthenticator
- tst_QBuffer
- tst_QByteArray
- tst_QCache
- tst_QCommandLineParser
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDBusMetaType
- ...
|
) | 0-1228 |
| 130 | return never executed: return envSeed.toUInt(); envSeed.toUInt();never executed: return envSeed.toUInt(); | 0 |
| 131 | | - |
| 132 | | - |
| 133 | int randomfd = qt_safe_open("/dev/urandom", 00); | - |
| 134 | if (randomfd == -1| TRUE | never evaluated | | FALSE | evaluated 1228 times by 151 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_LargeFile
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAuthenticator
- tst_QBuffer
- tst_QByteArray
- tst_QCache
- tst_QCommandLineParser
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDBusMetaType
- ...
|
) | 0-1228 |
| 135 | randomfd = qt_safe_open("/dev/random", 00 | 04000); never executed: randomfd = qt_safe_open("/dev/random", 00 | 04000); | 0 |
| 136 | if (randomfd != -1| TRUE | evaluated 1228 times by 151 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_LargeFile
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAuthenticator
- tst_QBuffer
- tst_QByteArray
- tst_QCache
- tst_QCommandLineParser
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDBusMetaType
- ...
| | FALSE | never evaluated |
) { | 0-1228 |
| 137 | if (qt_safe_read(randomfd, reinterpret_cast<char *>(&seed), sizeof(seed)) == sizeof(seed)| TRUE | evaluated 1228 times by 151 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_LargeFile
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAuthenticator
- tst_QBuffer
- tst_QByteArray
- tst_QCache
- tst_QCommandLineParser
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDBusMetaType
- ...
| | FALSE | never evaluated |
) { | 0-1228 |
| 138 | qt_safe_close(randomfd); | - |
| 139 | returnexecuted 1228 times by 151 tests: return seed;Executed by:- tst_Collections
- tst_Compiler
- tst_LargeFile
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAuthenticator
- tst_QBuffer
- tst_QByteArray
- tst_QCache
- tst_QCommandLineParser
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDBusMetaType
- ...
seed;executed 1228 times by 151 tests: return seed;Executed by:- tst_Collections
- tst_Compiler
- tst_LargeFile
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAuthenticator
- tst_QBuffer
- tst_QByteArray
- tst_QCache
- tst_QCommandLineParser
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDBusMetaType
- ...
| 1228 |
| 140 | } | - |
| 141 | qt_safe_close(randomfd); | - |
| 142 | } never executed: end of block | 0 |
| 143 | quint64 timestamp = QDateTime::currentMSecsSinceEpoch(); | - |
| 144 | seed ^= timestamp; | - |
| 145 | seed ^= (timestamp >> 32); | - |
| 146 | | - |
| 147 | quint64 pid = QCoreApplication::applicationPid(); | - |
| 148 | seed ^= pid; | - |
| 149 | seed ^= (pid >> 32); | - |
| 150 | | - |
| 151 | quintptr seedPtr = reinterpret_cast<quintptr>(&seed); | - |
| 152 | seed ^= seedPtr; | - |
| 153 | seed ^= (qulonglong(seedPtr) >> 32); | - |
| 154 | | - |
| 155 | | - |
| 156 | return never executed: return seed; seed;never executed: return seed; | 0 |
| 157 | } | - |
| 158 | | - |
| 159 | | - |
| 160 | | - |
| 161 | | - |
| 162 | __attribute__((visibility("default"))) QBasicAtomicInt qt_qhash_seed = { -1 }; | - |
| 163 | static void qt_initialize_qhash_seed() | - |
| 164 | { | - |
| 165 | if (qt_qhash_seed.load() == -1| TRUE | evaluated 1227 times by 150 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_LargeFile
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAuthenticator
- tst_QBuffer
- tst_QByteArray
- tst_QCache
- tst_QCommandLineParser
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDBusMetaType
- ...
| | FALSE | evaluated 110327 times by 493 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- 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_QAuthenticator
- tst_QBackingStore
- ...
|
) { | 1227-110327 |
| 166 | int x(qt_create_qhash_seed() & 2147483647); | - |
| 167 | qt_qhash_seed.testAndSetRelaxed(-1, x); | - |
| 168 | }executed 1227 times by 150 tests: end of blockExecuted by:- tst_Collections
- tst_Compiler
- tst_LargeFile
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QArrayData
- tst_QArrayData_StrictIterators
- tst_QAuthenticator
- tst_QBuffer
- tst_QByteArray
- tst_QCache
- tst_QCommandLineParser
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusContext
- tst_QDBusInterface
- tst_QDBusMetaObject
- tst_QDBusMetaType
- ...
| 1227 |
| 169 | }executed 111554 times by 536 tests: end of blockExecuted by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- ...
| 111554 |
| 170 | int qGlobalQHashSeed() | - |
| 171 | { | - |
| 172 | returnexecuted 3 times by 1 test: return qt_qhash_seed.load(); qt_qhash_seed.load();executed 3 times by 1 test: return qt_qhash_seed.load(); | 3 |
| 173 | } | - |
| 174 | void qSetGlobalQHashSeed(int newSeed) | - |
| 175 | { | - |
| 176 | if (qEnvironmentVariableIsSet("QT_HASH_SEED")| TRUE | never evaluated | | FALSE | evaluated 6 times by 3 testsEvaluated by:- tst_QDBusXmlParser
- tst_QHashFunctions
- tst_QSet
|
) | 0-6 |
| 177 | return; never executed: return; | 0 |
| 178 | if (newSeed == -1| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 5 times by 3 testsEvaluated by:- tst_QDBusXmlParser
- tst_QHashFunctions
- tst_QSet
|
) { | 1-5 |
| 179 | int x(qt_create_qhash_seed() & 2147483647); | - |
| 180 | qt_qhash_seed.store(x); | - |
| 181 | }executed 1 time by 1 test: end of block else { | 1 |
| 182 | qt_qhash_seed.store(newSeed & 2147483647); | - |
| 183 | }executed 5 times by 3 tests: end of blockExecuted by:- tst_QDBusXmlParser
- tst_QHashFunctions
- tst_QSet
| 5 |
| 184 | } | - |
| 185 | static uint qt_hash(const QChar *p, int n) noexcept | - |
| 186 | { | - |
| 187 | uint h = 0; | - |
| 188 | | - |
| 189 | while (n--| TRUE | evaluated 1730761 times by 116 testsEvaluated by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- tst_QDnsLookup_Appless
- tst_QDoubleSpinBox
- tst_QErrorMessage
- tst_QFile
- ...
| | FALSE | evaluated 171327 times by 116 testsEvaluated by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- tst_QDnsLookup_Appless
- tst_QDoubleSpinBox
- tst_QErrorMessage
- tst_QFile
- ...
|
) { | 171327-1730761 |
| 190 | h = (h << 4) + (*p++).unicode(); | - |
| 191 | h ^= (h & 0xf0000000) >> 23; | - |
| 192 | h &= 0x0fffffff; | - |
| 193 | }executed 1730761 times by 116 tests: end of blockExecuted by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- tst_QDnsLookup_Appless
- tst_QDoubleSpinBox
- tst_QErrorMessage
- tst_QFile
- ...
| 1730761 |
| 194 | returnexecuted 171327 times by 116 tests: return h;Executed by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- tst_QDnsLookup_Appless
- tst_QDoubleSpinBox
- tst_QErrorMessage
- tst_QFile
- ...
h;executed 171327 times by 116 tests: return h;Executed by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- tst_QDnsLookup_Appless
- tst_QDoubleSpinBox
- tst_QErrorMessage
- tst_QFile
- ...
| 171327 |
| 195 | } | - |
| 196 | | - |
| 197 | | - |
| 198 | | - |
| 199 | | - |
| 200 | | - |
| 201 | uint qt_hash(const QString &key) noexcept | - |
| 202 | { | - |
| 203 | returnexecuted 5 times by 1 test: return qt_hash(key.unicode(), key.size()); qt_hash(key.unicode(), key.size());executed 5 times by 1 test: return qt_hash(key.unicode(), key.size()); | 5 |
| 204 | } | - |
| 205 | | - |
| 206 | | - |
| 207 | | - |
| 208 | | - |
| 209 | | - |
| 210 | uint qt_hash(const QStringRef &key) noexcept | - |
| 211 | { | - |
| 212 | returnexecuted 171322 times by 115 tests: return qt_hash(key.unicode(), key.size());Executed by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- tst_QDnsLookup_Appless
- tst_QDoubleSpinBox
- tst_QErrorMessage
- tst_QFile
- ...
qt_hash(key.unicode(), key.size());executed 171322 times by 115 tests: return qt_hash(key.unicode(), key.size());Executed by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- tst_QDnsLookup_Appless
- tst_QDoubleSpinBox
- tst_QErrorMessage
- tst_QFile
- ...
| 171322 |
| 213 | } | - |
| 214 | static const uchar prime_deltas[] = { | - |
| 215 | 0, 0, 1, 3, 1, 5, 3, 3, 1, 9, 7, 5, 3, 17, 27, 3, | - |
| 216 | 1, 29, 3, 21, 7, 17, 15, 9, 43, 35, 15, 0, 0, 0, 0, 0 | - |
| 217 | }; | - |
| 218 | | - |
| 219 | | - |
| 220 | | - |
| 221 | | - |
| 222 | | - |
| 223 | | - |
| 224 | static inline int primeForNumBits(int numBits) | - |
| 225 | { | - |
| 226 | returnexecuted 140588 times by 539 tests: return (1 << numBits) + prime_deltas[numBits];Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- ...
(1 << numBits) + prime_deltas[numBits];executed 140588 times by 539 tests: return (1 << numBits) + prime_deltas[numBits];Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- ...
| 140588 |
| 227 | } | - |
| 228 | | - |
| 229 | | - |
| 230 | | - |
| 231 | | - |
| 232 | | - |
| 233 | static int countBits(int hint) | - |
| 234 | { | - |
| 235 | int numBits = 0; | - |
| 236 | int bits = hint; | - |
| 237 | | - |
| 238 | while (bits > 1| TRUE | evaluated 2471 times by 134 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QComplexText
- tst_QCssParser
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDockWidget
- ...
| | FALSE | evaluated 7704 times by 160 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QComplexText
- tst_QCssParser
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- ...
|
) { | 2471-7704 |
| 239 | bits >>= 1; | - |
| 240 | numBits++; | - |
| 241 | }executed 2471 times by 134 tests: end of blockExecuted by:- tst_Collections
- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QComplexText
- tst_QCssParser
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDockWidget
- ...
| 2471 |
| 242 | | - |
| 243 | if (numBits >= (int)sizeof(prime_deltas)| TRUE | never evaluated | | FALSE | evaluated 7704 times by 160 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QComplexText
- tst_QCssParser
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- ...
|
) { | 0-7704 |
| 244 | numBits = sizeof(prime_deltas) - 1; | - |
| 245 | } never executed: end of block else if (primeForNumBits(numBits) < hint| TRUE | evaluated 431 times by 132 testsEvaluated by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QComplexText
- tst_QCssParser
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QDoubleSpinBox
- ...
| | FALSE | evaluated 7273 times by 101 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDirModel
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFontDialog
- tst_QGestureRecognizer
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- ...
|
) { | 0-7273 |
| 246 | ++numBits; | - |
| 247 | }executed 431 times by 132 tests: end of blockExecuted by:- tst_Gestures
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QComplexText
- tst_QCssParser
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QDoubleSpinBox
- ...
| 431 |
| 248 | returnexecuted 7704 times by 160 tests: return numBits;Executed by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QComplexText
- tst_QCssParser
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- ...
numBits;executed 7704 times by 160 tests: return numBits;Executed by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QComplexText
- tst_QCssParser
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- ...
| 7704 |
| 249 | } | - |
| 250 | | - |
| 251 | | - |
| 252 | | - |
| 253 | | - |
| 254 | | - |
| 255 | const int MinNumBits = 4; | - |
| 256 | | - |
| 257 | const QHashData QHashData::shared_null = { | - |
| 258 | 0, 0, { { -1 } }, 0, 0, MinNumBits, 0, 0, 0, true, false, 0 | - |
| 259 | }; | - |
| 260 | | - |
| 261 | void *QHashData::allocateNode(int nodeAlign) | - |
| 262 | { | - |
| 263 | void *ptr = strictAlignment| TRUE | evaluated 600 times by 1 test | | FALSE | evaluated 6715790 times by 542 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- ...
|
? qMallocAligned(nodeSize, nodeAlign) : malloc(nodeSize); | 600-6715790 |
| 264 | do { if (!(ptr)| TRUE | never evaluated | | FALSE | evaluated 6716390 times by 542 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- ...
|
) qBadAlloc();never executed: qBadAlloc(); } while (0); | 0-6716390 |
| 265 | returnexecuted 6716390 times by 542 tests: return ptr;Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- ...
ptr;executed 6716390 times by 542 tests: return ptr;Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- ...
| 6716390 |
| 266 | } | - |
| 267 | | - |
| 268 | void QHashData::freeNode(void *node) | - |
| 269 | { | - |
| 270 | if (strictAlignment| TRUE | evaluated 600 times by 1 test | | FALSE | evaluated 6717701 times by 697 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- 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_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- ...
|
) | 600-6717701 |
| 271 | qFreeAligned(node);executed 600 times by 1 test: qFreeAligned(node); | 600 |
| 272 | else | - |
| 273 | free(node);executed 6717701 times by 697 tests: free(node);Executed by:- tst_Collections
- tst_Gestures
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- 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_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- ...
| 6717701 |
| 274 | } | - |
| 275 | | - |
| 276 | QHashData *QHashData::detach_helper(void (*node_duplicate)(Node *, void *), | - |
| 277 | void (*node_delete)(Node *), | - |
| 278 | int nodeSize, | - |
| 279 | int nodeAlign) | - |
| 280 | { | - |
| 281 | union { | - |
| 282 | QHashData *d; | - |
| 283 | Node *e; | - |
| 284 | }; | - |
| 285 | if (this == &shared_null| TRUE | evaluated 111554 times by 536 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- ...
| | FALSE | evaluated 12401 times by 50 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDirModel
- tst_QDockWidget
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGestureRecognizer
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsProxyWidget
- ...
|
) | 12401-111554 |
| 286 | qt_initialize_qhash_seed();executed 111554 times by 536 tests: qt_initialize_qhash_seed();Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- ...
| 111554 |
| 287 | d = new QHashData; | - |
| 288 | d->fakeNext = 0; | - |
| 289 | d->buckets = 0; | - |
| 290 | d->ref.initializeOwned(); | - |
| 291 | d->size = size; | - |
| 292 | d->nodeSize = nodeSize; | - |
| 293 | d->userNumBits = userNumBits; | - |
| 294 | d->numBits = numBits; | - |
| 295 | d->numBuckets = numBuckets; | - |
| 296 | d->seed = (| TRUE | evaluated 111554 times by 536 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- ...
| | FALSE | evaluated 12401 times by 50 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDirModel
- tst_QDockWidget
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGestureRecognizer
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsProxyWidget
- ...
|
this == &shared_null)| TRUE | evaluated 111554 times by 536 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- ...
| | FALSE | evaluated 12401 times by 50 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDirModel
- tst_QDockWidget
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGestureRecognizer
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsProxyWidget
- ...
|
? uint(qt_qhash_seed.load()) : seed; | 12401-111554 |
| 297 | d->sharable = true; | - |
| 298 | d->strictAlignment = nodeAlign > 8; | - |
| 299 | d->reserved = 0; | - |
| 300 | | - |
| 301 | if (numBuckets| TRUE | evaluated 12401 times by 50 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDirModel
- tst_QDockWidget
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGestureRecognizer
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsProxyWidget
- ...
| | FALSE | evaluated 111554 times by 536 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- ...
|
) { | 12401-111554 |
| 302 | try { | - |
| 303 | d->buckets = new Node *[numBuckets]; | - |
| 304 | }executed 12401 times by 50 tests: end of blockExecuted by:- tst_Collections
- tst_Gestures
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDirModel
- tst_QDockWidget
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGestureRecognizer
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsProxyWidget
- ...
catch (...) { | 12401 |
| 305 | | - |
| 306 | d->numBuckets = 0; | - |
| 307 | | - |
| 308 | d->free_helper(node_delete); | - |
| 309 | throw; never executed: throw; | 0 |
| 310 | } | - |
| 311 | | - |
| 312 | Node *this_e = reinterpret_cast<Node *>(this); | - |
| 313 | for (int i = 0; i < numBuckets| TRUE | evaluated 379517 times by 50 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDirModel
- tst_QDockWidget
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGestureRecognizer
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsProxyWidget
- ...
| | FALSE | evaluated 12401 times by 50 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDirModel
- tst_QDockWidget
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGestureRecognizer
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsProxyWidget
- ...
|
; ++i) { | 12401-379517 |
| 314 | Node **nextNode = &d->buckets[i]; | - |
| 315 | Node *oldNode = buckets[i]; | - |
| 316 | while (oldNode != this_e| TRUE | evaluated 177100 times by 50 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDirModel
- tst_QDockWidget
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGestureRecognizer
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsProxyWidget
- ...
| | FALSE | evaluated 379517 times by 50 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDirModel
- tst_QDockWidget
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGestureRecognizer
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsProxyWidget
- ...
|
) { | 177100-379517 |
| 317 | try { | - |
| 318 | Node *dup = static_cast<Node *>(allocateNode(nodeAlign)); | - |
| 319 | | - |
| 320 | try { | - |
| 321 | node_duplicate(oldNode, dup); | - |
| 322 | }executed 177100 times by 50 tests: end of blockExecuted by:- tst_Collections
- tst_Gestures
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDirModel
- tst_QDockWidget
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGestureRecognizer
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsProxyWidget
- ...
catch (...) { | 177100 |
| 323 | freeNode( dup ); | - |
| 324 | throw; never executed: throw; | 0 |
| 325 | } | - |
| 326 | | - |
| 327 | *nextNode = dup; | - |
| 328 | nextNode = &dup->next; | - |
| 329 | oldNode = oldNode->next; | - |
| 330 | }executed 177100 times by 50 tests: end of blockExecuted by:- tst_Collections
- tst_Gestures
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDirModel
- tst_QDockWidget
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGestureRecognizer
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsProxyWidget
- ...
catch (...) { | 177100 |
| 331 | | - |
| 332 | *nextNode = e; | - |
| 333 | d->numBuckets = i+1; | - |
| 334 | | - |
| 335 | d->free_helper(node_delete); | - |
| 336 | throw; never executed: throw; | 0 |
| 337 | } | - |
| 338 | } | - |
| 339 | *nextNode = e; | - |
| 340 | }executed 379517 times by 50 tests: end of blockExecuted by:- tst_Collections
- tst_Gestures
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDirModel
- tst_QDockWidget
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGestureRecognizer
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsProxyWidget
- ...
| 379517 |
| 341 | }executed 12401 times by 50 tests: end of blockExecuted by:- tst_Collections
- tst_Gestures
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractProxyModel
- tst_QCompleter
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusLocalCalls
- tst_QDBusPendingCall
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDirModel
- tst_QDockWidget
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGestureRecognizer
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsProxyWidget
- ...
| 12401 |
| 342 | returnexecuted 123955 times by 536 tests: return d;Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- ...
d;executed 123955 times by 536 tests: return d;Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- ...
| 123955 |
| 343 | } | - |
| 344 | | - |
| 345 | void QHashData::free_helper(void (*node_delete)(Node *)) | - |
| 346 | { | - |
| 347 | if (node_delete| TRUE | evaluated 124312 times by 659 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QAuthenticator
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCache
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| | FALSE | never evaluated |
) { | 0-124312 |
| 348 | Node *this_e = reinterpret_cast<Node *>(this); | - |
| 349 | Node **bucket = reinterpret_cast<Node **>(this->buckets); | - |
| 350 | | - |
| 351 | int n = numBuckets; | - |
| 352 | while (n--| TRUE | evaluated 8152060 times by 658 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QAuthenticator
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCache
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| | FALSE | evaluated 124312 times by 659 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QAuthenticator
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCache
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
|
) { | 124312-8152060 |
| 353 | Node *cur = *bucket++; | - |
| 354 | while (cur != this_e| TRUE | evaluated 5850074 times by 593 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QAuthenticator
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCache
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- ...
| | FALSE | evaluated 8152060 times by 658 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QAuthenticator
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCache
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
|
) { | 5850074-8152060 |
| 355 | Node *next = cur->next; | - |
| 356 | node_delete(cur); | - |
| 357 | freeNode(cur); | - |
| 358 | cur = next; | - |
| 359 | }executed 5850074 times by 593 tests: end of blockExecuted by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QAuthenticator
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCache
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- ...
| 5850074 |
| 360 | }executed 8152060 times by 658 tests: end of blockExecuted by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QAuthenticator
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCache
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| 8152060 |
| 361 | }executed 124312 times by 659 tests: end of blockExecuted by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QAuthenticator
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCache
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| 124312 |
| 362 | delete [] buckets; | - |
| 363 | delete this; | - |
| 364 | }executed 124312 times by 659 tests: end of blockExecuted by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QAuthenticator
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCache
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| 124312 |
| 365 | | - |
| 366 | QHashData::Node *QHashData::nextNode(Node *node) | - |
| 367 | { | - |
| 368 | union { | - |
| 369 | Node *next; | - |
| 370 | Node *e; | - |
| 371 | QHashData *d; | - |
| 372 | }; | - |
| 373 | next = node->next; | - |
| 374 | ((!(next)) ? qt_assert_x("QHash", "Iterating beyond end()",__FILE__,612) : qt_noop()); | - |
| 375 | if (next->next| TRUE | evaluated 804707 times by 358 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- ...
| | FALSE | evaluated 2604328 times by 459 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractFileEngine
- 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_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
) | 804707-2604328 |
| 376 | returnexecuted 804707 times by 358 tests: return next;Executed by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- ...
next;executed 804707 times by 358 tests: return next;Executed by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- ...
| 804707 |
| 377 | | - |
| 378 | int start = (node->h % d->numBuckets) + 1; | - |
| 379 | Node **bucket = d->buckets + start; | - |
| 380 | int n = d->numBuckets - start; | - |
| 381 | while (n--| TRUE | evaluated 825244482 times by 456 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractFileEngine
- 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_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| | FALSE | evaluated 234932 times by 459 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractFileEngine
- 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_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
) { | 234932-825244482 |
| 382 | if (*| TRUE | evaluated 2369396 times by 393 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| | FALSE | evaluated 822875086 times by 456 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractFileEngine
- 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_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
bucket != e| TRUE | evaluated 2369396 times by 393 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| | FALSE | evaluated 822875086 times by 456 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractFileEngine
- 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_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
) | 2369396-822875086 |
| 383 | returnexecuted 2369396 times by 393 tests: return *bucket;Executed by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
*bucket;executed 2369396 times by 393 tests: return *bucket;Executed by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| 2369396 |
| 384 | ++bucket; | - |
| 385 | }executed 822875086 times by 456 tests: end of blockExecuted by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractFileEngine
- 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_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| 822875086 |
| 386 | returnexecuted 234932 times by 459 tests: return e;Executed by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractFileEngine
- 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_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
e;executed 234932 times by 459 tests: return e;Executed by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractFileEngine
- 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_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| 234932 |
| 387 | } | - |
| 388 | | - |
| 389 | QHashData::Node *QHashData::previousNode(Node *node) | - |
| 390 | { | - |
| 391 | union { | - |
| 392 | Node *e; | - |
| 393 | QHashData *d; | - |
| 394 | }; | - |
| 395 | | - |
| 396 | e = node; | - |
| 397 | while (e->next| TRUE | evaluated 457851 times by 15 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_QAbstractNetworkCache
- tst_QDataStream
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QHash
- tst_QHash_StrictIterators
- tst_QNetworkDiskCache
- tst_QNetworkReply
- tst_QSet
- tst_QState
- tst_QStateMachine
- tst_QTreeView
- tst_languageChange
| | FALSE | evaluated 374523 times by 23 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_QAbstractNetworkCache
- tst_QDataStream
- tst_QDockWidget
- tst_QGestureRecognizer
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsProxyWidget
- tst_QHash
- tst_QHash_StrictIterators
- tst_QHeaderView
- tst_QMainWindow
- tst_QNetworkDiskCache
- tst_QNetworkReply
- tst_QScroller
- tst_QSet
- tst_QState
- tst_QStateMachine
- tst_QTouchEvent
- tst_QTreeView
- tst_QWidget
- tst_languageChange
|
) | 374523-457851 |
| 398 | e = e->next;executed 457851 times by 15 tests: e = e->next;Executed by:- tst_Collections
- tst_Gestures
- tst_QAbstractNetworkCache
- tst_QDataStream
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QHash
- tst_QHash_StrictIterators
- tst_QNetworkDiskCache
- tst_QNetworkReply
- tst_QSet
- tst_QState
- tst_QStateMachine
- tst_QTreeView
- tst_languageChange
| 457851 |
| 399 | | - |
| 400 | int start; | - |
| 401 | if (node == e| TRUE | evaluated 32948 times by 23 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_QAbstractNetworkCache
- tst_QDataStream
- tst_QDockWidget
- tst_QGestureRecognizer
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsProxyWidget
- tst_QHash
- tst_QHash_StrictIterators
- tst_QHeaderView
- tst_QMainWindow
- tst_QNetworkDiskCache
- tst_QNetworkReply
- tst_QScroller
- tst_QSet
- tst_QState
- tst_QStateMachine
- tst_QTouchEvent
- tst_QTreeView
- tst_QWidget
- tst_languageChange
| | FALSE | evaluated 341575 times by 15 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_QAbstractNetworkCache
- tst_QDataStream
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QHash
- tst_QHash_StrictIterators
- tst_QNetworkDiskCache
- tst_QNetworkReply
- tst_QSet
- tst_QState
- tst_QStateMachine
- tst_QTreeView
- tst_languageChange
|
) | 32948-341575 |
| 402 | start = d->numBuckets - 1;executed 32948 times by 23 tests: start = d->numBuckets - 1;Executed by:- tst_Collections
- tst_Gestures
- tst_QAbstractNetworkCache
- tst_QDataStream
- tst_QDockWidget
- tst_QGestureRecognizer
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsProxyWidget
- tst_QHash
- tst_QHash_StrictIterators
- tst_QHeaderView
- tst_QMainWindow
- tst_QNetworkDiskCache
- tst_QNetworkReply
- tst_QScroller
- tst_QSet
- tst_QState
- tst_QStateMachine
- tst_QTouchEvent
- tst_QTreeView
- tst_QWidget
- tst_languageChange
| 32948 |
| 403 | else | - |
| 404 | start = node->h % d->numBuckets;executed 341575 times by 15 tests: start = node->h % d->numBuckets;Executed by:- tst_Collections
- tst_Gestures
- tst_QAbstractNetworkCache
- tst_QDataStream
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QHash
- tst_QHash_StrictIterators
- tst_QNetworkDiskCache
- tst_QNetworkReply
- tst_QSet
- tst_QState
- tst_QStateMachine
- tst_QTreeView
- tst_languageChange
| 341575 |
| 405 | | - |
| 406 | Node *sentinel = node; | - |
| 407 | Node **bucket = d->buckets + start; | - |
| 408 | while (start >= 0| TRUE | evaluated 410695517 times by 23 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_QAbstractNetworkCache
- tst_QDataStream
- tst_QDockWidget
- tst_QGestureRecognizer
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsProxyWidget
- tst_QHash
- tst_QHash_StrictIterators
- tst_QHeaderView
- tst_QMainWindow
- tst_QNetworkDiskCache
- tst_QNetworkReply
- tst_QScroller
- tst_QSet
- tst_QState
- tst_QStateMachine
- tst_QTouchEvent
- tst_QTreeView
- tst_QWidget
- tst_languageChange
| | FALSE | never evaluated |
) { | 0-410695517 |
| 409 | if (*| TRUE | evaluated 374523 times by 23 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_QAbstractNetworkCache
- tst_QDataStream
- tst_QDockWidget
- tst_QGestureRecognizer
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsProxyWidget
- tst_QHash
- tst_QHash_StrictIterators
- tst_QHeaderView
- tst_QMainWindow
- tst_QNetworkDiskCache
- tst_QNetworkReply
- tst_QScroller
- tst_QSet
- tst_QState
- tst_QStateMachine
- tst_QTouchEvent
- tst_QTreeView
- tst_QWidget
- tst_languageChange
| | FALSE | evaluated 410320994 times by 22 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_QAbstractNetworkCache
- tst_QDataStream
- tst_QDockWidget
- tst_QGestureRecognizer
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsProxyWidget
- tst_QHash
- tst_QHash_StrictIterators
- tst_QHeaderView
- tst_QMainWindow
- tst_QNetworkDiskCache
- tst_QNetworkReply
- tst_QScroller
- tst_QSet
- tst_QState
- tst_QStateMachine
- tst_QTouchEvent
- tst_QTreeView
- tst_languageChange
|
bucket != sentinel| TRUE | evaluated 374523 times by 23 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_QAbstractNetworkCache
- tst_QDataStream
- tst_QDockWidget
- tst_QGestureRecognizer
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsProxyWidget
- tst_QHash
- tst_QHash_StrictIterators
- tst_QHeaderView
- tst_QMainWindow
- tst_QNetworkDiskCache
- tst_QNetworkReply
- tst_QScroller
- tst_QSet
- tst_QState
- tst_QStateMachine
- tst_QTouchEvent
- tst_QTreeView
- tst_QWidget
- tst_languageChange
| | FALSE | evaluated 410320994 times by 22 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_QAbstractNetworkCache
- tst_QDataStream
- tst_QDockWidget
- tst_QGestureRecognizer
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsProxyWidget
- tst_QHash
- tst_QHash_StrictIterators
- tst_QHeaderView
- tst_QMainWindow
- tst_QNetworkDiskCache
- tst_QNetworkReply
- tst_QScroller
- tst_QSet
- tst_QState
- tst_QStateMachine
- tst_QTouchEvent
- tst_QTreeView
- tst_languageChange
|
) { | 374523-410320994 |
| 410 | Node *prev = *bucket; | - |
| 411 | while (prev->next != sentinel| TRUE | evaluated 135850 times by 11 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_QDataStream
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QHash
- tst_QHash_StrictIterators
- tst_QSet
- tst_QState
- tst_QStateMachine
- tst_languageChange
| | FALSE | evaluated 374523 times by 23 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_QAbstractNetworkCache
- tst_QDataStream
- tst_QDockWidget
- tst_QGestureRecognizer
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsProxyWidget
- tst_QHash
- tst_QHash_StrictIterators
- tst_QHeaderView
- tst_QMainWindow
- tst_QNetworkDiskCache
- tst_QNetworkReply
- tst_QScroller
- tst_QSet
- tst_QState
- tst_QStateMachine
- tst_QTouchEvent
- tst_QTreeView
- tst_QWidget
- tst_languageChange
|
) | 135850-374523 |
| 412 | prev = prev->next;executed 135850 times by 11 tests: prev = prev->next;Executed by:- tst_Collections
- tst_Gestures
- tst_QDataStream
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QHash
- tst_QHash_StrictIterators
- tst_QSet
- tst_QState
- tst_QStateMachine
- tst_languageChange
| 135850 |
| 413 | returnexecuted 374523 times by 23 tests: return prev;Executed by:- tst_Collections
- tst_Gestures
- tst_QAbstractNetworkCache
- tst_QDataStream
- tst_QDockWidget
- tst_QGestureRecognizer
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsProxyWidget
- tst_QHash
- tst_QHash_StrictIterators
- tst_QHeaderView
- tst_QMainWindow
- tst_QNetworkDiskCache
- tst_QNetworkReply
- tst_QScroller
- tst_QSet
- tst_QState
- tst_QStateMachine
- tst_QTouchEvent
- tst_QTreeView
- tst_QWidget
- tst_languageChange
prev;executed 374523 times by 23 tests: return prev;Executed by:- tst_Collections
- tst_Gestures
- tst_QAbstractNetworkCache
- tst_QDataStream
- tst_QDockWidget
- tst_QGestureRecognizer
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsProxyWidget
- tst_QHash
- tst_QHash_StrictIterators
- tst_QHeaderView
- tst_QMainWindow
- tst_QNetworkDiskCache
- tst_QNetworkReply
- tst_QScroller
- tst_QSet
- tst_QState
- tst_QStateMachine
- tst_QTouchEvent
- tst_QTreeView
- tst_QWidget
- tst_languageChange
| 374523 |
| 414 | } | - |
| 415 | | - |
| 416 | sentinel = e; | - |
| 417 | --bucket; | - |
| 418 | --start; | - |
| 419 | }executed 410320994 times by 22 tests: end of blockExecuted by:- tst_Collections
- tst_Gestures
- tst_QAbstractNetworkCache
- tst_QDataStream
- tst_QDockWidget
- tst_QGestureRecognizer
- tst_QGraphicsAnchorLayout
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsProxyWidget
- tst_QHash
- tst_QHash_StrictIterators
- tst_QHeaderView
- tst_QMainWindow
- tst_QNetworkDiskCache
- tst_QNetworkReply
- tst_QScroller
- tst_QSet
- tst_QState
- tst_QStateMachine
- tst_QTouchEvent
- tst_QTreeView
- tst_languageChange
| 410320994 |
| 420 | ((!(start >= 0)) ? qt_assert_x("QHash", "Iterating backward beyond begin()",__FILE__,658) : qt_noop()); | - |
| 421 | return never executed: return e; e;never executed: return e; | 0 |
| 422 | } | - |
| 423 | | - |
| 424 | | - |
| 425 | | - |
| 426 | | - |
| 427 | | - |
| 428 | | - |
| 429 | | - |
| 430 | void QHashData::rehash(int hint) | - |
| 431 | { | - |
| 432 | if (hint < 0| TRUE | evaluated 7704 times by 160 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QComplexText
- tst_QCssParser
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- ...
| | FALSE | evaluated 117443 times by 537 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- ...
|
) { | 7704-117443 |
| 433 | hint = countBits(-hint); | - |
| 434 | if (hint < MinNumBits| TRUE | evaluated 7309 times by 103 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDirModel
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFontDialog
- tst_QGestureRecognizer
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- ...
| | FALSE | evaluated 395 times by 125 testsEvaluated by:- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QComplexText
- tst_QCssParser
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- tst_QDockWidget
- tst_QDoubleSpinBox
- tst_QErrorMessage
- tst_QFileDialog2
- ...
|
) | 395-7309 |
| 435 | hint = MinNumBits;executed 7309 times by 103 tests: hint = MinNumBits;Executed by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDirModel
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontComboBox
- tst_QFontDialog
- tst_QGestureRecognizer
- tst_QGraphicsAnchorLayout
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- ...
| 7309 |
| 436 | userNumBits = hint; | - |
| 437 | while (primeForNumBits(hint) < (size >> 1)| TRUE | evaluated 37 times by 4 testsEvaluated by:- tst_Collections
- tst_QHash
- tst_QHash_StrictIterators
- tst_QSet
| | FALSE | evaluated 7704 times by 160 testsEvaluated by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QComplexText
- tst_QCssParser
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- ...
|
) | 37-7704 |
| 438 | ++executed 37 times by 4 tests: ++hint;Executed by:- tst_Collections
- tst_QHash
- tst_QHash_StrictIterators
- tst_QSet
hint;executed 37 times by 4 tests: ++hint;Executed by:- tst_Collections
- tst_QHash
- tst_QHash_StrictIterators
- tst_QSet
| 37 |
| 439 | }executed 7704 times by 160 tests: end of blockExecuted by:- tst_Collections
- tst_Gestures
- tst_ModelTest
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QComplexText
- tst_QCssParser
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDialogButtonBox
- ...
else if (hint < MinNumBits| TRUE | evaluated 99326 times by 534 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- ...
| | FALSE | evaluated 18117 times by 156 testsEvaluated by:- tst_Collections
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QComplexText
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusMetaType
- tst_QDBusPendingReply
- tst_QDBusReply
- ...
|
) { | 7704-99326 |
| 440 | hint = MinNumBits; | - |
| 441 | }executed 99326 times by 534 tests: end of blockExecuted by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- ...
| 99326 |
| 442 | | - |
| 443 | if (numBits != hint| TRUE | evaluated 125143 times by 539 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- ...
| | FALSE | evaluated 4 times by 2 tests |
) { | 4-125143 |
| 444 | Node *e = reinterpret_cast<Node *>(this); | - |
| 445 | Node **oldBuckets = buckets; | - |
| 446 | int oldNumBuckets = numBuckets; | - |
| 447 | | - |
| 448 | int nb = primeForNumBits(hint); | - |
| 449 | buckets = new Node *[nb]; | - |
| 450 | numBits = hint; | - |
| 451 | numBuckets = nb; | - |
| 452 | for (int i = 0; i < numBuckets| TRUE | evaluated 14111153 times by 539 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- ...
| | FALSE | evaluated 125143 times by 539 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- ...
|
; ++i) | 125143-14111153 |
| 453 | buckets[i] = e;executed 14111153 times by 539 tests: buckets[i] = e;Executed by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- ...
| 14111153 |
| 454 | | - |
| 455 | for (int i = 0; i < oldNumBuckets| TRUE | evaluated 6344684 times by 156 testsEvaluated by:- tst_Collections
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QComplexText
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusMetaType
- tst_QDBusPendingReply
- tst_QDBusReply
- ...
| | FALSE | evaluated 125143 times by 539 testsEvaluated by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- ...
|
; ++i) { | 125143-6344684 |
| 456 | Node *firstNode = oldBuckets[i]; | - |
| 457 | while (firstNode != e| TRUE | evaluated 854085 times by 156 testsEvaluated by:- tst_Collections
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QComplexText
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusMetaType
- tst_QDBusPendingReply
- tst_QDBusReply
- ...
| | FALSE | evaluated 6344684 times by 156 testsEvaluated by:- tst_Collections
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QComplexText
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusMetaType
- tst_QDBusPendingReply
- tst_QDBusReply
- ...
|
) { | 854085-6344684 |
| 458 | uint h = firstNode->h; | - |
| 459 | Node *lastNode = firstNode; | - |
| 460 | while (lastNode->next != e| TRUE | evaluated 5495318 times by 148 testsEvaluated by:- tst_Collections
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QComplexText
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusMetaType
- tst_QDBusPendingReply
- tst_QDBusReply
- ...
| | FALSE | evaluated 606469 times by 156 testsEvaluated by:- tst_Collections
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QComplexText
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusMetaType
- tst_QDBusPendingReply
- tst_QDBusReply
- ...
|
&& lastNode->next->h == h| TRUE | evaluated 5247702 times by 41 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSpinBox
- tst_QApplication
- tst_QComboBox
- tst_QFileSystemWatcher
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsProxyWidget
- tst_QGraphicsView
- tst_QHash
- tst_QHash_StrictIterators
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QItemSelectionModel
- tst_QListView
- tst_QMainWindow
- tst_QMenu
- tst_QNetworkAccessManager
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- ...
| | FALSE | evaluated 247616 times by 147 testsEvaluated by:- tst_Collections
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QComplexText
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusMetaType
- tst_QDBusPendingReply
- tst_QDBusReply
- ...
|
) | 247616-5495318 |
| 461 | lastNode = lastNode->next;executed 5247702 times by 41 tests: lastNode = lastNode->next;Executed by:- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSpinBox
- tst_QApplication
- tst_QComboBox
- tst_QFileSystemWatcher
- tst_QFontDialog
- tst_QFtp
- tst_QGraphicsAnchorLayout1
- tst_QGraphicsProxyWidget
- tst_QGraphicsView
- tst_QHash
- tst_QHash_StrictIterators
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QItemSelectionModel
- tst_QListView
- tst_QMainWindow
- tst_QMenu
- tst_QNetworkAccessManager
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkConfiguration
- tst_QNetworkConfigurationManager
- ...
| 5247702 |
| 462 | | - |
| 463 | Node *afterLastNode = lastNode->next; | - |
| 464 | Node **beforeFirstNode = &buckets[h % numBuckets]; | - |
| 465 | while (*| TRUE | evaluated 176120 times by 141 testsEvaluated by:- tst_Collections
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QComplexText
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusMetaType
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDateTimeEdit
- tst_QDebug
- ...
| | FALSE | evaluated 854085 times by 156 testsEvaluated by:- tst_Collections
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QComplexText
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusMetaType
- tst_QDBusPendingReply
- tst_QDBusReply
- ...
|
beforeFirstNode != e| TRUE | evaluated 176120 times by 141 testsEvaluated by:- tst_Collections
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QComplexText
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusMetaType
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDateTimeEdit
- tst_QDebug
- ...
| | FALSE | evaluated 854085 times by 156 testsEvaluated by:- tst_Collections
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QComplexText
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusMetaType
- tst_QDBusPendingReply
- tst_QDBusReply
- ...
|
) | 176120-854085 |
| 466 | beforeFirstNode = &(*beforeFirstNode)->next;executed 176120 times by 141 tests: beforeFirstNode = &(*beforeFirstNode)->next;Executed by:- tst_Collections
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QComplexText
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusMetaType
- tst_QDBusPendingReply
- tst_QDBusReply
- tst_QDateTimeEdit
- tst_QDebug
- ...
| 176120 |
| 467 | lastNode->next = *beforeFirstNode; | - |
| 468 | *beforeFirstNode = firstNode; | - |
| 469 | firstNode = afterLastNode; | - |
| 470 | }executed 854085 times by 156 tests: end of blockExecuted by:- tst_Collections
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QComplexText
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusMetaType
- tst_QDBusPendingReply
- tst_QDBusReply
- ...
| 854085 |
| 471 | }executed 6344684 times by 156 tests: end of blockExecuted by:- tst_Collections
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QApplication
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCompleter
- tst_QComplexText
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnection
- tst_QDBusConnection_NoApplication
- tst_QDBusConnection_SpyHook
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDBusMetaType
- tst_QDBusPendingReply
- tst_QDBusReply
- ...
| 6344684 |
| 472 | delete [] oldBuckets; | - |
| 473 | }executed 125143 times by 539 tests: end of blockExecuted by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- ...
| 125143 |
| 474 | }executed 125147 times by 539 tests: end of blockExecuted by:- tst_Collections
- tst_Compiler
- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemModel
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractProxyModel
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- ...
| 125147 |
| 475 | uint qHash(float key, uint seed) noexcept | - |
| 476 | { | - |
| 477 | returnexecuted 2 times by 1 test: return key != 0.0f ? hash(reinterpret_cast<const uchar *>(&key), sizeof(key), seed) : seed ; key != 0.0f ? hash(reinterpret_cast<const uchar *>(&key), sizeof(key), seed) : seed ;executed 2 times by 1 test: return key != 0.0f ? hash(reinterpret_cast<const uchar *>(&key), sizeof(key), seed) : seed ; | 2 |
| 478 | } | - |
| 479 | | - |
| 480 | | - |
| 481 | | - |
| 482 | | - |
| 483 | | - |
| 484 | | - |
| 485 | uint qHash(double key, uint seed) noexcept | - |
| 486 | { | - |
| 487 | returnexecuted 19289 times by 40 tests: return key != 0.0 ? hash(reinterpret_cast<const uchar *>(&key), sizeof(key), seed) : seed ;Executed by:- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QErrorMessage
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QHashFunctions
- tst_QItemDelegate
- tst_QLabel
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMessageBox
- tst_QPlainTextEdit
- tst_QShortcut
- tst_QSplitter
- tst_QStateMachine
- tst_QStaticText
- tst_QStyleSheetStyle
- tst_QSyntaxHighlighter
- tst_QTableView
- ...
key != 0.0 ? hash(reinterpret_cast<const uchar *>(&key), sizeof(key), seed) : seed ;executed 19289 times by 40 tests: return key != 0.0 ? hash(reinterpret_cast<const uchar *>(&key), sizeof(key), seed) : seed ;Executed by:- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QApplication
- tst_QCompleter
- tst_QDataWidgetMapper
- tst_QErrorMessage
- tst_QGraphicsItem
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QHashFunctions
- tst_QItemDelegate
- tst_QLabel
- tst_QMainWindow
- tst_QMdiArea
- tst_QMdiSubWindow
- tst_QMessageBox
- tst_QPlainTextEdit
- tst_QShortcut
- tst_QSplitter
- tst_QStateMachine
- tst_QStaticText
- tst_QStyleSheetStyle
- tst_QSyntaxHighlighter
- tst_QTableView
- ...
| 19289 |
| 488 | } | - |
| 489 | | - |
| 490 | | - |
| 491 | | - |
| 492 | | - |
| 493 | | - |
| 494 | | - |
| 495 | | - |
| 496 | uint qHash(long double key, uint seed) noexcept | - |
| 497 | { | - |
| 498 | returnexecuted 2 times by 1 test: return key != 0.0L ? hash(reinterpret_cast<const uchar *>(&key), sizeof(key), seed) : seed ; key != 0.0L ? hash(reinterpret_cast<const uchar *>(&key), sizeof(key), seed) : seed ;executed 2 times by 1 test: return key != 0.0L ? hash(reinterpret_cast<const uchar *>(&key), sizeof(key), seed) : seed ; | 2 |
| 499 | } | - |
| 500 | | - |
| | |