qt6-bb10/src/gui
Marc Mutz 1c6bf3e09e Port from container::count() and length() to size() - V5
This is a semantic patch using ClangTidyTransformator as in
qtbase/df9d882d41b741fef7c5beeddb0abe9d904443d8, but extended to
handle typedefs and accesses through pointers, too:

    const std::string o = "object";

    auto hasTypeIgnoringPointer = [](auto type) { return anyOf(hasType(type), hasType(pointsTo(type))); };

    auto derivedFromAnyOfClasses = [&](ArrayRef<StringRef> classes) {
        auto exprOfDeclaredType = [&](auto decl) {
            return expr(hasTypeIgnoringPointer(hasUnqualifiedDesugaredType(recordType(hasDeclaration(decl))))).bind(o);
        };
        return exprOfDeclaredType(cxxRecordDecl(isSameOrDerivedFrom(hasAnyName(classes))));
    };

    auto renameMethod = [&] (ArrayRef<StringRef> classes,
                            StringRef from, StringRef to) {
        return makeRule(cxxMemberCallExpr(on(derivedFromAnyOfClasses(classes)),
                            callee(cxxMethodDecl(hasName(from), parameterCountIs(0)))),
                        changeTo(cat(access(o, cat(to)), "()")),
                        cat("use '", to, "' instead of '", from, "'"));
    };

    renameMethod(<classes>, "count", "size");
    renameMethod(<classes>, "length", "size");

except that the on() matcher has been replaced by one that doesn't
ignoreParens().

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

Added two NOLINTNEXTLINEs in tst_qbitarray and tst_qcontiguouscache,
to avoid porting calls that explicitly test count().

Change-Id: Icfb8808c2ff4a30187e9935a51cad26987451c22
Reviewed-by: Ivan Solovev <ivan.solovev@qt.io>
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
2022-11-03 14:59:24 +01:00
..
accessible Port from container::count() and length() to size() - V5 2022-11-03 14:59:24 +01:00
animation Use SPDX license identifiers 2022-05-16 16:37:38 +02:00
doc Replace usages of Q_CLANG_QDOC with Q_QDOC 2022-10-21 09:48:36 +02:00
image Long live Q_UNREACHABLE_RETURN()! 2022-10-15 22:11:47 +02:00
itemmodels Port from container::count() and length() to size() - V5 2022-11-03 14:59:24 +01:00
kernel Port from container::count() and length() to size() - V5 2022-11-03 14:59:24 +01:00
math3d Allow specify distance to plane for QTransform 2022-08-18 10:40:42 +08:00
opengl OpenGL: add support for Win11 detection 2022-10-30 17:53:30 +08:00
painting Port from container::count() and length() to size() - V5 2022-11-03 14:59:24 +01:00
platform Add QNativeInterface::Private::QWaylandScreen 2022-10-27 12:03:00 +02:00
rhi Port from container::count() and length() to size() - V5 2022-11-03 14:59:24 +01:00
text Port from container::count() and length() to size() - V5 2022-11-03 14:59:24 +01:00
util Port from container.count()/length() to size() 2022-10-04 07:40:08 +02:00
vulkan Port from container::count() and length() to size() - V5 2022-11-03 14:59:24 +01:00
CMakeLists.txt Fix build with disabled accessibility 2022-09-29 15:09:05 +02:00
QtGui.dynlist
configure.cmake Remove the Unnecessary Warning Regarding AAT and System HarfBuzz 2022-10-31 18:52:32 +00:00
qt_cmdline.cmake Change the license of all CMakeLists.txt and *.cmake files to BSD 2022-08-23 23:58:42 +02:00
qtgui.tracepoints Revert "Fix build with -trace lttng" 2022-09-07 22:39:25 +10:00