| Line | Source | Count |
| 1 | | - |
| 2 | | - |
| 3 | | - |
| 4 | | - |
| 5 | | - |
| 6 | | - |
| 7 | | - |
| 8 | | - |
| 9 | | - |
| 10 | | - |
| 11 | | - |
| 12 | | - |
| 13 | | - |
| 14 | | - |
| 15 | | - |
| 16 | | - |
| 17 | | - |
| 18 | | - |
| 19 | | - |
| 20 | | - |
| 21 | | - |
| 22 | | - |
| 23 | | - |
| 24 | | - |
| 25 | | - |
| 26 | | - |
| 27 | | - |
| 28 | | - |
| 29 | | - |
| 30 | | - |
| 31 | | - |
| 32 | | - |
| 33 | | - |
| 34 | #include "qfilesystementry_p.h" | - |
| 35 | | - |
| 36 | #include <QtCore/qdir.h> | - |
| 37 | #include <QtCore/qfile.h> | - |
| 38 | #include <QtCore/private/qfsfileengine_p.h> | - |
| 39 | #ifdef Q_OS_WIN | - |
| 40 | #include <QtCore/qstringbuilder.h> | - |
| 41 | #endif | - |
| 42 | | - |
| 43 | QT_BEGIN_NAMESPACE | - |
| 44 | | - |
| 45 | #ifdef Q_OS_WIN | - |
| 46 | static bool isUncRoot(const QString &server) | - |
| 47 | { | - |
| 48 | QString localPath = QDir::toNativeSeparators(server); | - |
| 49 | if (!localPath.startsWith(QLatin1String("\\\\"))) | - |
| 50 | return false; | - |
| 51 | | - |
| 52 | int idx = localPath.indexOf(QLatin1Char('\\'), 2); | - |
| 53 | if (idx == -1 || idx + 1 == localPath.length()) | - |
| 54 | return true; | - |
| 55 | | - |
| 56 | return localPath.rightRef(localPath.length() - idx - 1).trimmed().isEmpty(); | - |
| 57 | } | - |
| 58 | | - |
| 59 | static inline QString fixIfRelativeUncPath(const QString &path) | - |
| 60 | { | - |
| 61 | QString currentPath = QDir::currentPath(); | - |
| 62 | if (currentPath.startsWith(QLatin1String("//"))) | - |
| 63 | return currentPath % QChar(QLatin1Char('/')) % path; | - |
| 64 | return path; | - |
| 65 | } | - |
| 66 | #endif | - |
| 67 | | - |
| 68 | QFileSystemEntry::QFileSystemEntry() | - |
| 69 | : m_lastSeparator(-1), | - |
| 70 | m_firstDotInFileName(-1), | - |
| 71 | m_lastDotInFileName(-1) | - |
| 72 | { | - |
| 73 | }executed 499709 times by 271 tests: end of blockExecuted by:- tst_Gestures
- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- ...
| 499709 |
| 74 | | - |
| 75 | | - |
| 76 | | - |
| 77 | | - |
| 78 | | - |
| 79 | | - |
| 80 | QFileSystemEntry::QFileSystemEntry(const QString &filePath) | - |
| 81 | : m_filePath(QDir::fromNativeSeparators(filePath)), | - |
| 82 | m_lastSeparator(-2), | - |
| 83 | m_firstDotInFileName(-2), | - |
| 84 | m_lastDotInFileName(0) | - |
| 85 | { | - |
| 86 | }executed 443828 times by 309 tests: end of blockExecuted by:- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QCheckBox
- tst_QClipboard
- ...
| 443828 |
| 87 | | - |
| 88 | | - |
| 89 | | - |
| 90 | | - |
| 91 | | - |
| 92 | | - |
| 93 | QFileSystemEntry::QFileSystemEntry(const QString &filePath, FromInternalPath ) | - |
| 94 | : m_filePath(filePath), | - |
| 95 | m_lastSeparator(-2), | - |
| 96 | m_firstDotInFileName(-2), | - |
| 97 | m_lastDotInFileName(0) | - |
| 98 | { | - |
| 99 | }executed 123586 times by 249 tests: end of blockExecuted by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- ...
| 123586 |
| 100 | | - |
| 101 | | - |
| 102 | | - |
| 103 | | - |
| 104 | | - |
| 105 | QFileSystemEntry::QFileSystemEntry(const NativePath &nativeFilePath, FromNativePath ) | - |
| 106 | : m_nativeFilePath(nativeFilePath), | - |
| 107 | m_lastSeparator(-2), | - |
| 108 | m_firstDotInFileName(-2), | - |
| 109 | m_lastDotInFileName(0) | - |
| 110 | { | - |
| 111 | }executed 108404 times by 183 tests: end of blockExecuted by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCssParser
- tst_QDBusMarshall
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- ...
| 108404 |
| 112 | | - |
| 113 | QFileSystemEntry::QFileSystemEntry(const QString &filePath, const NativePath &nativeFilePath) | - |
| 114 | : m_filePath(QDir::fromNativeSeparators(filePath)), | - |
| 115 | m_nativeFilePath(nativeFilePath), | - |
| 116 | m_lastSeparator(-2), | - |
| 117 | m_firstDotInFileName(-2), | - |
| 118 | m_lastDotInFileName(0) | - |
| 119 | { | - |
| 120 | } never executed: end of block | 0 |
| 121 | | - |
| 122 | QString QFileSystemEntry::filePath() const | - |
| 123 | { | - |
| 124 | resolveFilePath(); | - |
| 125 | return m_filePath;executed 924698 times by 304 tests: return m_filePath;Executed by:- tst_Gestures
- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
| 924698 |
| 126 | } | - |
| 127 | | - |
| 128 | QFileSystemEntry::NativePath QFileSystemEntry::nativeFilePath() const | - |
| 129 | { | - |
| 130 | resolveNativeFilePath(); | - |
| 131 | return m_nativeFilePath;executed 307093 times by 270 tests: return m_nativeFilePath;Executed by:- tst_Gestures
- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- ...
| 307093 |
| 132 | } | - |
| 133 | | - |
| 134 | void QFileSystemEntry::resolveFilePath() const | - |
| 135 | { | - |
| 136 | if (m_filePath.isEmpty() && !m_nativeFilePath.isEmpty()) {| TRUE | evaluated 211086 times by 183 testsEvaluated by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCssParser
- tst_QDBusMarshall
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- ...
| | FALSE | evaluated 1133971 times by 309 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QCheckBox
- tst_QClipboard
- ...
|
| TRUE | evaluated 207361 times by 183 testsEvaluated by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCssParser
- tst_QDBusMarshall
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- ...
| | FALSE | evaluated 3725 times by 35 testsEvaluated by:- tst_QApplication
- tst_QBrush
- tst_QDataStream
- tst_QDir
- tst_QFile
- tst_QFileDialog2
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFtp
- tst_QGuiVariant
- tst_QIcoImageFormat
- tst_QIcon
- tst_QImage
- tst_QImageReader
- tst_QLocalSocket
- tst_QMimeDatabase
- tst_QNetworkDiskCache
- tst_QPixmap
- tst_QPlainTextEdit
- tst_QPluginLoader
- tst_QSslCertificate
- tst_QSslSocket
- tst_QSslSocket_onDemandCertificates_static
- ...
|
| 3725-1133971 |
| 137 | #if defined(QFILESYSTEMENTRY_NATIVE_PATH_IS_UTF16) | - |
| 138 | m_filePath = QDir::fromNativeSeparators(m_nativeFilePath); | - |
| 139 | #ifdef Q_OS_WIN | - |
| 140 | if (m_filePath.startsWith(QLatin1String("//?/UNC/"))) | - |
| 141 | m_filePath = m_filePath.remove(2,6); | - |
| 142 | if (m_filePath.startsWith(QLatin1String("//?/"))) | - |
| 143 | m_filePath = m_filePath.remove(0,4); | - |
| 144 | #endif | - |
| 145 | #else | - |
| 146 | m_filePath = QDir::fromNativeSeparators(QFile::decodeName(m_nativeFilePath)); | - |
| 147 | #endif | - |
| 148 | }executed 207361 times by 183 tests: end of blockExecuted by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCssParser
- tst_QDBusMarshall
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- ...
| 207361 |
| 149 | }executed 1345057 times by 309 tests: end of blockExecuted by:- tst_Gestures
- tst_Lancelot
- tst_LargeFile
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QCheckBox
- tst_QClipboard
- ...
| 1345057 |
| 150 | | - |
| 151 | void QFileSystemEntry::resolveNativeFilePath() const | - |
| 152 | { | - |
| 153 | if (!m_filePath.isEmpty() && m_nativeFilePath.isEmpty()) {| TRUE | evaluated 304945 times by 270 testsEvaluated by:- tst_Gestures
- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- ...
| | FALSE | evaluated 2148 times by 37 testsEvaluated by:- tst_QColorDialog
- tst_QCoreApplication
- tst_QDir
- tst_QDirIterator
- tst_QDirModel
- tst_QFile
- tst_QFileDialog2
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QGraphicsWidget
- tst_QGuiApplication
- tst_QIcon
- tst_QImageReader
- tst_QImageWriter
- tst_QLocalSocket
- tst_QMimeDatabase
- tst_QNetworkDiskCache
- tst_QPixmap
- tst_QPixmapFilter
- tst_QPlainTextEdit
- tst_QPluginLoader
- tst_QProcess
- ...
|
| TRUE | evaluated 199364 times by 270 testsEvaluated by:- tst_Gestures
- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- ...
| | FALSE | evaluated 105581 times by 174 testsEvaluated by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QChar
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCssParser
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDataStream
- ...
|
| 2148-304945 |
| 154 | #ifdef Q_OS_WIN | - |
| 155 | QString filePath = m_filePath; | - |
| 156 | if (isRelative()) | - |
| 157 | filePath = fixIfRelativeUncPath(m_filePath); | - |
| 158 | m_nativeFilePath = QFSFileEnginePrivate::longFileName(QDir::toNativeSeparators(filePath)); | - |
| 159 | #elif defined(QFILESYSTEMENTRY_NATIVE_PATH_IS_UTF16) | - |
| 160 | m_nativeFilePath = QDir::toNativeSeparators(m_filePath); | - |
| 161 | #else | - |
| 162 | m_nativeFilePath = QFile::encodeName(QDir::toNativeSeparators(m_filePath)); | - |
| 163 | #endif | - |
| 164 | #ifdef Q_OS_WINRT | - |
| 165 | while (m_nativeFilePath.startsWith(QLatin1Char('\\'))) | - |
| 166 | m_nativeFilePath.remove(0,1); | - |
| 167 | if (m_nativeFilePath.isEmpty()) | - |
| 168 | m_nativeFilePath.append(QLatin1Char('.')); | - |
| 169 | | - |
| 170 | | - |
| 171 | | - |
| 172 | #if _MSC_VER >= 1900 | - |
| 173 | m_nativeFilePath.prepend("\\\\?\\"); | - |
| 174 | #endif | - |
| 175 | #endif | - |
| 176 | }executed 199364 times by 270 tests: end of blockExecuted by:- tst_Gestures
- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- ...
| 199364 |
| 177 | }executed 307093 times by 270 tests: end of blockExecuted by:- tst_Gestures
- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- ...
| 307093 |
| 178 | | - |
| 179 | QString QFileSystemEntry::fileName() const | - |
| 180 | { | - |
| 181 | findLastSeparator(); | - |
| 182 | #if defined(Q_OS_WIN) | - |
| 183 | if (m_lastSeparator == -1 && m_filePath.length() >= 2 && m_filePath.at(1) == QLatin1Char(':')) | - |
| 184 | return m_filePath.mid(2); | - |
| 185 | #endif | - |
| 186 | return m_filePath.mid(m_lastSeparator + 1);executed 187505 times by 194 tests: return m_filePath.mid(m_lastSeparator + 1);Executed by:- tst_Lancelot
- tst_LargeFile
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QChar
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- ...
| 187505 |
| 187 | } | - |
| 188 | | - |
| 189 | QString QFileSystemEntry::path() const | - |
| 190 | { | - |
| 191 | findLastSeparator(); | - |
| 192 | if (m_lastSeparator == -1) {| TRUE | evaluated 1605 times by 54 testsEvaluated by:- tst_Lancelot
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QChar
- tst_QDnsLookup
- tst_QDnsLookup_Appless
- tst_QFile
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFontDialog
- tst_QFtp
- tst_QGlyphRun
- tst_QGraphicsView
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QHttpSocketEngine
- tst_QIODevice
- tst_QLabel
- tst_QLibrary
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- ...
| | FALSE | evaluated 37102 times by 169 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCssParser
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDataStream
- tst_QDateTimeEdit
- ...
|
| 1605-37102 |
| 193 | #if defined(Q_OS_WIN) | - |
| 194 | if (m_filePath.length() >= 2 && m_filePath.at(1) == QLatin1Char(':')) | - |
| 195 | return m_filePath.left(2); | - |
| 196 | #endif | - |
| 197 | return QString(QLatin1Char('.'));executed 1605 times by 54 tests: return QString(QLatin1Char('.'));Executed by:- tst_Lancelot
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QChar
- tst_QDnsLookup
- tst_QDnsLookup_Appless
- tst_QFile
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFontDialog
- tst_QFtp
- tst_QGlyphRun
- tst_QGraphicsView
- tst_QGuiApplication
- tst_QHostInfo
- tst_QHttpNetworkConnection
- tst_QHttpSocketEngine
- tst_QIODevice
- tst_QLabel
- tst_QLibrary
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkDiskCache
- tst_QNetworkInterface
- ...
| 1605 |
| 198 | } | - |
| 199 | if (m_lastSeparator == 0)| TRUE | evaluated 995 times by 16 testsEvaluated by:- tst_QCompleter
- tst_QDir
- tst_QDirModel
- tst_QFileDialog2
- tst_QFileInfo
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QItemModel
- tst_QMimeDatabase
- tst_QPrinter
- tst_QSidebar
- tst_QStorageInfo
- tst_QTemporaryDir
- tst_languageChange
- tst_qmakelib
| | FALSE | evaluated 36107 times by 169 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCssParser
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDataStream
- tst_QDateTimeEdit
- ...
|
| 995-36107 |
| 200 | return QString(QLatin1Char('/'));executed 995 times by 16 tests: return QString(QLatin1Char('/'));Executed by:- tst_QCompleter
- tst_QDir
- tst_QDirModel
- tst_QFileDialog2
- tst_QFileInfo
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QItemModel
- tst_QMimeDatabase
- tst_QPrinter
- tst_QSidebar
- tst_QStorageInfo
- tst_QTemporaryDir
- tst_languageChange
- tst_qmakelib
| 995 |
| 201 | #if defined(Q_OS_WIN) | - |
| 202 | if (m_lastSeparator == 2 && m_filePath.at(1) == QLatin1Char(':')) | - |
| 203 | return m_filePath.left(m_lastSeparator + 1); | - |
| 204 | #endif | - |
| 205 | return m_filePath.left(m_lastSeparator);executed 36107 times by 169 tests: return m_filePath.left(m_lastSeparator);Executed by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCssParser
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDataStream
- tst_QDateTimeEdit
- ...
| 36107 |
| 206 | } | - |
| 207 | | - |
| 208 | QString QFileSystemEntry::baseName() const | - |
| 209 | { | - |
| 210 | findFileNameSeparators(); | - |
| 211 | int length = -1; | - |
| 212 | if (m_firstDotInFileName >= 0) {| TRUE | evaluated 11706 times by 78 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFrame
- tst_QGraphicsEffect
- ...
| | FALSE | evaluated 253 times by 15 testsEvaluated by:- tst_QBrush
- tst_QCssParser
- tst_QDataStream
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QGuiVariant
- tst_QIcoImageFormat
- tst_QIcon
- tst_QImage
- tst_QImageReader
- tst_QImageWriter
- tst_QPixmap
- tst_QTextDocument
- tst_QTextDocumentFragment
- tst_QTextEdit
|
| 253-11706 |
| 213 | length = m_firstDotInFileName; | - |
| 214 | if (m_lastSeparator != -1) | TRUE | evaluated 11479 times by 75 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFrame
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- ...
| | FALSE | evaluated 227 times by 6 testsEvaluated by:- tst_QDataStream
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QImageWriter
- tst_QPixmapFilter
- tst_QXmlStream
|
| 227-11479 |
| 215 | length--;executed 11479 times by 75 tests: length--;Executed by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFrame
- tst_QGraphicsEffect
- tst_QGraphicsEffectSource
- ...
| 11479 |
| 216 | }executed 11706 times by 78 tests: end of blockExecuted by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFrame
- tst_QGraphicsEffect
- ...
| 11706 |
| 217 | #if defined(Q_OS_WIN) | - |
| 218 | if (m_lastSeparator == -1 && m_filePath.length() >= 2 && m_filePath.at(1) == QLatin1Char(':')) | - |
| 219 | return m_filePath.mid(2, length - 2); | - |
| 220 | #endif | - |
| 221 | return m_filePath.mid(m_lastSeparator + 1, length);executed 11959 times by 82 tests: return m_filePath.mid(m_lastSeparator + 1, length);Executed by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- ...
| 11959 |
| 222 | } | - |
| 223 | | - |
| 224 | QString QFileSystemEntry::completeBaseName() const | - |
| 225 | { | - |
| 226 | findFileNameSeparators(); | - |
| 227 | int length = -1; | - |
| 228 | if (m_firstDotInFileName >= 0) {| TRUE | evaluated 26 times by 2 testsEvaluated by:- tst_QFileInfo
- tst_QFileSystemEntry
| | FALSE | evaluated 12 times by 2 testsEvaluated by:- tst_QFileInfo
- tst_QFileSystemEntry
|
| 12-26 |
| 229 | length = m_firstDotInFileName + m_lastDotInFileName; | - |
| 230 | if (m_lastSeparator != -1) | TRUE | evaluated 20 times by 2 testsEvaluated by:- tst_QFileInfo
- tst_QFileSystemEntry
| | FALSE | evaluated 6 times by 2 testsEvaluated by:- tst_QFileInfo
- tst_QFileSystemEntry
|
| 6-20 |
| 231 | length--;executed 20 times by 2 tests: length--;Executed by:- tst_QFileInfo
- tst_QFileSystemEntry
| 20 |
| 232 | }executed 26 times by 2 tests: end of blockExecuted by:- tst_QFileInfo
- tst_QFileSystemEntry
| 26 |
| 233 | #if defined(Q_OS_WIN) | - |
| 234 | if (m_lastSeparator == -1 && m_filePath.length() >= 2 && m_filePath.at(1) == QLatin1Char(':')) | - |
| 235 | return m_filePath.mid(2, length - 2); | - |
| 236 | #endif | - |
| 237 | return m_filePath.mid(m_lastSeparator + 1, length);executed 38 times by 2 tests: return m_filePath.mid(m_lastSeparator + 1, length);Executed by:- tst_QFileInfo
- tst_QFileSystemEntry
| 38 |
| 238 | } | - |
| 239 | | - |
| 240 | QString QFileSystemEntry::suffix() const | - |
| 241 | { | - |
| 242 | findFileNameSeparators(); | - |
| 243 | | - |
| 244 | if (m_lastDotInFileName == -1)| TRUE | evaluated 1981 times by 16 testsEvaluated by:- tst_QCompleter
- tst_QDir
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QGraphicsWidget
- tst_QIcon
- tst_QImageReader
- tst_QImageWriter
- tst_QItemModel
- tst_QPrinter
- tst_languageChange
| | FALSE | evaluated 15152 times by 77 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFrame
- ...
|
| 1981-15152 |
| 245 | return QString();executed 1981 times by 16 tests: return QString();Executed by:- tst_QCompleter
- tst_QDir
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QGraphicsWidget
- tst_QIcon
- tst_QImageReader
- tst_QImageWriter
- tst_QItemModel
- tst_QPrinter
- tst_languageChange
| 1981 |
| 246 | | - |
| 247 | return m_filePath.mid(qMax((qint16)0, m_lastSeparator) + m_firstDotInFileName + m_lastDotInFileName + 1);executed 15152 times by 77 tests: return m_filePath.mid(qMax((qint16)0, m_lastSeparator) + m_firstDotInFileName + m_lastDotInFileName + 1);Executed by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFrame
- ...
| 15152 |
| 248 | } | - |
| 249 | | - |
| 250 | QString QFileSystemEntry::completeSuffix() const | - |
| 251 | { | - |
| 252 | findFileNameSeparators(); | - |
| 253 | if (m_firstDotInFileName == -1)| TRUE | evaluated 18 times by 4 testsEvaluated by:- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QLabel
- tst_QPixmap
| | FALSE | evaluated 1146 times by 36 testsEvaluated by:- tst_QAbstractItemView
- tst_QAccessibility
- tst_QButtonGroup
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontDialog
- tst_QFrame
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QGroupBox
- tst_QIcon
- tst_QLabel
- tst_QLineEdit
- tst_QMdiSubWindow
- tst_QMessageBox
- tst_QPixmap
- tst_QPixmapFilter
- ...
|
| 18-1146 |
| 254 | return QString();executed 18 times by 4 tests: return QString();Executed by:- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QLabel
- tst_QPixmap
| 18 |
| 255 | | - |
| 256 | return m_filePath.mid(qMax((qint16)0, m_lastSeparator) + m_firstDotInFileName + 1);executed 1146 times by 36 tests: return m_filePath.mid(qMax((qint16)0, m_lastSeparator) + m_firstDotInFileName + 1);Executed by:- tst_QAbstractItemView
- tst_QAccessibility
- tst_QButtonGroup
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFontDialog
- tst_QFrame
- tst_QGraphicsProxyWidget
- tst_QGraphicsScene
- tst_QGraphicsView
- tst_QGroupBox
- tst_QIcon
- tst_QLabel
- tst_QLineEdit
- tst_QMdiSubWindow
- tst_QMessageBox
- tst_QPixmap
- tst_QPixmapFilter
- ...
| 1146 |
| 257 | } | - |
| 258 | | - |
| 259 | #if defined(Q_OS_WIN) | - |
| 260 | bool QFileSystemEntry::isRelative() const | - |
| 261 | { | - |
| 262 | resolveFilePath(); | - |
| 263 | return (m_filePath.isEmpty() | - |
| 264 | || (m_filePath.at(0).unicode() != '/' | - |
| 265 | && !(m_filePath.length() >= 2 && m_filePath.at(1).unicode() == ':'))); | - |
| 266 | } | - |
| 267 | | - |
| 268 | bool QFileSystemEntry::isAbsolute() const | - |
| 269 | { | - |
| 270 | resolveFilePath(); | - |
| 271 | return ((m_filePath.length() >= 3 | - |
| 272 | && m_filePath.at(0).isLetter() | - |
| 273 | && m_filePath.at(1).unicode() == ':' | - |
| 274 | && m_filePath.at(2).unicode() == '/') | - |
| 275 | || (m_filePath.length() >= 2 | - |
| 276 | && m_filePath.at(0) == QLatin1Char('/') | - |
| 277 | && m_filePath.at(1) == QLatin1Char('/'))); | - |
| 278 | } | - |
| 279 | #else | - |
| 280 | bool QFileSystemEntry::isRelative() const | - |
| 281 | { | - |
| 282 | return !isAbsolute();executed 129548 times by 252 tests: return !isAbsolute();Executed by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- ...
| 129548 |
| 283 | } | - |
| 284 | | - |
| 285 | bool QFileSystemEntry::isAbsolute() const | - |
| 286 | { | - |
| 287 | resolveFilePath(); | - |
| 288 | return (!m_filePath.isEmpty() && (m_filePath.at(0).unicode() == '/'));executed 143608 times by 266 tests: return (!m_filePath.isEmpty() && (m_filePath.at(0).unicode() == '/'));Executed by:- tst_Gestures
- tst_Lancelot
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
| TRUE | evaluated 143591 times by 266 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- ...
| | FALSE | evaluated 17 times by 7 testsEvaluated by:- tst_QDir
- tst_QFileSystemEntry
- tst_QFiledialog
- tst_QPluginLoader
- tst_QUrl
- tst_qmakelib
- tst_qstandardpaths
|
| TRUE | evaluated 27593 times by 220 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| | FALSE | evaluated 115998 times by 238 testsEvaluated by:- tst_Gestures
- tst_Lancelot
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- ...
|
| 17-143608 |
| 289 | } | - |
| 290 | #endif | - |
| 291 | | - |
| 292 | #if defined(Q_OS_WIN) | - |
| 293 | bool QFileSystemEntry::isDriveRoot() const | - |
| 294 | { | - |
| 295 | resolveFilePath(); | - |
| 296 | #ifndef Q_OS_WINRT | - |
| 297 | return (m_filePath.length() == 3 | - |
| 298 | && m_filePath.at(0).isLetter() && m_filePath.at(1) == QLatin1Char(':') | - |
| 299 | && m_filePath.at(2) == QLatin1Char('/')); | - |
| 300 | #else // !Q_OS_WINRT | - |
| 301 | return m_filePath == QDir::rootPath(); | - |
| 302 | #endif // !Q_OS_WINRT | - |
| 303 | } | - |
| 304 | #endif | - |
| 305 | | - |
| 306 | bool QFileSystemEntry::isRoot() const | - |
| 307 | { | - |
| 308 | resolveFilePath(); | - |
| 309 | if (m_filePath == QLatin1String("/")| TRUE | evaluated 692 times by 14 testsEvaluated by:- tst_QCompleter
- tst_QDir
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QItemModel
- tst_QPrinter
- tst_QSidebar
- tst_QStorageInfo
- tst_languageChange
- tst_qmakelib
| | FALSE | evaluated 39359 times by 160 testsEvaluated by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QChar
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCssParser
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDataStream
- ...
|
| 692-39359 |
| 310 | #if defined(Q_OS_WIN) | - |
| 311 | || isDriveRoot() | - |
| 312 | || isUncRoot(m_filePath) | - |
| 313 | #endif | - |
| 314 | ) | - |
| 315 | return true;executed 692 times by 14 tests: return true;Executed by:- tst_QCompleter
- tst_QDir
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QItemModel
- tst_QPrinter
- tst_QSidebar
- tst_QStorageInfo
- tst_languageChange
- tst_qmakelib
| 692 |
| 316 | | - |
| 317 | return false;executed 39359 times by 160 tests: return false;Executed by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QChar
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCssParser
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDataStream
- ...
| 39359 |
| 318 | } | - |
| 319 | | - |
| 320 | bool QFileSystemEntry::isEmpty() const | - |
| 321 | { | - |
| 322 | return m_filePath.isEmpty() && m_nativeFilePath.isEmpty();executed 82433 times by 231 tests: return m_filePath.isEmpty() && m_nativeFilePath.isEmpty();Executed by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- ...
| TRUE | evaluated 10709 times by 147 testsEvaluated by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QByteArray
- tst_QClipboard
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDataStream
- tst_QDir
- tst_QDirIterator
- tst_QDirModel
- tst_QDnsLookup_Appless
- tst_QFactoryLoader
- ...
| | FALSE | evaluated 71724 times by 227 testsEvaluated by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- ...
|
| TRUE | evaluated 8534 times by 137 testsEvaluated by:- tst_LargeFile
- tst_QAbstractFileEngine
- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QByteArray
- tst_QClipboard
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDataStream
- tst_QDir
- tst_QDirIterator
- tst_QDirModel
- tst_QDnsLookup_Appless
- tst_QFactoryLoader
- tst_QFile
- ...
| | FALSE | evaluated 2175 times by 56 testsEvaluated by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QCoreApplication
- tst_QDataStream
- tst_QDir
- tst_QDirIterator
- tst_QDirModel
- tst_QFile
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemModel
- tst_QFileSystemWatcher
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QGraphicsWidget
- tst_QGuiApplication
- tst_QIODevice
- tst_QIcon
- tst_QImageReader
- tst_QImageWriter
- tst_QLocalSocket
- tst_QLocale
- tst_QMimeDatabase
- ...
|
| 2175-82433 |
| 323 | } | - |
| 324 | | - |
| 325 | | - |
| 326 | | - |
| 327 | void QFileSystemEntry::findLastSeparator() const | - |
| 328 | { | - |
| 329 | if (m_lastSeparator == -2) {| TRUE | evaluated 187484 times by 216 testsEvaluated by:- tst_Lancelot
- tst_LargeFile
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCssParser
- tst_QDBusConnectionNoBus
- ...
| | FALSE | evaluated 38728 times by 165 testsEvaluated by:- tst_Lancelot
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- ...
|
| 38728-187484 |
| 330 | resolveFilePath(); | - |
| 331 | m_lastSeparator = m_filePath.lastIndexOf(QLatin1Char('/')); | - |
| 332 | }executed 187484 times by 216 tests: end of blockExecuted by:- tst_Lancelot
- tst_LargeFile
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCssParser
- tst_QDBusConnectionNoBus
- ...
| 187484 |
| 333 | }executed 226212 times by 216 tests: end of blockExecuted by:- tst_Lancelot
- tst_LargeFile
- tst_NetworkSelfTest
- tst_PlatformSocketEngine
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCssParser
- tst_QDBusConnectionNoBus
- ...
| 226212 |
| 334 | | - |
| 335 | void QFileSystemEntry::findFileNameSeparators() const | - |
| 336 | { | - |
| 337 | if (m_firstDotInFileName == -2) {| TRUE | evaluated 28591 times by 87 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- ...
| | FALSE | evaluated 1703 times by 11 testsEvaluated by:- tst_QCompleter
- tst_QDir
- tst_QFileDialog2
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QItemModel
- tst_QPrinter
- tst_languageChange
- tst_rcc
|
| 1703-28591 |
| 338 | resolveFilePath(); | - |
| 339 | int firstDotInFileName = -1; | - |
| 340 | int lastDotInFileName = -1; | - |
| 341 | int lastSeparator = m_lastSeparator; | - |
| 342 | | - |
| 343 | int stop; | - |
| 344 | if (lastSeparator < 0) {| TRUE | evaluated 26272 times by 83 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- ...
| | FALSE | evaluated 2319 times by 13 testsEvaluated by:- tst_QCompleter
- tst_QCssParser
- tst_QDir
- tst_QFileDialog2
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QItemModel
- tst_QPrinter
- tst_languageChange
- tst_rcc
- tst_uic
|
| 2319-26272 |
| 345 | lastSeparator = -1; | - |
| 346 | stop = 0; | - |
| 347 | } else {executed 26272 times by 83 tests: end of blockExecuted by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- ...
| 26272 |
| 348 | stop = lastSeparator; | - |
| 349 | }executed 2319 times by 13 tests: end of blockExecuted by:- tst_QCompleter
- tst_QCssParser
- tst_QDir
- tst_QFileDialog2
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QItemModel
- tst_QPrinter
- tst_languageChange
- tst_rcc
- tst_uic
| 2319 |
| 350 | | - |
| 351 | int i = m_filePath.size() - 1; | - |
| 352 | for (; i >= stop; --i) {| TRUE | evaluated 118541 times by 85 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- ...
| | FALSE | evaluated 256 times by 17 testsEvaluated by:- tst_QBrush
- tst_QDataStream
- tst_QFileDialog2
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFiledialog
- tst_QGraphicsWidget
- tst_QGuiVariant
- tst_QIcoImageFormat
- tst_QIcon
- tst_QImage
- tst_QImageReader
- tst_QPixmap
- tst_QPrinter
- tst_QTextDocument
- tst_QTextDocumentFragment
- tst_QTextEdit
|
| 256-118541 |
| 353 | if (m_filePath.at(i).unicode() == '.') {| TRUE | evaluated 27103 times by 84 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFrame
- ...
| | FALSE | evaluated 91438 times by 85 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- ...
|
| 27103-91438 |
| 354 | firstDotInFileName = lastDotInFileName = i; | - |
| 355 | break;executed 27103 times by 84 tests: break;Executed by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFrame
- ...
| 27103 |
| 356 | } else if (m_filePath.at(i).unicode() == '/') {| TRUE | evaluated 1232 times by 16 testsEvaluated by:- tst_QCompleter
- tst_QCssParser
- tst_QDir
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QImageReader
- tst_QImageWriter
- tst_QItemModel
- tst_QLabel
- tst_QPixmap
- tst_languageChange
| | FALSE | evaluated 90206 times by 85 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- ...
|
| 1232-90206 |
| 357 | lastSeparator = i; | - |
| 358 | break;executed 1232 times by 16 tests: break;Executed by:- tst_QCompleter
- tst_QCssParser
- tst_QDir
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QImageReader
- tst_QImageWriter
- tst_QItemModel
- tst_QLabel
- tst_QPixmap
- tst_languageChange
| 1232 |
| 359 | } | - |
| 360 | }executed 90206 times by 85 tests: end of blockExecuted by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- ...
| 90206 |
| 361 | | - |
| 362 | if (lastSeparator != i) {| TRUE | evaluated 27103 times by 84 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFrame
- ...
| | FALSE | evaluated 1488 times by 27 testsEvaluated by:- tst_QBrush
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDir
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QGraphicsWidget
- tst_QGuiVariant
- tst_QIcoImageFormat
- tst_QIcon
- tst_QImage
- tst_QImageReader
- tst_QImageWriter
- tst_QItemModel
- tst_QLabel
- tst_QPixmap
- tst_QPrinter
- tst_QTextDocument
- tst_QTextDocumentFragment
- ...
|
| 1488-27103 |
| 363 | for (--i; i >= stop; --i) {| TRUE | evaluated 307787 times by 84 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFrame
- ...
| | FALSE | evaluated 337 times by 20 testsEvaluated by:- tst_QDataStream
- tst_QFileDialog2
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFiledialog
- tst_QGraphicsView
- tst_QIcon
- tst_QImageWriter
- tst_QMessageBox
- tst_QPainter
- tst_QPixmap
- tst_QPixmapFilter
- tst_QPlugin
- tst_QPrinter
- tst_QStyleSheetStyle
- tst_QSystemTrayIcon
- tst_QTextDocumentLayout
- tst_QTextEdit
- tst_QXmlStream
- tst_qlibrary - unknown status
|
| 337-307787 |
| 364 | if (m_filePath.at(i).unicode() == '.')| TRUE | evaluated 199 times by 9 testsEvaluated by:- tst_QCompleter
- tst_QDir
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFiledialog
- tst_QItemModel
- tst_QPlugin
- tst_qlibrary - unknown status
- tst_uic
| | FALSE | evaluated 307588 times by 84 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFrame
- ...
|
| 199-307588 |
| 365 | firstDotInFileName = i;executed 199 times by 9 tests: firstDotInFileName = i;Executed by:- tst_QCompleter
- tst_QDir
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFiledialog
- tst_QItemModel
- tst_QPlugin
- tst_qlibrary - unknown status
- tst_uic
| 199 |
| 366 | else if (m_filePath.at(i).unicode() == '/') {| TRUE | evaluated 26766 times by 78 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFrame
- tst_QGraphicsEffect
- ...
| | FALSE | evaluated 280822 times by 84 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFrame
- ...
|
| 26766-280822 |
| 367 | lastSeparator = i; | - |
| 368 | break;executed 26766 times by 78 tests: break;Executed by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFrame
- tst_QGraphicsEffect
- ...
| 26766 |
| 369 | } | - |
| 370 | }executed 281021 times by 84 tests: end of blockExecuted by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFrame
- ...
| 281021 |
| 371 | }executed 27103 times by 84 tests: end of blockExecuted by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFrame
- ...
| 27103 |
| 372 | m_lastSeparator = lastSeparator; | - |
| 373 | m_firstDotInFileName = firstDotInFileName == -1 ? -1 : firstDotInFileName - qMax(0, lastSeparator);| TRUE | evaluated 1488 times by 27 testsEvaluated by:- tst_QBrush
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDir
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QGraphicsWidget
- tst_QGuiVariant
- tst_QIcoImageFormat
- tst_QIcon
- tst_QImage
- tst_QImageReader
- tst_QImageWriter
- tst_QItemModel
- tst_QLabel
- tst_QPixmap
- tst_QPrinter
- tst_QTextDocument
- tst_QTextDocumentFragment
- ...
| | FALSE | evaluated 27103 times by 84 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFrame
- ...
|
| 1488-27103 |
| 374 | if (lastDotInFileName == -1)| TRUE | evaluated 1488 times by 27 testsEvaluated by:- tst_QBrush
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDir
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QGraphicsWidget
- tst_QGuiVariant
- tst_QIcoImageFormat
- tst_QIcon
- tst_QImage
- tst_QImageReader
- tst_QImageWriter
- tst_QItemModel
- tst_QLabel
- tst_QPixmap
- tst_QPrinter
- tst_QTextDocument
- tst_QTextDocumentFragment
- ...
| | FALSE | evaluated 27103 times by 84 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFrame
- ...
|
| 1488-27103 |
| 375 | m_lastDotInFileName = -1;executed 1488 times by 27 tests: m_lastDotInFileName = -1;Executed by:- tst_QBrush
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDir
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QGraphicsWidget
- tst_QGuiVariant
- tst_QIcoImageFormat
- tst_QIcon
- tst_QImage
- tst_QImageReader
- tst_QImageWriter
- tst_QItemModel
- tst_QLabel
- tst_QPixmap
- tst_QPrinter
- tst_QTextDocument
- tst_QTextDocumentFragment
- ...
| 1488 |
| 376 | else if (firstDotInFileName == lastDotInFileName)| TRUE | evaluated 26917 times by 84 testsEvaluated by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFrame
- ...
| | FALSE | evaluated 186 times by 9 testsEvaluated by:- tst_QCompleter
- tst_QDir
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFiledialog
- tst_QItemModel
- tst_QPlugin
- tst_qlibrary - unknown status
- tst_uic
|
| 186-26917 |
| 377 | m_lastDotInFileName = 0;executed 26917 times by 84 tests: m_lastDotInFileName = 0;Executed by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- tst_QFontDialog
- tst_QFrame
- ...
| 26917 |
| 378 | else | - |
| 379 | m_lastDotInFileName = lastDotInFileName - firstDotInFileName;executed 186 times by 9 tests: m_lastDotInFileName = lastDotInFileName - firstDotInFileName;Executed by:- tst_QCompleter
- tst_QDir
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFiledialog
- tst_QItemModel
- tst_QPlugin
- tst_qlibrary - unknown status
- tst_uic
| 186 |
| 380 | } | - |
| 381 | }executed 30294 times by 87 tests: end of blockExecuted by:- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDoubleSpinBox
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFocusEvent
- tst_QFontComboBox
- ...
| 30294 |
| 382 | | - |
| 383 | bool QFileSystemEntry::isClean() const | - |
| 384 | { | - |
| 385 | resolveFilePath(); | - |
| 386 | int dots = 0; | - |
| 387 | bool dotok = true; | - |
| 388 | bool slashok = true; | - |
| 389 | for (QString::const_iterator iter = m_filePath.constBegin(); iter != m_filePath.constEnd(); iter++) {| TRUE | evaluated 730284 times by 155 testsEvaluated by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QByteArray
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDataStream
- tst_QDateTimeEdit
- ...
| | FALSE | evaluated 17810 times by 155 testsEvaluated by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QByteArray
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDataStream
- tst_QDateTimeEdit
- ...
|
| 17810-730284 |
| 390 | if (*iter == QLatin1Char('/')) {| TRUE | evaluated 95350 times by 155 testsEvaluated by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QByteArray
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDataStream
- tst_QDateTimeEdit
- ...
| | FALSE | evaluated 634934 times by 155 testsEvaluated by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QByteArray
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDataStream
- tst_QDateTimeEdit
- ...
|
| 95350-634934 |
| 391 | if (dots == 1 || dots == 2)| TRUE | evaluated 6 times by 2 testsEvaluated by:- tst_QFileSystemEntry
- tst_rcc
| | FALSE | evaluated 95344 times by 155 testsEvaluated by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QByteArray
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDataStream
- tst_QDateTimeEdit
- ...
|
| TRUE | evaluated 190 times by 6 testsEvaluated by:- tst_QDir
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFiledialog
- tst_rcc
- tst_selftests - unknown status
| | FALSE | evaluated 95154 times by 155 testsEvaluated by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QByteArray
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDataStream
- tst_QDateTimeEdit
- ...
|
| 6-95344 |
| 392 | return false; executed 196 times by 6 tests: return false;Executed by:- tst_QDir
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFiledialog
- tst_rcc
- tst_selftests - unknown status
| 196 |
| 393 | if (!slashok)| TRUE | evaluated 2619 times by 30 testsEvaluated by:- tst_QAbstractItemView
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDateTimeEdit
- tst_QDir
- tst_QDirModel
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QLabel
- tst_QLineEdit
- tst_QMessageBox
- tst_QNetworkDiskCache
- tst_QPlainTextEdit
- tst_QPrinter
- tst_QSidebar
- tst_QStyle
- tst_QStyleSheetStyle
- ...
| | FALSE | evaluated 92535 times by 155 testsEvaluated by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QByteArray
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDataStream
- tst_QDateTimeEdit
- ...
|
| 2619-92535 |
| 394 | return false; executed 2619 times by 30 tests: return false;Executed by:- tst_QAbstractItemView
- tst_QAccessibility
- tst_QCalendarWidget
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDateTimeEdit
- tst_QDir
- tst_QDirModel
- tst_QErrorMessage
- tst_QFileDialog2
- tst_QFileIconProvider
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QLabel
- tst_QLineEdit
- tst_QMessageBox
- tst_QNetworkDiskCache
- tst_QPlainTextEdit
- tst_QPrinter
- tst_QSidebar
- tst_QStyle
- tst_QStyleSheetStyle
- ...
| 2619 |
| 395 | dots = 0; | - |
| 396 | dotok = true; | - |
| 397 | slashok = false; | - |
| 398 | } else if (dotok) {executed 92535 times by 155 tests: end of blockExecuted by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QByteArray
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDataStream
- tst_QDateTimeEdit
- ...
| TRUE | evaluated 92341 times by 155 testsEvaluated by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QByteArray
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDataStream
- tst_QDateTimeEdit
- ...
| | FALSE | evaluated 542593 times by 155 testsEvaluated by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QByteArray
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDataStream
- tst_QDateTimeEdit
- ...
|
| 92341-542593 |
| 399 | slashok = true; | - |
| 400 | if (*iter == QLatin1Char('.')) {| TRUE | evaluated 3249 times by 22 testsEvaluated by:- tst_QColorDialog
- tst_QCompleter
- tst_QDir
- tst_QDirModel
- tst_QFileDialog2
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QLockFile
- tst_QLoggingRegistry
- tst_QMimeDatabase
- tst_QPrinter
- tst_QSettings
- tst_QTextFormat
- tst_QUrl
- tst_languageChange
- tst_qfileinfo - unknown status
- tst_qlockfile - unknown status
- tst_rcc
- tst_selftests - unknown status
| | FALSE | evaluated 89092 times by 155 testsEvaluated by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QByteArray
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDataStream
- tst_QDateTimeEdit
- ...
|
| 3249-89092 |
| 401 | dots++; | - |
| 402 | if (dots > 2)| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 3248 times by 22 testsEvaluated by:- tst_QColorDialog
- tst_QCompleter
- tst_QDir
- tst_QDirModel
- tst_QFileDialog2
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QLockFile
- tst_QLoggingRegistry
- tst_QMimeDatabase
- tst_QPrinter
- tst_QSettings
- tst_QTextFormat
- tst_QUrl
- tst_languageChange
- tst_qfileinfo - unknown status
- tst_qlockfile - unknown status
- tst_rcc
- tst_selftests - unknown status
|
| 1-3248 |
| 403 | dotok = false;executed 1 time by 1 test: dotok = false; | 1 |
| 404 | } else {executed 3249 times by 22 tests: end of blockExecuted by:- tst_QColorDialog
- tst_QCompleter
- tst_QDir
- tst_QDirModel
- tst_QFileDialog2
- tst_QFileInfo
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QLockFile
- tst_QLoggingRegistry
- tst_QMimeDatabase
- tst_QPrinter
- tst_QSettings
- tst_QTextFormat
- tst_QUrl
- tst_languageChange
- tst_qfileinfo - unknown status
- tst_qlockfile - unknown status
- tst_rcc
- tst_selftests - unknown status
| 3249 |
| 405 | | - |
| 406 | dots = 0; | - |
| 407 | dotok = false; | - |
| 408 | }executed 89092 times by 155 tests: end of blockExecuted by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QByteArray
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDataStream
- tst_QDateTimeEdit
- ...
| 89092 |
| 409 | } | - |
| 410 | }executed 727469 times by 155 tests: end of blockExecuted by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QByteArray
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDataStream
- tst_QDateTimeEdit
- ...
| 727469 |
| 411 | return (dots != 1 && dots != 2); executed 17810 times by 155 tests: return (dots != 1 && dots != 2);Executed by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QByteArray
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDataStream
- tst_QDateTimeEdit
- ...
| TRUE | evaluated 17580 times by 155 testsEvaluated by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QByteArray
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDataStream
- tst_QDateTimeEdit
- ...
| | FALSE | evaluated 230 times by 10 testsEvaluated by:- tst_QCompleter
- tst_QDir
- tst_QFileDialog2
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QPrinter
- tst_QUrl
- tst_languageChange
|
| TRUE | evaluated 17343 times by 155 testsEvaluated by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAccessibility
- tst_QApplication
- tst_QByteArray
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusInterface
- tst_QDBusMarshall
- tst_QDataStream
- tst_QDateTimeEdit
- ...
| | FALSE | evaluated 237 times by 9 testsEvaluated by:- tst_QCompleter
- tst_QFileDialog2
- tst_QFileSystemEntry
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QPrinter
- tst_QUrl
- tst_languageChange
|
| 230-17810 |
| 412 | } | - |
| 413 | | - |
| 414 | QT_END_NAMESPACE | - |
| | |