Merge 5.11 into 5.11.2
Change-Id: I672bc167de3801c944315d92120c5e03da69e9c7
This commit is contained in:
commit
900ce73b6f
@ -12,6 +12,7 @@ include(../common/msvc-desktop.conf)
|
||||
# modifications to msvc-desktop.conf
|
||||
|
||||
QMAKE_COMPILER += intel_icl
|
||||
DEFINES += _ENABLE_EXTENDED_ALIGNED_STORAGE
|
||||
|
||||
QMAKE_CFLAGS_OPTIMIZE_FULL = -O3
|
||||
|
||||
|
@ -58,6 +58,8 @@
|
||||
|
||||
#include "private/qabstractanimation_p.h"
|
||||
|
||||
#include <type_traits>
|
||||
|
||||
#ifndef QT_NO_ANIMATION
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
@ -104,7 +106,17 @@ public:
|
||||
};
|
||||
|
||||
//this should make the interpolation faster
|
||||
template<typename T> inline T _q_interpolate(const T &f, const T &t, qreal progress)
|
||||
template<typename T>
|
||||
typename std::enable_if<std::is_unsigned<T>::value, T>::type
|
||||
_q_interpolate(const T &f, const T &t, qreal progress)
|
||||
{
|
||||
return T(f + t * progress - f * progress);
|
||||
}
|
||||
|
||||
// the below will apply also to all non-arithmetic types
|
||||
template<typename T>
|
||||
typename std::enable_if<!std::is_unsigned<T>::value, T>::type
|
||||
_q_interpolate(const T &f, const T &t, qreal progress)
|
||||
{
|
||||
return T(f + (t - f) * progress);
|
||||
}
|
||||
|
@ -471,8 +471,6 @@ void QLoggingCategory::setFilterRules(const QString &rules)
|
||||
\note Arguments are not processed if debug output for the category is not
|
||||
enabled, so do not rely on any side effects.
|
||||
|
||||
\note Using the macro is thread-safe.
|
||||
|
||||
\sa qDebug()
|
||||
*/
|
||||
|
||||
@ -493,8 +491,6 @@ void QLoggingCategory::setFilterRules(const QString &rules)
|
||||
\note Arguments might not be processed if debug output for the category is
|
||||
not enabled, so do not rely on any side effects.
|
||||
|
||||
\note Using the macro is thread-safe.
|
||||
|
||||
\sa qDebug()
|
||||
*/
|
||||
|
||||
@ -518,8 +514,6 @@ void QLoggingCategory::setFilterRules(const QString &rules)
|
||||
\note Arguments are not processed if debug output for the category is not
|
||||
enabled, so do not rely on any side effects.
|
||||
|
||||
\note Using the macro is thread-safe.
|
||||
|
||||
\sa qInfo()
|
||||
*/
|
||||
|
||||
@ -540,8 +534,6 @@ void QLoggingCategory::setFilterRules(const QString &rules)
|
||||
\note Arguments might not be processed if debug output for the category is
|
||||
not enabled, so do not rely on any side effects.
|
||||
|
||||
\note Using the macro is thread-safe.
|
||||
|
||||
\sa qInfo()
|
||||
*/
|
||||
|
||||
@ -565,8 +557,6 @@ void QLoggingCategory::setFilterRules(const QString &rules)
|
||||
\note Arguments are not processed if warning output for the category is not
|
||||
enabled, so do not rely on any side effects.
|
||||
|
||||
\note Using the macro is thread-safe.
|
||||
|
||||
\sa qWarning()
|
||||
*/
|
||||
|
||||
@ -587,8 +577,6 @@ void QLoggingCategory::setFilterRules(const QString &rules)
|
||||
\note Arguments might not be processed if warning output for the category is
|
||||
not enabled, so do not rely on any side effects.
|
||||
|
||||
\note Using the macro is thread-safe.
|
||||
|
||||
\sa qWarning()
|
||||
*/
|
||||
|
||||
@ -612,8 +600,6 @@ void QLoggingCategory::setFilterRules(const QString &rules)
|
||||
\note Arguments are not processed if critical output for the category is not
|
||||
enabled, so do not rely on any side effects.
|
||||
|
||||
\note Using the macro is thread-safe.
|
||||
|
||||
\sa qCritical()
|
||||
*/
|
||||
|
||||
@ -634,8 +620,6 @@ void QLoggingCategory::setFilterRules(const QString &rules)
|
||||
\note Arguments might not be processed if critical output for the category
|
||||
is not enabled, so do not rely on any side effects.
|
||||
|
||||
\note Using the macro is thread-safe.
|
||||
|
||||
\sa qCritical()
|
||||
*/
|
||||
/*!
|
||||
|
@ -490,7 +490,7 @@ Q_OUTOFLINE_TEMPLATE typename QVarLengthArray<T, Prealloc>::iterator QVarLengthA
|
||||
}
|
||||
} else {
|
||||
T *b = ptr + offset;
|
||||
memmove(b + 1, b, (s - offset) * sizeof(T));
|
||||
memmove(static_cast<void *>(b + 1), static_cast<const void *>(b), (s - offset) * sizeof(T));
|
||||
new (b) T(std::move(t));
|
||||
}
|
||||
s += 1;
|
||||
@ -518,7 +518,7 @@ Q_OUTOFLINE_TEMPLATE typename QVarLengthArray<T, Prealloc>::iterator QVarLengthA
|
||||
} else {
|
||||
T *b = ptr + offset;
|
||||
T *i = b + n;
|
||||
memmove(i, b, (s - offset - n) * sizeof(T));
|
||||
memmove(static_cast<void *>(i), static_cast<const void *>(b), (s - offset - n) * sizeof(T));
|
||||
while (i != b)
|
||||
new (--i) T(copy);
|
||||
}
|
||||
@ -544,7 +544,7 @@ Q_OUTOFLINE_TEMPLATE typename QVarLengthArray<T, Prealloc>::iterator QVarLengthA
|
||||
i->~T();
|
||||
}
|
||||
} else {
|
||||
memmove(ptr + f, ptr + l, (s - l) * sizeof(T));
|
||||
memmove(static_cast<void *>(ptr + f), static_cast<const void *>(ptr + l), (s - l) * sizeof(T));
|
||||
}
|
||||
s -= n;
|
||||
return ptr + f;
|
||||
|
@ -2750,7 +2750,7 @@ Qt::MouseButtons QTabletEvent::buttons() const
|
||||
\header
|
||||
\li Event Type
|
||||
\li Description
|
||||
\li Touch equence
|
||||
\li Touch sequence
|
||||
\row
|
||||
\li Qt::ZoomNativeGesture
|
||||
\li Magnification delta in percent.
|
||||
@ -4119,7 +4119,7 @@ QDebug operator<<(QDebug dbg, const QEvent *e)
|
||||
const QNativeGestureEvent *ne = static_cast<const QNativeGestureEvent *>(e);
|
||||
dbg << "QNativeGestureEvent(";
|
||||
QtDebugUtils::formatQEnum(dbg, ne->gestureType());
|
||||
dbg << "localPos=";
|
||||
dbg << ", localPos=";
|
||||
QtDebugUtils::formatQPoint(dbg, ne->localPos());
|
||||
dbg << ", value=" << ne->value() << ')';
|
||||
}
|
||||
|
3
src/testlib/3rdparty/qt_attribution.json
vendored
3
src/testlib/3rdparty/qt_attribution.json
vendored
@ -8,6 +8,7 @@
|
||||
|
||||
"Description": "An instrumentation framework for building dynamic analysis tools.",
|
||||
"Homepage": "http://valgrind.org/",
|
||||
"Version": "3.3.0",
|
||||
"License": "BSD 4-clause \"Original\" or \"Old\" License",
|
||||
"LicenseId": "BSD-4-Clause",
|
||||
"LicenseFile": "VALGRIND_LICENSE.txt",
|
||||
@ -36,6 +37,8 @@ Copyright (c) 2003, 2006 Massachusetts Institute of Technology"
|
||||
"Files": "linux_perf_event_p.h",
|
||||
|
||||
"Description": "Allows access to the Linux kernel's performance events.",
|
||||
"Homepage": "https://www.kernel.org",
|
||||
"Version": "3.7",
|
||||
"License": "GNU General Public License v2.0 only with Linux Syscall Note",
|
||||
"LicenseId": "GPL-2.0 WITH Linux-syscall-note",
|
||||
"LicenseFile": "LINUX_LICENSE.txt",
|
||||
|
@ -43,6 +43,7 @@ private slots:
|
||||
void keyValueAt();
|
||||
void keyValues();
|
||||
void duration();
|
||||
void interpolation();
|
||||
};
|
||||
|
||||
class TestableQVariantAnimation : public QVariantAnimation
|
||||
@ -129,6 +130,30 @@ void tst_QVariantAnimation::duration()
|
||||
QCOMPARE(anim.duration(), 500);
|
||||
}
|
||||
|
||||
void tst_QVariantAnimation::interpolation()
|
||||
{
|
||||
QVariantAnimation unsignedAnim;
|
||||
unsignedAnim.setStartValue(100u);
|
||||
unsignedAnim.setEndValue(0u);
|
||||
unsignedAnim.setDuration(100);
|
||||
unsignedAnim.setCurrentTime(50);
|
||||
QCOMPARE(unsignedAnim.currentValue().toUInt(), 50u);
|
||||
|
||||
QVariantAnimation signedAnim;
|
||||
signedAnim.setStartValue(100);
|
||||
signedAnim.setEndValue(0);
|
||||
signedAnim.setDuration(100);
|
||||
signedAnim.setCurrentTime(50);
|
||||
QCOMPARE(signedAnim.currentValue().toInt(), 50);
|
||||
|
||||
QVariantAnimation pointAnim;
|
||||
pointAnim.setStartValue(QPoint(100, 100));
|
||||
pointAnim.setEndValue(QPoint(0, 0));
|
||||
pointAnim.setDuration(100);
|
||||
pointAnim.setCurrentTime(50);
|
||||
QCOMPARE(pointAnim.currentValue().toPoint(), QPoint(50, 50));
|
||||
}
|
||||
|
||||
QTEST_MAIN(tst_QVariantAnimation)
|
||||
|
||||
#include "tst_qvariantanimation.moc"
|
||||
|
2
tests/auto/corelib/tools/qdatetime/BLACKLIST
Normal file
2
tests/auto/corelib/tools/qdatetime/BLACKLIST
Normal file
@ -0,0 +1,2 @@
|
||||
[timeZoneAbbreviation]
|
||||
osx
|
2
tests/auto/corelib/tools/qlocale/BLACKLIST
Normal file
2
tests/auto/corelib/tools/qlocale/BLACKLIST
Normal file
@ -0,0 +1,2 @@
|
||||
[formatTimeZone]
|
||||
osx
|
@ -2385,6 +2385,10 @@ void tst_QLocale::currency()
|
||||
QCOMPARE(de_DE.toCurrencyString(double(-1234.56)), QString::fromUtf8("-1.234,56\xc2\xa0\xe2\x82\xac"));
|
||||
QCOMPARE(de_DE.toCurrencyString(double(-1234.56), QLatin1String("BAZ")), QString::fromUtf8("-1.234,56\xc2\xa0" "BAZ"));
|
||||
|
||||
const QLocale es_CR(QLocale::Spanish, QLocale::CostaRica);
|
||||
QCOMPARE(es_CR.toCurrencyString(double(1565.25)),
|
||||
QString::fromUtf8("\xE2\x82\xA1" "1\xC2\xA0" "565,25"));
|
||||
|
||||
const QLocale system = QLocale::system();
|
||||
QVERIFY(system.toCurrencyString(1, QLatin1String("FOO")).contains(QLatin1String("FOO")));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user