Commit 3d10c27c7674663028941d41af9ab845dbf31d86
doc: Fixed some qdoc warnings.
| |   |
| 571 | 571 | \value Qt_4_4 Version 10 (Qt 4.4) |
| 572 | 572 | \value Qt_4_5 Version 11 (Qt 4.5) |
| 573 | 573 | \value Qt_4_6 Version 12 (Qt 4.6) |
| \value Qt_4_7 Same as Qt_4_6. |
| 574 | 575 | |
| 575 | 576 | \sa setVersion(), version() |
| 576 | 577 | */ |
| |   |
| 1061 | 1061 | \internal |
| 1062 | 1062 | */ |
| 1063 | 1063 | |
| /*! \fn bool QByteArray::isSharedWith(const QByteArray &other) |
| /*! \fn bool QByteArray::isSharedWith(const QByteArray &other) const |
| 1065 | 1065 | |
| 1066 | 1066 | \internal |
| 1067 | 1067 | */ |
| |   |
| 41 | 41 | |
| 42 | 42 | #include <QtTest/private/qbenchmarkmetric_p.h> |
| 43 | 43 | |
| /*! |
| \enum QTest::QBenchmarkMetric |
| \since 4.7 |
|
| This enum lists all the things that can be benchmarked. |
| |
| \value FramesPerSecond Frames per second |
| \value BitsPerSecond Bits per second |
| \value BytesPerSecond Bytes per second |
| \value WalltimeMilliseconds Clock time in milliseconds |
| \value CPUTicks CPU time |
| \value InstructionReads Instruction reads |
| \value Events Event count |
|
| \sa QTest::benchmarkMetricName(), QTest::benchmarkMetricUnit() |
|
| */ |
|
| /*! |
| \relates QTest |
| \since 4.7 |
| Returns the enum value \a metric as a character string. |
| */ |
| 44 | 67 | const char * QTest::benchmarkMetricName(QBenchmarkMetric metric) |
| 45 | 68 | { |
| 46 | 69 | switch (metric) { |
| … | … | |
| 86 | 86 | } |
| 87 | 87 | }; |
| 88 | 88 | |
| /*! |
| \relates QTest |
| \since 4.7 |
| Retuns the units of measure for the specified \a metric. |
| */ |
| 89 | 94 | const char * QTest::benchmarkMetricUnit(QBenchmarkMetric metric) |
| 90 | 95 | { |
| 91 | 96 | switch (metric) { |