qt5base-lts/tests/baseline/shared
Marc Mutz df9d882d41 Port from container.count()/length() to size()
This is semantic patch using ClangTidyTransformator:

  auto QtContainerClass = expr(hasType(namedDecl(hasAnyName(<classes>)))).bind(o)
  makeRule(cxxMemberCallExpr(on(QtContainerClass),
                             callee(cxxMethodDecl(hasAnyName({"count", "length"),
                                                  parameterCountIs(0))))),
           changeTo(cat(access(o, cat("size"), "()"))),
           cat("use 'size()' instead of 'count()/length()'"))

a.k.a qt-port-to-std-compatible-api with config Scope: 'Container'.

<classes> are:

    // sequential:
    "QByteArray",
    "QList",
    "QQueue",
    "QStack",
    "QString",
    "QVarLengthArray",
    "QVector",
    // associative:
    "QHash",
    "QMultiHash",
    "QMap",
    "QMultiMap",
    "QSet",
    // Qt has no QMultiSet

Change-Id: Ibe8837be96e8d30d1846881ecd65180c1bc459af
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
2022-10-04 07:40:08 +02:00
..
baselineprotocol.cpp Use SPDX license identifiers 2022-05-16 16:37:38 +02:00
baselineprotocol.h Use SPDX license identifiers 2022-05-16 16:37:38 +02:00
baselineprotocol.pri
lookup3.cpp Fix typos in docs and comments 2022-06-15 21:31:02 +02:00
paintcommands.cpp Add painter render hint for brush pattern transformation 2022-05-31 21:20:41 +02:00
paintcommands.h Add painter render hint for brush pattern transformation 2022-05-31 21:20:41 +02:00
qbaselinetest.cpp Port from container.count()/length() to size() 2022-10-04 07:40:08 +02:00
qbaselinetest.h Use SPDX license identifiers 2022-05-16 16:37:38 +02:00
qbaselinetest.pri Share common code for baseline-testing widget UIs 2021-11-26 22:40:54 +01:00
qwidgetbaselinetest.cpp Deprecate QApplication::setActiveWindow() and mark as internal 2022-08-27 20:22:29 +02:00
qwidgetbaselinetest.h Use SPDX license identifiers 2022-05-16 16:37:38 +02:00