Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-138896

Fix or remove unused QML files in auto tests

XMLWordPrintable

    • e7964362a (dev), 47deeee01 (6.10), 47793d960 (6.9), 0bf663716 (tqtc/lts-6.8), 12f783da0 (dev), a4039aa20 (dev), cdce16efd (dev), 801f7bfc8 (6.10), bf89ec094 (tqtc/lts-6.5)

      While working on a patch, I noticed that a QML in a test was unused. This is pretty easy to miss, so I wrote a script that tries to find all unused QML files in "data" directories:

      #!/bin/bash
      
      usageExample="Usage: find-unused-qml-test-data-files.sh tests/auto
      \nCan also be used with absolute paths, at the expense of less readable output"
      
      if [ -z "$1" ]; then
          echo "directory argument not supplied"
          echo -e $usageExample
          exit 1
      fi
      
      dir="$1"
      verbose=false
      
      # Prefer this before using excludedDirectories, since this is more specific.
      declare -a excludedFileNames=(
          # Only used by tooling.
          "dependencies.qml"
          # Used in QML tests.
          "SignalSequenceSpy.qml"
          # Is used; script doesn't recognise the directory structure.
          "Zzz.qml"
      )
      
      declare -a excludedDirectories=(
      #    "tests/auto/foo"
      )
      
      # https://stackoverflow.com/a/5947802/904422
      redColour='\033[0;31m'
      yellowColour='\033[0;33m'
      noColour='\033[0m'
      # The colourisation above results in garbage when redirecting output to file...
      #redColour=''
      #yellowColour=''
      #noColour=''
      
      #https://stackoverflow.com/a/21663203/904422
      while IFS='' read -rd '' file; do
          parentDir=`dirname "$file"`
          parentDirBaseName=`basename "$parentDir"`
      
          dataDirParentDir=`dirname $parentDir`
      
          if [ "$parentDirBaseName" = "data" ]; then
              # First, exclude file names we're not interested in.
              # QML files starting with tst_ are generally QML-only tests; they are detected automatically.
              qmlFileBaseName=`basename "$file"`
              if [[ $qmlFileBaseName == tst_* ]]; then
                  continue
              fi
      
              # QML-only tests are excluded.
              # https://unix.stackexchange.com/a/48536/34492
              if git grep QUICK_TEST_MAIN -- "$dataDirParentDir"; then
                  continue
              fi
      
              # Also check the list of excluded file names.
              excluded=false
              for excludedFileName in "${excludedFileNames[@]}"
              do
                  if [[ $file == *"$excludedFileName"* ]]; then
                      excluded=true
                  fi
              done
              if [ "$excluded" = true ]; then
                  continue
              fi
      
              # Then, exclude results from directories that we're not interested in.
              for excludedDirectory in "${excludedDirectories[@]}"
              do
                  if [[ $parentDir == *"$excludedDirectory"* ]]; then
                      excluded=true
                  fi
              done
              if [ "$excluded" = true ]; then
                  continue
              fi
      
              if [ "$verbose" = true ]; then
                  echo "- Found QML file $file in data directory - searching QML files in $dataDirParentDir for references to it..."
              fi
      
              # Find any references to the file, storing the count.
              qtyOccurrences=`git grep "$qmlFileBaseName" -- "$dataDirParentDir" | wc -l`
              if [ "$verbose" = true ]; then
                  echo "- Found $qtyOccurrences occurrences"
              fi
      
              # Print the details.
              if (( $qtyOccurrences == 0 )); then
                  blame=`git log --diff-filter=A --pretty=format:"Added in ${yellowColour}%h${noColour} by %an on %as (%s)" $file`
                  echo -e "Found no references to ${redColour}$qmlFileBaseName${noColour} in $dataDirParentDir. $blame. Full grep in $dir:"
                  git --no-pager grep $qmlFileBaseName -- $dir
              fi
          # TODO: handle non-data directories
      #    else
      #        echo "file: $file parentDir: $parentDirBaseName"
          fi;
      done < <(find $dir -iname "*.qml" -print0)
      

      It works by grepping for the QML file's base name in the parent directory of the data directory, and if it finds no results, it greps in the top-level directory (the argument to the script).

      It supports excluding directories and file names. It has some knowledge of QML-only tests, ignoring tests that contain QUICK_TEST_MAIN and QML files starting with tst_.

      The output as of 2025-08-04:

      Found no references to LocalComponent.qml in tests/auto/qml/qqmlapplicationengine. Added in 01f7a9dbe2 by Robin Burchell on 2017-01-15 (QQmlApplicationEngine: Yet another fix after QUrl behavior changes in QtBase). Full grep in tests/auto:
      Found no references to TestItem.qml in tests/auto/qml/qqmlapplicationengine. Added in 471645f6db by Alan Alpert on 2012-12-21 (Add QQmlApplicationEngine). Full grep in tests/auto:
      tests/auto/quick/qquickitem2/tst_qquickitem.cpp:    QVERIFY(QQuickTest::showView(window, testFileUrl("hollowTestItem.qml")));
      tests/auto/quickcontrols/controls/data/tst_stackview.qml:            {tag:"url, transition", arg: Qt.resolvedUrl("TestItem.qml"), operation: StackView.Transition, destroyed: true},
      tests/auto/quickcontrols/controls/data/tst_stackview.qml:            {tag:"url, immediate", arg: Qt.resolvedUrl("TestItem.qml"), operation: StackView.Immediate, destroyed: true}
      tests/auto/quickcontrols/controls/data/tst_stackview.qml:        let control = createTemporaryObject(stackViewComponent, testCase, {initialItem: "TestItem.qml"})
      tests/auto/quickcontrols/controls/data/tst_stackview.qml:        let item = control.push("TestItem.qml")
      tests/auto/quickcontrols/controls/data/tst_stackview.qml:        return createTemporaryObject(stackViewComponent, testCase, {initialItem: Qt.createComponent("TestItem.qml")})
      Found no references to OnDestructionComponent.qml in tests/auto/qml/qqmlecmascript. Added in c31026c9ca by Matthew Vogt on 2012-04-27 (Emit Component.onDestruction before context is invalidated). Full grep in tests/auto:
      Found no references to SpuriousWarning.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to PropertyQJSValueBaseItem.qml in tests/auto/qml/qqmlecmascript. Added in 4709f30b26 by Andrew den Exter on 2012-05-11 (Enable binding to properties of type QJSValue.). Full grep in tests/auto:
      Found no references to scarceResourceCopyImportFail.variant.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to Scope6Nested.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to numberParsing.3.qml in tests/auto/qml/qqmlecmascript. Added in bac602c454 by Lars Knoll on 2012-12-10 (Throw a parse error on octal numbers and escape sequences). Full grep in tests/auto:
      Found no references to stringParsing_error.1.qml in tests/auto/qml/qqmlecmascript. Added in bac602c454 by Lars Knoll on 2012-12-10 (Throw a parse error on octal numbers and escape sequences). Full grep in tests/auto:
      tests/auto/qml/qmlformat/tst_qmlformat_base.h:        m_invalidFiles << "tests/auto/qml/qqmlecmascript/data/stringParsing_error.1.qml";
      Found no references to ScopeObject.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to scarceResourceDestroyedCopy.variant.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to numberParsing.2.qml in tests/auto/qml/qqmlecmascript. Added in bac602c454 by Lars Knoll on 2012-12-10 (Throw a parse error on octal numbers and escape sequences). Full grep in tests/auto:
      Found no references to AliasToCompositeElementType1.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to TypeForDynamicCreation.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to ScarceResourceSignalComponentVariant.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to numberParsing.7.qml in tests/auto/qml/qqmlecmascript. Added in bac602c454 by Lars Knoll on 2012-12-10 (Throw a parse error on octal numbers and escape sequences). Full grep in tests/auto:
      Found no references to handleReferenceManagement.handle.2.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to numberParsing.6.qml in tests/auto/qml/qqmlecmascript. Added in bac602c454 by Lars Knoll on 2012-12-10 (Throw a parse error on octal numbers and escape sequences). Full grep in tests/auto:
      Found no references to PreNamed.qml in tests/auto/qml/qqmlecmascript. Added in 5ff83606a1 by Fabian Kosmale on 2021-09-30 (QQmlObjectCreator: Correctly remove overwritten bindings). Full grep in tests/auto:
      Found no references to stringParsing_error.4.qml in tests/auto/qml/qqmlecmascript. Added in bac602c454 by Lars Knoll on 2012-12-10 (Throw a parse error on octal numbers and escape sequences). Full grep in tests/auto:
      tests/auto/qml/qmlformat/tst_qmlformat_base.h:        m_invalidFiles << "tests/auto/qml/qqmlecmascript/data/stringParsing_error.4.qml";
      Found no references to handleReferenceManagement.handle.1.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to componentCreationForType.qml in tests/auto/qml/qqmlecmascript. Added in 6656567a40 by Fabian Kosmale on 2022-03-31 (Introduce type based overload of Qt.createComponent). Full grep in tests/auto:
      Found no references to qtbug_22843.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to QPropertyBase.qml in tests/auto/qml/qqmlecmascript. Added in 96e321bc5c by Fabian Kosmale on 2020-12-03 (QML engine: Fix binding setup). Full grep in tests/auto:
      Found no references to SubObject.qml in tests/auto/qml/qqmlecmascript. Added in acf1298e21 by Simon Hausmann on 2014-03-17 (Fix crash with lazy binding initialization and compile time calculated dependencies). Full grep in tests/auto:
      tests/auto/qml/qqmllanguage/tst_qqmllanguage.cpp:    QQmlComponent component(&engine, testFileUrl("lazyDeferredSubObject.qml"));
      Found no references to getSet.qml in tests/auto/qml/qqmlecmascript. Added in ac9aa6bf4b by Erik Verbruggen on 2012-12-12 (Added parsing for getter/setter definitions in property assignments.). Full grep in tests/auto:
      Found no references to scarceResourceTestMultiple.variant.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to stringParsing_error.3.qml in tests/auto/qml/qqmlecmascript. Added in bac602c454 by Lars Knoll on 2012-12-10 (Throw a parse error on octal numbers and escape sequences). Full grep in tests/auto:
      tests/auto/qml/qmlformat/tst_qmlformat_base.h:        m_invalidFiles << "tests/auto/qml/qqmlecmascript/data/stringParsing_error.3.qml";
      Found no references to numberParsing.5.qml in tests/auto/qml/qqmlecmascript. Added in bac602c454 by Lars Knoll on 2012-12-10 (Throw a parse error on octal numbers and escape sequences). Full grep in tests/auto:
      Found no references to BaseComponent.qml in tests/auto/qml/qqmlecmascript. Added in 49a3883e86 by Matthew Vogt on 2012-06-04 (Use V4 binding for non-final properties where possible). Full grep in tests/auto:
      Found no references to numberParsing.1.qml in tests/auto/qml/qqmlecmascript. Added in bac602c454 by Lars Knoll on 2012-12-10 (Throw a parse error on octal numbers and escape sequences). Full grep in tests/auto:
      Found no references to scarceResourceTestPreserve.variant.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to ContentComponent.qml in tests/auto/qml/qqmlecmascript. Added in 186abc1e08 by Matthew Vogt on 2012-04-27 (Ensure binding target has not been deleted). Full grep in tests/auto:
      Found no references to numberParsing_error.1.qml in tests/auto/qml/qqmlecmascript. Added in a65824f353 by Erik Verbruggen on 2012-12-18 (Fix: disallow incomplete hex numbers "0x" and "0X".). Full grep in tests/auto:
      tests/auto/qml/qmlformat/tst_qmlformat_base.h:        m_invalidFiles << "tests/auto/qml/qqmlecmascript/data/numberParsing_error.1.qml";
      Found no references to QQmlDataDestroyedComponent2Base.qml in tests/auto/qml/qqmlecmascript. Added in ea13e0cf3f by Chris Adams on 2012-05-15 (Ensure that we don't attempt to dispose handle twice). Full grep in tests/auto:
      Found no references to scarceResourceCopyImportFail.var.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to MyDeferredComponent2.qml in tests/auto/qml/qqmlecmascript. Added in 2f988d4b65 by Alan Alpert on 2013-05-15 (Partial fix for deferred properties when combined with components). Full grep in tests/auto:
      Found no references to scarceResourceTest.variant.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to AliasBindingsOverrideTargetType.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to stringParsing_error.2.qml in tests/auto/qml/qqmlecmascript. Added in bac602c454 by Lars Knoll on 2012-12-10 (Throw a parse error on octal numbers and escape sequences). Full grep in tests/auto:
      tests/auto/qml/qmlformat/tst_qmlformat_base.h:        m_invalidFiles << "tests/auto/qml/qqmlecmascript/data/stringParsing_error.2.qml";
      Found no references to SequenceConversionComponent.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to stringParsing_error.5.qml in tests/auto/qml/qqmlecmascript. Added in 58985b9467 by Erik Verbruggen on 2012-12-18 (Fix unicode escape sequence validation in strings.). Full grep in tests/auto:
      tests/auto/qml/qmlformat/tst_qmlformat_base.h:        m_invalidFiles << "tests/auto/qml/qqmlecmascript/data/stringParsing_error.5.qml";
      Found no references to stringParsing_error.6.qml in tests/auto/qml/qqmlecmascript. Added in a89a652bf5 by Erik Verbruggen on 2013-03-18 (Fix hexadecimal escape sequence validation in strings.). Full grep in tests/auto:
      tests/auto/qml/qmlformat/tst_qmlformat_base.h:        m_invalidFiles << "tests/auto/qml/qqmlecmascript/data/stringParsing_error.6.qml";
      Found no references to scarceResourceCopyImportNoBinding.variant.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to OuterObject.qml in tests/auto/qml/qqmlecmascript. Added in 8b0831f0b0 by Aaron Kennedy on 2012-04-04 (Do not execute overwritten bindings). Full grep in tests/auto:
      Found no references to AliasBindingsAssignCorrectlyType.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to NestedTypeTransientErrors.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to ElementAssignType.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to BaseComponent2.qml in tests/auto/qml/qqmlecmascript. Added in 9655887373 by Matthew Vogt on 2012-03-23 (Restrict v8 property lookup to the execution context). Full grep in tests/auto:
      Found no references to ObjectWithId.qml in tests/auto/qml/qqmlecmascript. Added in 9b2ba45c18 by Ulf Hermann on 2021-08-25 (Allow ImmediatePropertyNames in addition to DeferredPropertyNames). Full grep in tests/auto:
      tests/auto/qml/qmltc/QmltcTests/CMakeLists.txt:    ObjectWithId.qml
      tests/auto/qml/qmltc/tst_qmltc.cpp:        QUrl(u"qrc:/qt/qml/QmltcTests/ObjectWithId.qml"_s),
      Found no references to LazyBindingComponent.qml in tests/auto/qml/qqmlecmascript. Added in 5dc7649f5a by Simon Hausmann on 2014-01-28 ([Regression] Fix lazy binding evaluation). Full grep in tests/auto:
      Found no references to scarceResourceCopyFromJs.variant.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to MyDeferredComponent.qml in tests/auto/qml/qqmlecmascript. Added in 2f988d4b65 by Alan Alpert on 2013-05-15 (Partial fix for deferred properties when combined with components). Full grep in tests/auto:
      Found no references to numberParsing.4.qml in tests/auto/qml/qqmlecmascript. Added in bac602c454 by Lars Knoll on 2012-12-10 (Throw a parse error on octal numbers and escape sequences). Full grep in tests/auto:
      Found no references to ContainerComponent.qml in tests/auto/qml/qqmlecmascript. Added in 186abc1e08 by Matthew Vogt on 2012-04-27 (Ensure binding target has not been deleted). Full grep in tests/auto:
      Found no references to DeleteRootObjectInCreationComponentBase.qml in tests/auto/qml/qqmlecmascript. Added in ea13e0cf3f by Chris Adams on 2012-05-15 (Ensure that we don't attempt to dispose handle twice). Full grep in tests/auto:
      Found no references to AliasBindingsOverrideTargetType3.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to numberParsing_error.2.qml in tests/auto/qml/qqmlecmascript. Added in a65824f353 by Erik Verbruggen on 2012-12-18 (Fix: disallow incomplete hex numbers "0x" and "0X".). Full grep in tests/auto:
      tests/auto/qml/qmlformat/tst_qmlformat_base.h:        m_invalidFiles << "tests/auto/qml/qqmlecmascript/data/numberParsing_error.2.qml";
      Found no references to qtbug_22843.library.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to ScarceResourceSignalComponentVar.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to InnerObject.qml in tests/auto/qml/qqmlecmascript. Added in 8b0831f0b0 by Aaron Kennedy on 2012-04-04 (Do not execute overwritten bindings). Full grep in tests/auto:
      tests/auto/qml/qqmllanguage/CMakeLists.txt:        data/InnerObject.qml
      tests/auto/qml/qqmllanguage/tst_qqmllanguage.cpp:    const QUrl inner("qrc:/StaticTest/data/InnerObject.qml");
      Found no references to CustomObject.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to scarceResourceCopyImport.variant.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to AliasToCompositeElementType2.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to MethodsObject.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to ConstantsOverrideBindings.qml in tests/auto/qml/qqmlecmascript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to DeferredInIC.qml in tests/auto/qml/qqmlecmascript. Added in d48d4d978e by Fabian Kosmale on 2024-11-22 (Verify fixed interaction between inline components and deferred bindings). Full grep in tests/auto:
      Found no references to NullObjectInitializerBase.qml in tests/auto/qml/qqmlecmascript. Added in 8d139e5e42 by Simon Hausmann on 2016-06-24 (Minor optimization). Full grep in tests/auto:
      Found no references to property.variant.qml in tests/auto/qml/qqmlmetaobject. . Full grep in tests/auto:
      Found no references to TimeMarks.qml in tests/auto/qml/qqmldelegatemodel. Added in e4f4e7341f by Ulf Hermann on 2022-07-12 (QmlModels: Fix context and extra object handling). Full grep in tests/auto:
      Found no references to ImageToggle.qml in tests/auto/qml/qqmldelegatemodel. Added in 58cd06033c by Fabian Kosmale on 2021-06-18 (Ensure model is in context if required properties are not used). Full grep in tests/auto:
      Found no references to RequiredBase.qml in tests/auto/qml/qqmllanguage. Added in 85f15e2af4 by Fabian Kosmale on 2020-01-30 (Required properties: Allow retroactive require specification). Full grep in tests/auto:
      Found no references to HelperAlias.qml in tests/auto/qml/qqmllanguage. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to I18n.qml in tests/auto/qml/qqmllanguage. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to SignalEmitter.qml in tests/auto/qml/qqmllanguage. Added in 92562eacbc by Chris Adams on 2012-07-13 (Allow signal parameters which are custom QML object-types). Full grep in tests/auto:
      Found no references to invalidAliasComponent.qml in tests/auto/qml/qqmllanguage. Added in eec58534ab by Mitch Curtis on 2018-01-10 (Fix segfault when alias target refers to lowercase-named type). Full grep in tests/auto:
      Found no references to ConcurrentLoadB.qml in tests/auto/qml/qqmllanguage. Added in caa5358fe9 by Andy Shaw on 2017-04-26 (Fix concurrent loading of the same qmldir from different scripts). Full grep in tests/auto:
      Found no references to CompositeType3.qml in tests/auto/qml/qqmllanguage. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to NonRequiredBase.qml in tests/auto/qml/qqmllanguage. Added in 85f15e2af4 by Fabian Kosmale on 2020-01-30 (Required properties: Allow retroactive require specification). Full grep in tests/auto:
      Found no references to NestedAlias.qml in tests/auto/qml/qqmllanguage. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to DateObjectReadBackGetUTC.qml in tests/auto/qml/qqmllanguage. Added in 063ab57c0d by Luca Di Sera on 2024-12-19 (Enable read-backs for DateObject). Full grep in tests/auto:
      Found no references to ReadOnlyType.qml in tests/auto/qml/qqmllanguage. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to Tab1.qml in tests/auto/qml/qqmllanguage. Added in d0d4cc528b by Ulf Hermann on 2021-04-08 (Do not auto-clean components with live inline components). Full grep in tests/auto:
      Found no references to LocalLast2.qml in tests/auto/qml/qqmllanguage. Added in 1f3038d214 by Alan Alpert on 2012-12-08 (Delay loading implicit import). Full grep in tests/auto:
      Found no references to MyCompositeComponent.qml in tests/auto/qml/qqmllanguage. Added in 247f6a34d1 by Simon Hausmann on 2014-03-05 ([new compiler] Fix auto component creation with composite types). Full grep in tests/auto:
      Found no references to InlineComponentProviderChild.qml in tests/auto/qml/qqmllanguage. Added in 684f9df784 by Fabian Kosmale on 2020-01-15 (Long live QML inline components). Full grep in tests/auto:
      Found no references to OverrideSignalComponent.qml in tests/auto/qml/qqmllanguage. Added in 4317c442fd by Chris Adams on 2012-07-25 (Fix crash in signal change notification override). Full grep in tests/auto:
      Found no references to incorrectCaseType.qml in tests/auto/qml/qqmllanguage. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to QtObjectWithChildren.qml in tests/auto/qml/qqmllanguage. Added in 7b7fb7fe3a by Simon Hausmann on 2016-11-23 (Fix support for QML declared default list properties). Full grep in tests/auto:
      Found no references to AliasPropertyChangeSignalsType.qml in tests/auto/qml/qqmllanguage. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to CompositeType6.qml in tests/auto/qml/qqmllanguage. Added in 4d3a64c5e6 by Alan Alpert on 2012-12-16 (Add Composite Types to QQmlType). Full grep in tests/auto:
      Found no references to EvilComponentType.qml in tests/auto/qml/qqmllanguage. Added in d8066adc55 by Sami Shalayel on 2022-09-26 (qml: deprecate top-level components). Full grep in tests/auto:
      Found no references to ComponentType.qml in tests/auto/qml/qqmllanguage. Added in e0a00a6919 by Sami Shalayel on 2022-09-06 (QQmlVMEMetaObjectEndpoint: ensure property cache before accessing it). Full grep in tests/auto:
      tests/auto/qml/qmltc_qprocess/CMakeLists.txt:        data/ComponentType.qml
      tests/auto/qml/qmltc_qprocess/tst_qmltc_qprocess.cpp:        const auto errors = runQmltc(u"ComponentType.qml"_s, false);
      tests/auto/qml/qmltc_qprocess/tst_qmltc_qprocess.cpp:                u"ComponentType.qml:2:1: Qml top level type cannot be 'Component'. [top-level-component]"_s));
      tests/auto/qml/qqmlcomponent/tst_qqmlcomponent.cpp:        component.loadUrl(testFileUrl("ComponentType.qml"));
      tests/auto/qml/qqmljsscope/tst_qqmljsscope.cpp:    const auto url = testFile("ComponentType.qml");
      Found no references to MyBaseComponent.qml in tests/auto/qml/qqmllanguage. Added in 9655887373 by Matthew Vogt on 2012-03-23 (Restrict v8 property lookup to the execution context). Full grep in tests/auto:
      Found no references to InlineComponentReexporter.qml in tests/auto/qml/qqmllanguage. Added in 684f9df784 by Fabian Kosmale on 2020-01-15 (Long live QML inline components). Full grep in tests/auto:
      tests/auto/qml/qmltc/QmltcTests/CMakeLists.txt:    InlineComponentReexporter.qml
      Found no references to InlineComponentBase.qml in tests/auto/qml/qqmllanguage. Added in 684f9df784 by Fabian Kosmale on 2020-01-15 (Long live QML inline components). Full grep in tests/auto:
      Found no references to MyContainerComponent.qml in tests/auto/qml/qqmllanguage. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to MyCompositeValueSource.qml in tests/auto/qml/qqmllanguage. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to SubType.qml in tests/auto/qml/qqmllanguage. Added in af41170bc5 by Simon Hausmann on 2014-03-15 (Fix crash on shutdown with states). Full grep in tests/auto:
      tests/auto/qml/qqmlpropertymap/tst_qqmlpropertymap.cpp:    QQmlComponent component(&engine, testFileUrl("PropertyMapSubType.qml"));
      Found no references to OtherSignalParam.qml in tests/auto/qml/qqmllanguage. Added in 92562eacbc by Chris Adams on 2012-07-13 (Allow signal parameters which are custom QML object-types). Full grep in tests/auto:
      Found no references to revisionsbasesub11.qml in tests/auto/qml/qqmllanguage. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to InlineAssignmentsOverrideBindingsType.qml in tests/auto/qml/qqmllanguage. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to CompositeType5.qml in tests/auto/qml/qqmllanguage. Added in 4d3a64c5e6 by Alan Alpert on 2012-12-16 (Add Composite Types to QQmlType). Full grep in tests/auto:
      Found no references to InlineComponentProvider.qml in tests/auto/qml/qqmllanguage. Added in 684f9df784 by Fabian Kosmale on 2020-01-15 (Long live QML inline components). Full grep in tests/auto:
      tests/auto/qml/qmltc/QmltcTests/CMakeLists.txt:    InlineComponentProvider.qml
      tests/auto/qmlls/utils/tst_qmlls_utils.cpp:                testFile("findUsages/inlineComponents/InlineComponentProvider.qml");
      Found no references to SimpleWidget.qml in tests/auto/qml/qqmllanguage. Added in c9d7620bc2 by Ulf Hermann on 2024-08-07 (QQmlProperty: Reset the binding bit when removing a null binding). Full grep in tests/auto:
      Found no references to GroupFailureOuter.qml in tests/auto/qml/qqmllanguage. Added in ed7dd5ad01 by Fabian Kosmale on 2022-04-11 (Handle property assignment failure for group property gracefully). Full grep in tests/auto:
      Found no references to ComponentComposite.qml in tests/auto/qml/qqmllanguage. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to RequiredListProperties.qml in tests/auto/qml/qqmllanguage. Added in 9ab1a67590 by Fabian Kosmale on 2020-07-24 (Support required list properties). Full grep in tests/auto:
      Found no references to SimpleItem.qml in tests/auto/qml/qqmllanguage. Added in 9dccec88e3 by Fabian Kosmale on 2020-02-05 (Inline components: fix name resolution). Full grep in tests/auto:
      tests/auto/qmlls/modules/tst_qmlls_modules.cpp:    const QString filePath = u"completions/SimpleItem.qml"_s;
      tests/auto/qmlls/modules/tst_qmlls_modules.cpp:            << u"linting/SimpleItem.qml"_s
      tests/auto/qmlls/modules/tst_qmlls_modules.cpp:            << propertyTypoScenario(testFileUrl(u"linting/SimpleItem.qml"_s).toEncoded());
      tests/auto/qmlls/modules/tst_qmlls_modules.cpp:            << u"linting/SimpleItem.qml"_s
      tests/auto/qmlls/modules/tst_qmlls_modules.cpp:            << inMemoryEnumScenario(testFileUrl(u"linting/SimpleItem.qml"_s).toEncoded());
      Found no references to bindingOnFunctionWithInnerArrowUsingArguments.qml in tests/auto/qml/qqmllanguage. Added in f6f20242e4 by Luca Di Sera on 2025-03-21 (Avoid incorrect access to arguments in signal bindings to arrow functions). Full grep in tests/auto:
      Found no references to OnCompletedType.qml in tests/auto/qml/qqmllanguage. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to OnDestructionType.qml in tests/auto/qml/qqmllanguage. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to ValueTypeListBase.qml in tests/auto/qml/qqmllanguage. Added in b0fc028cb5 by Ulf Hermann on 2022-01-07 (QML: Allow named lists of value types). Full grep in tests/auto:
      Found no references to listItemDeleteSelf.qml in tests/auto/qml/qqmllanguage. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to EdgeObject.qml in tests/auto/qml/qqmllanguage. Added in 40ae0bfd99 by Ulf Hermann on 2019-03-20 (Add test for dynamic anchors to parents in PropertyChanges). Full grep in tests/auto:
      Found no references to NestedComponentRoot.qml in tests/auto/qml/qqmllanguage. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to Alias4.qml in tests/auto/qml/qqmllanguage. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to AliasHolder.qml in tests/auto/qml/qqmllanguage. Added in f3bcbfd6a5 by Ulf Hermann on 2024-01-31 (QtQml: Re-allow assigning of raw numbers to enum property aliases). Full grep in tests/auto:
      Found no references to DynamicPropertiesNestedType.qml in tests/auto/qml/qqmllanguage. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to MyDeferredProperties.qml in tests/auto/qml/qqmllanguage. Added in 3b6eeee177 by J-P Nurmi on 2017-09-14 (Fix execution of deferred properties). Full grep in tests/auto:
      Found no references to GroupPropertyBase.qml in tests/auto/qml/qqmllanguage. Added in af7ba8a619 by Simon Hausmann on 2014-03-11 (Fix incorrectly initialized property cache on group objects). Full grep in tests/auto:
      Found no references to InlineAssignmentsOverrideBindingsType2.qml in tests/auto/qml/qqmllanguage. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to CompositeType2.qml in tests/auto/qml/qqmllanguage. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to CompositeType4.qml in tests/auto/qml/qqmllanguage. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to Alias3.qml in tests/auto/qml/qqmllanguage. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      tests/auto/qml/qmltc/QmltcTests/CMakeLists.txt:    ComponentWithAlias3.qml
      Found no references to UIToolBar.qml in tests/auto/qml/qqmllanguage. Added in 21d728aff3 by Ulf Hermann on 2023-05-10 (QML: Maintain invariant between QObjectMethod members). Full grep in tests/auto:
      Found no references to AttachedPropertyBase.qml in tests/auto/qml/qqmllanguage. Added in ff88fb0c82 by Andrei Golubev on 2022-03-30 (qmlcompiler: Support attached property bindings). Full grep in tests/auto:
      Found no references to TextItem.qml in tests/auto/qml/qqmllanguage. Added in cdcfed60e1 by Ulf Hermann on 2024-10-17 (QQmlProperty: Don't clear toplevel binding bit for value type bindings). Full grep in tests/auto:
      Found no references to Alias2.qml in tests/auto/qml/qqmllanguage. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      tests/auto/qml/qmltc/QmltcTests/CMakeLists.txt:    ComponentWithAlias2.qml
      Found no references to Action.qml in tests/auto/qml/qqmllanguage. Added in add46fd905 by Fabian Kosmale on 2020-02-18 (ResolvedList: attempt read from correct meta object). Full grep in tests/auto:
      tests/auto/qml/debugger/qqmldebugjs/CMakeLists.txt:# OTHER_FILES = "data/test.qml" "data/test.js" "data/timer.qml" "data/exception.qml" "data/oncompleted.qml" "data/loadjsfile.qml" "data/condition.qml" "data/changeBreakpoint.qml" "data/stepAction.qml" "data/breakpointRelocation.qml" "data/createComponent.qml" "data/encodeQmlScope.qml" "data/breakOnAnchor.qml"
      tests/auto/qml/debugger/qqmldebugjs/tst_qqmldebugjs.cpp:const char *STEPACTION_QMLFILE = "stepAction.qml";
      tests/auto/qml/qmlcppcodegen/data/CMakeLists.txt:    Action.qml
      tests/auto/quickcontrols/customization/data/styles/empty/qmldir:Action 6.0 Action.qml
      tests/auto/quickcontrols/customization/data/styles/identified/qmldir:Action 6.0 Action.qml
      tests/auto/quickcontrols/customization/data/styles/incomplete/qmldir:Action 6.0 Action.qml
      tests/auto/quickcontrols/customization/data/styles/override/qmldir:Action 6.0 Action.qml
      tests/auto/quickcontrols/customization/data/styles/simple/qmldir:Action 6.0 Action.qml
      tests/auto/quickcontrols/qquickmenu/tst_qquickmenu.cpp:    QQuickControlsApplicationHelper helper(this, QLatin1String("shortcutInNestedSubMenuAction.qml"));
      tests/auto/quickcontrols/styleimports/data/styles/FileSystemStyle/qmldir:Action 2.15 Action.qml
      tests/auto/quickcontrols/styleimports/data/styles/StyleThatImportsFusion/qmldir:Action 6.0 Action.qml
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:    // Action.qml exists in the FileSystemStyle style and the Basic style.
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:    QTest::newRow("control=Action,style=basic,fallback=empty") << "Action.qml" << "Basic" << "" << "Basic";
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:    QTest::newRow("control=Action,style=fs,fallback=empty") << "Action.qml" << "FileSystemStyle" << "" << "FileSystemStyle";
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:    QTest::newRow("control=Action,style=qrc,fallback=empty") << "Action.qml" << "ResourceStyle" << "" << "Basic";
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:    QTest::newRow("control=Action,style=nosuch,fallback=empty") << "Action.qml" << "NoSuchStyle" << "" << "Basic";
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:    QTest::newRow("control=Action,style=import,fallback=empty") << "Action.qml" << "StyleThatImportsFusion" << "" << "StyleThatImportsFusion";
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:    QTest::newRow("control=Action,style=basic,fallback=mat") << "Action.qml" << "Basic" << "Material" << "";
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:    QTest::newRow("control=Action,style=fs,fallback=mat") << "Action.qml" << "FileSystemStyle" << "Material" << "FileSystemStyle";
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:    QTest::newRow("control=Action,style=qrc,fallback=mat") << "Action.qml" << "ResourceStyle" << "Material" << "Basic";
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:    QTest::newRow("control=Action,style=nosuch,fallback=mat") << "Action.qml" << "NoSuchStyle" << "Material" << "Basic";
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:    QTest::newRow("control=Action,style=import,fallback=mat") << "Action.qml" << "StyleThatImportsFusion" << "Material" << "StyleThatImportsFusion";
      Found no references to DeepComponent.qml in tests/auto/qml/qqmllanguage. Added in 3a67542e06 by Simon Hausmann on 2013-07-16 (Forward port auto test for fix in QtQuick1). Full grep in tests/auto:
      Found no references to RangeMover.qml in tests/auto/qml/qqmllanguage. Added in ef7544bb5c by Ulf Hermann on 2021-06-08 (Allow property observers on readonly properties). Full grep in tests/auto:
      Found no references to InlineComponentProvider2.qml in tests/auto/qml/qqmllanguage. Added in 684f9df784 by Fabian Kosmale on 2020-01-15 (Long live QML inline components). Full grep in tests/auto:
      Found no references to InlineComponentProvider3.qml in tests/auto/qml/qqmllanguage. Added in 684f9df784 by Fabian Kosmale on 2020-01-15 (Long live QML inline components). Full grep in tests/auto:
      Found no references to GroupType.qml in tests/auto/qml/qqmllanguage. Added in af7ba8a619 by Simon Hausmann on 2014-03-11 (Fix incorrectly initialized property cache on group objects). Full grep in tests/auto:
      Found no references to DontDoubleCallClassBeginItem.qml in tests/auto/qml/qqmllanguage. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to SignalParam.qml in tests/auto/qml/qqmllanguage. Added in 92562eacbc by Chris Adams on 2012-07-13 (Allow signal parameters which are custom QML object-types). Full grep in tests/auto:
      Found no references to ConcurrentLoadA.qml in tests/auto/qml/qqmllanguage. Added in caa5358fe9 by Andy Shaw on 2017-04-26 (Fix concurrent loading of the same qmldir from different scripts). Full grep in tests/auto:
      Found no references to MyLazyDeferredSubObject.qml in tests/auto/qml/qqmllanguage. Added in a32cf1a22d by J-P Nurmi on 2017-09-06 (Disable deferring when referenced as a grouped property). Full grep in tests/auto:
      Found no references to GroupFailureInner.qml in tests/auto/qml/qqmllanguage. Added in ed7dd5ad01 by Fabian Kosmale on 2022-04-11 (Handle property assignment failure for group property gracefully). Full grep in tests/auto:
      Found no references to DeepAliasOnIC.qml in tests/auto/qml/qqmllanguage. Added in 3ea55bf398 by Ulf Hermann on 2023-11-07 (QtQml: Fix some problems with deep aliases). Full grep in tests/auto:
      Found no references to NestedErrorsType.qml in tests/auto/qml/qqmllanguage. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to MyRectangle.qml in tests/auto/qml/qqmllanguage. Added in e9b7eaaf6e by Ulf Hermann on 2022-12-15 (QML: Consider deep aliases when finding binding targets). Full grep in tests/auto:
      Found no references to AsynchronousIfNestedType.qml in tests/auto/qml/qqmlincubator. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to commentInEnum.formatted.qml in tests/auto/qml/qmlformat. Added in ff6d16d58b by Sami Shalayel on 2024-01-02 (qmlls: fix formatting of comments). Full grep in tests/auto:
      Found no references to commentInQmlObject.formatted.qml in tests/auto/qml/qmlformat. Added in ff6d16d58b by Sami Shalayel on 2024-01-02 (qmlls: fix formatting of comments). Full grep in tests/auto:
      Found no references to commentInQmlObject.qml in tests/auto/qml/qmlformat. Added in ff6d16d58b by Sami Shalayel on 2024-01-02 (qmlls: fix formatting of comments). Full grep in tests/auto:
      Found no references to commentInEnum.qml in tests/auto/qml/qmlformat. Added in ff6d16d58b by Sami Shalayel on 2024-01-02 (qmlls: fix formatting of comments). Full grep in tests/auto:
      Found no references to Example1.formatted2.qml in tests/auto/qml/qmlformat. Added in de3d65009a by Fawzi Mohamed on 2021-03-23 (qmldom: writeOut, write reformatted Qml). Full grep in tests/auto:
      Found no references to MyType.qml in tests/auto/qml/qqmllistreference. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to ListOverrideAlwaysAppendBaseContainer.qml in tests/auto/qml/qqmlproperty. Added in 1876bd4215 by Unai IRIGOYEN on 2019-11-04 (Add override behaviors to QQmlListProperty). Full grep in tests/auto:
      Found no references to SecondComponent.qml in tests/auto/qml/qqmlproperty. Added in 14e247e4b9 by Chris Adams on 2012-05-09 (Fix composite type property support). Full grep in tests/auto:
      Found no references to ListOverrideReplaceIfNotDefaultBaseContainer.qml in tests/auto/qml/qqmlproperty. Added in 1876bd4215 by Unai IRIGOYEN on 2019-11-04 (Add override behaviors to QQmlListProperty). Full grep in tests/auto:
      Found no references to TestType.qml in tests/auto/qml/qqmlproperty. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to ListOverrideAlwaysReplaceBaseContainer.qml in tests/auto/qml/qqmlproperty. Added in 1876bd4215 by Unai IRIGOYEN on 2019-11-04 (Add override behaviors to QQmlListProperty). Full grep in tests/auto:
      Found no references to TestModel.qml in tests/auto/qml/qqmltablemodel. Added in 368a1d918a by Mitch Curtis on 2019-02-13 (TableModel: support built-in QML model roles). Full grep in tests/auto:
      Found no references to propertyChanges.qml in tests/auto/qml/qmlcppcodegen. Added in 58ff7aa4fe by Ulf Hermann on 2021-11-23 (Compile QML files ahead of time with qmlcachegen). Full grep in tests/auto:
      tests/auto/qmlls/utils/tst_qmlls_utils.cpp:        const auto testFileName = testFile("findUsages/propertyChanges/propertyChanges.qml");
      Found no references to LaterComponent4.qml in tests/auto/qml/qqmlqt. Added in 6cc908e25b by Michael Brasser on 2016-02-03 (Add Qt.callLater() function.). Full grep in tests/auto:
      Found no references to LaterComponent3.qml in tests/auto/qml/qqmlqt. Added in 6cc908e25b by Michael Brasser on 2016-02-03 (Add Qt.callLater() function.). Full grep in tests/auto:
      Found no references to qualifiedName.qml in tests/auto/qml/qqmljsscope. Added in 69cd8c2779 by Sami Shalayel on 2022-05-19 (qmlcompiler: Add qualified name to QQmlJSScope). Full grep in tests/auto:
      Found no references to AttachedBase.qml in tests/auto/qml/qqmljsscope. Added in ff88fb0c82 by Andrei Golubev on 2022-03-30 (qmlcompiler: Support attached property bindings). Full grep in tests/auto:
      Found no references to GroupBase.qml in tests/auto/qml/qqmljsscope. Added in bc63196948 by Maximilian Goldstein on 2022-03-18 (qmlcompiler: Improve grouped property support). Full grep in tests/auto:
      Found no references to TextWithAssignedFont.qml in tests/auto/qml/qqmljsscope. Added in e739df5fcf by Andrei Golubev on 2022-03-30 (tst_qqmljsscope: Cover a more sophisticated group property case). Full grep in tests/auto:
      Found no references to Shadowed.qml in tests/auto/qml/qqmljsscope. Added in 01cde42d5d by Maximilian Goldstein on 2022-03-11 (qmllint: Make "Did you mean" look in extension types as well). Full grep in tests/auto:
      tests/auto/qml/qmlcppcodegen/data/CMakeLists.txt:    GetOptionalLookupShadowed.qml
      tests/auto/qml/qmlcppcodegen/tst_qmlcppcodegen.cpp:    const QUrl document(u"qrc:/qt/qml/TestTypes/GetOptionalLookupShadowed.qml"_s);
      Found no references to ItemExposingIdAsAliasPropery.qml in tests/auto/qml/qmllint. Added in d7288cbe97 by Fabian Kosmale on 2025-07-14 (qmllint: Avoid confusing duplicate property assignment warning). Full grep in tests/auto:
      Found no references to Switch.qml in tests/auto/qml/qmllint. Added in 6aed5f4fb5 by Ulf Hermann on 2022-11-29 (QmlCompiler: Fix signal checking in import visitor). Full grep in tests/auto:
      tests/auto/quick/qquickanimatedsprite/tst_qquickanimatedsprite.cpp:    window.setSource(testFileUrl("sourceSwitch.qml"));
      tests/auto/quickcontrols/customization/data/styles/empty/qmldir:Switch 6.0 Switch.qml
      tests/auto/quickcontrols/customization/data/styles/identified/qmldir:Switch 6.0 Switch.qml
      tests/auto/quickcontrols/customization/data/styles/incomplete/qmldir:Switch 6.0 Switch.qml
      tests/auto/quickcontrols/customization/data/styles/override/qmldir:Switch 6.0 Switch.qml
      tests/auto/quickcontrols/customization/data/styles/simple/qmldir:Switch 6.0 Switch.qml
      Found no references to NotSoSimple.qml in tests/auto/qml/qmllint. Added in 905308491d by Ulf Hermann on 2021-06-18 (Allow multiple bindings to the same property). Full grep in tests/auto:
      Found no references to TypeWithDefaultProperty.qml in tests/auto/qml/qmllint. Added in df351e0739 by Andrei Golubev on 2021-07-19 (Align qmllint default property handling with QQmlComponent model). Full grep in tests/auto:
      Found no references to Cycle3.qml in tests/auto/qml/qmllint. Added in f726d23727 by Ulf Hermann on 2020-03-16 (qmllint: Break inheritance cycles). Full grep in tests/auto:
      tests/auto/qml/qmlcppcodegen/data/CMakeLists.txt:    Cycle3.qml
      Found no references to Cycle2.qml in tests/auto/qml/qmllint. Added in f726d23727 by Ulf Hermann on 2020-03-16 (qmllint: Break inheritance cycles). Full grep in tests/auto:
      tests/auto/qml/qmlcppcodegen/data/CMakeLists.txt:    Cycle2.qml
      tests/auto/qml/qqmllanguage/data/TypeAnnotationCycle1.qml:        c = Qt.createComponent("TypeAnnotationCycle2.qml");
      tests/auto/qml/qqmllanguage/tst_qqmllanguage.cpp:    QQmlComponent c2(&engine, testFileUrl("PropertyCycle2.qml"));
      Found no references to AliasListType.qml in tests/auto/qml/qmllint. Added in 47a1b9faba by Maximilian Goldstein on 2021-04-30 (qmllint: Support aliases to lists). Full grep in tests/auto:
      Found no references to DeprecatedFunctions.qml in tests/auto/qml/qmllint. Added in 63c906ddc8 by Maximilian Goldstein on 2021-04-14 (qmllint: Warn about deprecated functions). Full grep in tests/auto:
      Found no references to TypeDeprecated.qml in tests/auto/qml/qmllint. Added in bbba1e5614 by Maximilian Goldstein on 2021-02-24 (qmllint: Implement deprecation warnings). Full grep in tests/auto:
      Found no references to PropertyBase2.qml in tests/auto/qml/qmllint. Added in 001bec1aa2 by Maximilian Goldstein on 2021-04-26 (qmllint: Store property's binding type separately). Full grep in tests/auto:
      Found no references to TypeWithDefaultListProperty.qml in tests/auto/qml/qmllint. Added in df351e0739 by Andrei Golubev on 2021-07-19 (Align qmllint default property handling with QQmlComponent model). Full grep in tests/auto:
      Found no references to MethodInItem.qml in tests/auto/qml/qmllint. Added in c3fa4a2d39 by Ulf Hermann on 2019-08-16 (qmllint: Consider methods from the current scope as valid IDs). Full grep in tests/auto:
      Found no references to InfoItemTextEdit.qml in tests/auto/qml/qmllint. Added in d97ff367c2 by Ulf Hermann on 2021-04-08 (qmllint: Initialize special casing for QString on checkMemberAccess()). Full grep in tests/auto:
      Found no references to PluginQuickAnchorsBase.qml in tests/auto/qml/qmllint. Added in ee30dd815e by Maximilian Goldstein on 2022-04-29 (qmllint: Warn about invalid anchor combinations across components). Full grep in tests/auto:
      Found no references to GrdView.qml in tests/auto/qml/qmllint. Added in 5cfce9f41c by Maximilian Goldstein on 2021-04-28 (qmllint: Fix multiple attached property bugs). Full grep in tests/auto:
      Found no references to multilineString.fixed.qml in tests/auto/qml/qmllint. Added in a398e06c61 by Maximilian Goldstein on 2022-02-28 (qmllint: Support automatically applying suggestions). Full grep in tests/auto:
      Found no references to InlineComponentSearchInfiniteLoop_Other.qml in tests/auto/qml/qmllint. Added in 3e61e4f11a by Olivier De Cannière on 2025-05-21 (qmllint: Only recurse into QML scopes when searching inline components). Full grep in tests/auto:
      Found no references to Form.ui.qml in tests/auto/qml/qmllint. Added in 8f5f363ce8 by Ulf Hermann on 2019-08-16 (qmllint: Handle the default import and .ui.qml files). Full grep in tests/auto:
      tests/auto/qml/qqmlimport/FormFromQmlDir/qmldir:TestForm 1.0 TestForm.ui.qml
      tests/auto/qml/qqmlimport/tst_qqmlimport.cpp:    std::unique_ptr<QQmlApplicationEngine> test = std::make_unique<QQmlApplicationEngine>(testFileUrl("TestForm.ui.qml"));
      tests/auto/qml/qqmlimport/tst_qqmlimport.cpp:    test->load(testFileUrl("TestForm.ui.qml"));
      tests/auto/qml/qqmlimport/tst_qqmlimport.cpp:    test->loadData(testQml, testFileUrl("dynamicTestForm.ui.qml"));
      Found no references to PropertyBase.qml in tests/auto/qml/qmllint. Added in 001bec1aa2 by Maximilian Goldstein on 2021-04-26 (qmllint: Store property's binding type separately). Full grep in tests/auto:
      Found no references to DeprProp.qml in tests/auto/qml/qmllint. Added in 2e85f3492b by Maximilian Goldstein on 2021-03-29 (qmllint: Warn about bindings on deprecated properties). Full grep in tests/auto:
      Found no references to GPane.qml in tests/auto/qml/qmllint. Added in 4ae701226e by Ulf Hermann on 2025-01-15 (QuickLintPlugin: Guard against deceptive default properties). Full grep in tests/auto:
      Found no references to multifix.fixed.qml in tests/auto/qml/qmllint. Added in 8fce21105d by Ulf Hermann on 2024-02-19 (qmllint: Remove duplicates from fixes before applying them). Full grep in tests/auto:
      Found no references to Text.qml in tests/auto/qml/qmllint. Added in afe20375ba by Ulf Hermann on 2020-03-16 (qmllint: Use fully qualified QML type names as superClass). Full grep in tests/auto:
      tests/auto/qml/qqmlxmlhttprequest/tst_qqmlxmlhttprequest.cpp:    QQmlComponent component(engine.get(), testFileUrl("statusText.qml"));
      tests/auto/qml/qqmlxmlhttprequest/tst_qqmlxmlhttprequest.cpp:    QQmlComponent component(engine.get(), testFileUrl("responseText.qml"));
      tests/auto/quick/qquicktext/tst_qquicktext.cpp:    QQmlComponent component(&engine, testFile("ellipsisText.qml"));
      tests/auto/quick/qquicktextdocument/tst_qquicktextdocument.cpp:    QVERIFY(QQuickTest::showView(window, testFileUrl("initialText.qml")));
      tests/auto/quick/qquicktextdocument/tst_qquicktextdocument.cpp:    QVERIFY(QQuickTest::showView(window, testFileUrl("initialText.qml")));
      tests/auto/quickcontrols/qquickiconlabel/tst_qquickiconlabel.cpp:    QTest::addRow("spacingWithOnlyText") << QStringLiteral("spacingWithOnlyText.qml");
      Found no references to TypeWithDefaultVarProperty.qml in tests/auto/qml/qmllint. Added in df351e0739 by Andrei Golubev on 2021-07-19 (Align qmllint default property handling with QQmlComponent model). Full grep in tests/auto:
      Found no references to TypeWithDefaultStringProperty.qml in tests/auto/qml/qmllint. Added in df351e0739 by Andrei Golubev on 2021-07-19 (Align qmllint default property handling with QQmlComponent model). Full grep in tests/auto:
      Found no references to TypeDeprecatedReason.qml in tests/auto/qml/qmllint. Added in bbba1e5614 by Maximilian Goldstein on 2021-02-24 (qmllint: Implement deprecation warnings). Full grep in tests/auto:
      Found no references to MultiDefaultProperty.qml in tests/auto/qml/qmllint. Added in 905308491d by Ulf Hermann on 2021-06-18 (Allow multiple bindings to the same property). Full grep in tests/auto:
      Found no references to Foozle.qml in tests/auto/qml/qmllint. Added in f6294b7938 by Ulf Hermann on 2021-12-17 (Do not return a null scope from storedType()). Full grep in tests/auto:
      tests/auto/qml/qmlcppcodegen/data/CMakeLists.txt:    Foozle.qml
      Found no references to CircularDependencyBase.qml in tests/auto/qml/qqmltypeloader. Added in f0c08dc217 by Jaeyoon Jung on 2018-02-08 (Warn circular dependency when loading types). Full grep in tests/auto:
      Found no references to MyComponent3.qml in tests/auto/qml/qqmltypeloader. Added in c14c382e6e by Michael Brasser on 2016-08-26 (Allow for garbage collection of types with errors in trimCache()). Full grep in tests/auto:
      tests/auto/cmake/test_generate_qmlls_ini/QmllsBuildIni/qml3/MyModule3/CMakeLists.txt:        MyComponent3.qml
      Found no references to BaseWorker.qml in tests/auto/qml/qquickworkerscript. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to MultiTextElement.qml in tests/auto/qml/debugger/qqmldebugtranslationclient. Added in 784c624413 by Tim Jenssen on 2020-02-07 (Implement debugtranslationservice). Full grep in tests/auto:
      Found no references to MultiTextItem.qml in tests/auto/qml/debugger/qqmldebugtranslationclient. Added in 784c624413 by Tim Jenssen on 2020-02-07 (Implement debugtranslationservice). Full grep in tests/auto:
      Found no references to MultiTextException.qml in tests/auto/qml/debugger/qqmldebugtranslationclient. Added in 784c624413 by Tim Jenssen on 2020-02-07 (Implement debugtranslationservice). Full grep in tests/auto:
      Found no references to TestModel.qml in tests/auto/qml/qqmltreemodel. Added in 7bdcb4a89e by Mate Barany on 2025-05-02 (Add test cases for QQmlTreeModel::getRow). Full grep in tests/auto:
      Found no references to GroupedPropertiesRevisionComponent1.qml in tests/auto/qml/qqmlengine. Added in 9643635f86 by Thomas Hartmann on 2017-09-14 (Allow exported signal handlers for signals with revision). Full grep in tests/auto:
      Found no references to NestedEmptyComponent.qml in tests/auto/qml/qqmlengine. Added in 43a6cc7588 by Matthew Vogt on 2012-05-04 (Add QQmlEngine::trimComponentCache()). Full grep in tests/auto:
      Found no references to GroupedPropertiesRevisionComponent2.qml in tests/auto/qml/qqmlengine. Added in 9643635f86 by Thomas Hartmann on 2017-09-14 (Allow exported signal handlers for signals with revision). Full grep in tests/auto:
      Found no references to NestedVMEComponent.qml in tests/auto/qml/qqmlengine. Added in 43a6cc7588 by Matthew Vogt on 2012-05-04 (Add QQmlEngine::trimComponentCache()). Full grep in tests/auto:
      Found no references to propertyReturningFunction.qml in tests/auto/qml/qmltc_manual. Added in 483d8d6165 by Andrei Golubev on 2021-07-13 (Rename tst_qmlcompiler_manual into tst_qmltc_manual). Full grep in tests/auto:
      tests/auto/qml/qmltc/QmltcTests/CMakeLists.txt:    propertyReturningFunction.qml
      tests/auto/qml/qmltc/tst_qmltc.cpp:        QUrl(u"qrc:/qt/qml/QmltcTests/propertyReturningFunction.qml"_s),
      Found no references to Model.qml in tests/auto/qml/qqmllistmodel. Added in cad5c89a0f by Ulf Hermann on 2022-08-02 (QmlModels: Fix enum resolution in ListElement). Full grep in tests/auto:
      tests/auto/qml/qmlcppcodegen/data/CMakeLists.txt:    listPropertyAsModel.qml
      tests/auto/qml/qmlcppcodegen/tst_qmlcppcodegen.cpp:    QQmlComponent c(&engine, QUrl(u"qrc:/qt/qml/TestTypes/listPropertyAsModel.qml"_s));
      tests/auto/qml/qmllint/tst_qmllint.cpp:    QTest::newRow("defaultPropertyListModel") << QStringLiteral("defaultPropertyListModel.qml");
      tests/auto/qml/qmltc/QmltcTests/CMakeLists.txt:    list(APPEND qml_sources QmlTableModel.qml)
      tests/auto/qml/qqmldelegatemodel/tst_qqmldelegatemodel.cpp:    QTest::addRow("integer") << testFileUrl("integerModel.qml")
      tests/auto/qml/qqmldelegatemodel/tst_qqmldelegatemodel.cpp:    QTest::addRow("ListModel") << testFileUrl("listModel.qml")
      tests/auto/qml/qqmldelegatemodel/tst_qqmldelegatemodel.cpp:    QTest::addRow("QAbstractItemModel") << testFileUrl("abstractItemModel.qml")
      tests/auto/qml/qqmlinstantiator/tst_qqmlinstantiator.cpp:    QQmlComponent component(&engine, testFileUrl("stringModel.qml"));
      tests/auto/qml/qqmlinstantiator/tst_qqmlinstantiator.cpp:    const QUrl url = testFileUrl("setDelegateAfterModel.qml");
      tests/auto/quick/qquicklistview/tst_qquicklistview.cpp:    QQmlComponent component(&engine, testFileUrl("typedModel.qml"));
      tests/auto/quick/qquicklistview/tst_qquicklistview.cpp:    window->setSource(testFileUrl("treeDelegateModel.qml"));
      tests/auto/quick/qquicklistview/tst_qquicklistview.cpp:    window->setSource(testFileUrl("moveObjectModelItemToAnotherObjectModel.qml"));
      tests/auto/quick/qquicklistview/tst_qquicklistview.cpp:    view.setSource(testFileUrl("requiredObjectListModel.qml"));
      tests/auto/quick/qquicklistview2/tst_qquicklistview2.cpp:    window->setSource(testFileUrl("urlListModel.qml"));
      tests/auto/quick/qquicklistview2/tst_qquicklistview2.cpp:    QQmlComponent c(&engine, testFileUrl("metaSequenceAsModel.qml"));
      tests/auto/quick/qquicklistview2/tst_qquicklistview2.cpp:    QTest::newRow("ObjectModel") << QByteArray("changingOrientationWithObjectModel.qml");
      tests/auto/quick/qquicklistview2/tst_qquicklistview2.cpp:    QTest::newRow("ListModel") << QByteArray("changingOrientationWithListModel.qml");
      tests/auto/quick/qquicklistview2/tst_qquicklistview2.cpp:    const QUrl url = testFileUrl("setDelegateAfterModel.qml");
      tests/auto/quick/qquickpathview/tst_qquickpathview.cpp:    window->setSource(testFileUrl("delegatewithUnrelatedRequiredPreventsAccessToModel.qml"));
      tests/auto/quick/qquickrepeater/tst_qquickrepeater.cpp:    const QUrl url = testFileUrl("setDelegateAfterModel.qml");
      tests/auto/quick/qquickvisualdatamodel/tst_qquickvisualdatamodel.cpp:    QQmlComponent component(&engine, testFileUrl("externalManagedModel.qml"));
      tests/auto/quickcontrols/qquickheaderview/tst_qquickheaderview.cpp:    component.loadUrl(testFileUrl("ListModel.qml"));
      tests/auto/quickcontrols/qquickheaderview/tst_qquickheaderview.cpp:    QQuickApplicationHelper helper(this, QStringLiteral("reorderEmptyModel.qml"));
      Found no references to open_username.qml in tests/auto/qml/qqmlxmlhttprequest. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to SpecialObject1.qml in tests/auto/qml/qqmlpropertycache. Added in 28eb0caec2 by Ulf Hermann on 2019-09-05 (Force creation of metaobjects for top level objects and components). Full grep in tests/auto:
      Found no references to SpecialObject2.qml in tests/auto/qml/qqmlpropertycache. Added in 28eb0caec2 by Ulf Hermann on 2019-09-05 (Force creation of metaobjects for top level objects and components). Full grep in tests/auto:
      Found no references to B.qml in tests/auto/qml/qqmlcontext. Added in 27ba69af2f by Ulf Hermann on 2024-01-19 (QtQml: Clear context objects more thoroughly on destruction). Full grep in tests/auto:
      tests/auto/qml/qmlcppcodegen/data/CMakeLists.txt:    B.qml
      tests/auto/qml/qmldiskcache/tst_qmldiskcache.cpp:        tempDir, QLatin1String("B.qml"),
      tests/auto/qml/qmllint/data/Elsewhere/qmldir:A 1.0 B.qml
      tests/auto/qml/qqmlengine/data/crossReferencingSingletonsDeletion/Module/qmldir:singleton SingletonB 1.0 SingletonB.qml
      tests/auto/qml/qqmlimport/data/implicitWithDependencies/qmldir:Rectangle 1.0 B.qml
      tests/auto/qml/qqmllanguage/tst_qqmllanguage.cpp:    QQmlComponent c(&engine, testFileUrl("asCastTypeResolutionImportOrderAB.qml"));
      tests/auto/qml/qqmlmoduleplugin/imports/org/qtproject/PureQmlModule/qmldir:ComponentB 1.0 ComponentB.qml
      tests/auto/qml/qqmlproperty/tst_qqmlproperty.cpp:    QQmlComponent compB(&engine, testFileUrl("NoContextTypeB.qml"));
      tests/auto/qml/qqmltypeloader/tst_qqmltypeloader.cpp:    QQmlComponent component1(&engine1, testFileUrl("B.qml"));
      tests/auto/qml/qqmltypeloader/tst_qqmltypeloader.cpp:    QQmlComponent component2(&engine2, testFileUrl("B.qml"));
      tests/auto/qmlls/cli/data/ImportPath2/AnotherModule/qmldir:B 254.0 B.qml
      tests/auto/qmlls/modules/tst_qmlls_modules.cpp:                << u"workspaces/twoWorkspaces/WorkspaceB/UseImportPathB.qml"_s
      tests/auto/qmlls/modules/tst_qmlls_modules.cpp:                << u"workspaces/twoWorkspaces/WorkspaceB/UseImportPathB.qml"_s << missingWorkspaceB;
      tests/auto/qmlls/qqmlcodemodel/tst_qmlls_qqmlcodemodel.cpp:            << testFileUrl("twoWorkspaces/WorkSpaceB/UseImportPathB.qml"_L1).toEncoded();
      tests/auto/qmlls/qqmlcodemodel/tst_qmlls_qqmlcodemodel.cpp:            testFileUrl("twoWorkspaces/WorkSpaceB/UseImportPathB.qml"_L1).toEncoded();
      tests/auto/qmlls/qqmlcodemodel/tst_qmlls_qqmlcodemodel.cpp:    manager.newOpenFile(fileBUrl, 0, readFile("twoWorkspaces/WorkSpaceB/UseImportPathB.qml"_L1));
      Found no references to Object_22535.qml in tests/auto/qml/qqmlcontext. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to C.qml in tests/auto/qml/qqmlcontext. Added in 27ba69af2f by Ulf Hermann on 2024-01-19 (QtQml: Clear context objects more thoroughly on destruction). Full grep in tests/auto:
      tests/auto/qml/debugger/qqmlpreview/tst_qqmlpreview.cpp:    const QString file("withQQC.qml");
      tests/auto/qml/qqmlcomponent/CMakeLists.txt:        "data/TestComponentWithIC.qml"
      tests/auto/qml/qqmlcomponent/data/NestedDirectories/qmldir:NDTLC 1.0 NDTLC.qml
      tests/auto/qml/qqmlecmascript/data/PropertyVarCircularComponent2.qml:// Similar to PVCC.qml except that it has another var property
      tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp:    QQmlComponent c(&engine, testFileUrl("aliasPropertyToIC.qml"));
      tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp:    QQmlComponent component(&engine, testFileUrl("generatorCallsGC.qml"));
      tests/auto/qml/qqmllanguage/data/singleton/qmldir:singleton SingletonTypeWithIC SingletonTypeWithIC.qml
      tests/auto/qml/qqmllanguage/tst_qqmllanguage.cpp:    QQmlComponent component(&engine, testFileUrl("customParserTypeInIC.qml"));
      tests/auto/qml/qqmllanguage/tst_qqmllanguage.cpp:    auto url = testFileUrl("nestedIC.qml");
      tests/auto/qml/qqmllistmodel/tst_qqmllistmodel.cpp:    QQmlComponent component(&engine, testFileUrl("protectQObjectFromGC.qml"));
      tests/auto/qml/qqmltypeloader/tst_qqmltypeloader.cpp:    QQmlComponent component3(&engine3, testFileUrl("C.qml"));
      Found no references to ContentComponent.qml in tests/auto/qml/qqmlcontext. Added in e39908c658 by Matthew Vogt on 2012-04-27 (Ensure context is valid before VME method creation). Full grep in tests/auto:
      Found no references to A.qml in tests/auto/qml/qqmlcontext. Added in 27ba69af2f by Ulf Hermann on 2024-01-19 (QtQml: Clear context objects more thoroughly on destruction). Full grep in tests/auto:
      tests/auto/qml/qmlimportscanner/data/With/Module/qmldir:A 1.0 A.qml
      tests/auto/qml/qmllint/data/ImportPath/ModuleInImportPath/qmldir:A 1.0 A.qml
      tests/auto/qml/qmllint/data/T/a.qrc:        <file>A.qml</file>
      tests/auto/qml/qmllint/data/T/qmldir:singleton X 1.0 A.qml
      tests/auto/qml/qqmlengine/data/crossReferencingSingletonsDeletion/Module/qmldir:singleton SingletonA 1.0 SingletonA.qml
      tests/auto/qml/qqmlimport/data/implicitWithDependencies/qmldir:A 1.0 A.qml
      tests/auto/qml/qqmlimport/tst_qqmlimport.cpp:    QQmlComponent component(&engine, testFileUrl("implicitWithDependencies/A.qml"));
      tests/auto/qml/qqmllanguage/tst_qqmllanguage.cpp:    QQmlComponent c(&engine, testFileUrl("asCastTypeResolutionImportOrderBA.qml"));
      tests/auto/qml/qqmlmoduleplugin/imports/org/qtproject/PureQmlModule/qmldir:ComponentA 1.0 ComponentA.qml
      tests/auto/qml/qqmlproperty/tst_qqmlproperty.cpp:    QQmlComponent compA(&engine, testFileUrl("NoContextTypeA.qml"));
      tests/auto/qml/qqmlqt/data/Other/qmldir:A 1.0 A.qml
      tests/auto/qml/qqmltypeloader/data/SlowImporter/qmldir:A 1.0 A.qml
      tests/auto/qmlls/cli/data/ImportPath1/SomeModule/qmldir:A 254.0 A.qml
      tests/auto/qmlls/modules/data/sourceDir/qmldir:B 1.0 A.qml
      tests/auto/qmlls/modules/tst_qmlls_modules.cpp:                << u"workspaces/twoWorkspaces/WorkspaceA/UseImportPathA.qml"_s
      tests/auto/qmlls/modules/tst_qmlls_modules.cpp:                << u"workspaces/twoWorkspaces/WorkspaceA/UseImportPathA.qml"_s << missingWorkspaceB;
      tests/auto/qmlls/modules/tst_qmlls_modules.cpp:                << u"workspaces/twoWorkspaces/WorkspaceA/UseImportPathA.qml"_s << nestedWorkspaces;
      tests/auto/qmlls/modules/tst_qmlls_modules.cpp:                << u"workspaces/twoWorkspaces/UseImportPathA.qml"_s << nestedWorkspaces;
      tests/auto/qmlls/qqmlcodemodel/tst_qmlls_qqmlcodemodel.cpp:    const QByteArray fileAUrl = testFileUrl(u"FileA.qml"_s).toEncoded();
      tests/auto/qmlls/qqmlcodemodel/tst_qmlls_qqmlcodemodel.cpp:    const QString fileAPath = testFile(u"FileA.qml"_s);
      tests/auto/qmlls/qqmlcodemodel/tst_qmlls_qqmlcodemodel.cpp:    model.newOpenFile(fileAUrl, 0, readFile(u"FileA.qml"_s));
      tests/auto/qmlls/qqmlcodemodel/tst_qmlls_qqmlcodemodel.cpp:            << testFileUrl("twoWorkspaces/WorkSpaceA/UseImportPathA.qml"_L1).toEncoded();
      tests/auto/qmlls/qqmlcodemodel/tst_qmlls_qqmlcodemodel.cpp:    const QByteArray fileAUrl = testFileUrl(u"FileA.qml"_s).toEncoded();
      tests/auto/qmlls/qqmlcodemodel/tst_qmlls_qqmlcodemodel.cpp:    manager.newOpenFile(fileAUrl, 0, readFile(u"FileA.qml"_s));
      tests/auto/qmlls/qqmlcodemodel/tst_qmlls_qqmlcodemodel.cpp:            testFileUrl("twoWorkspaces/WorkSpaceA/UseImportPathA.qml"_L1).toEncoded();
      tests/auto/qmlls/qqmlcodemodel/tst_qmlls_qqmlcodemodel.cpp:    const QString fileContent = readFile("twoWorkspaces/WorkSpaceA/UseImportPathA.qml"_L1);
      tests/auto/qmlls/qqmlcodemodel/tst_qmlls_qqmlcodemodel.cpp:            testFileUrl("twoWorkspaces/WorkSpaceA/UseImportPathA.qml"_L1).toEncoded();
      tests/auto/qmlls/qqmlcodemodel/tst_qmlls_qqmlcodemodel.cpp:    const QString fileContent = readFile("twoWorkspaces/WorkSpaceA/UseImportPathA.qml"_L1);
      tests/auto/qmlls/qqmlcodemodel/tst_qmlls_qqmlcodemodel.cpp:            testFileUrl("twoWorkspaces/WorkSpaceA/UseImportPathA.qml"_L1).toEncoded();
      tests/auto/qmlls/qqmlcodemodel/tst_qmlls_qqmlcodemodel.cpp:    const QString fileA = testFile("twoWorkspaces/WorkSpaceA/UseImportPathA.qml"_L1);
      tests/auto/qmlls/qqmlcodemodel/tst_qmlls_qqmlcodemodel.cpp:    manager.newOpenFile(fileAUrl, 0, readFile("twoWorkspaces/WorkSpaceA/UseImportPathA.qml"_L1));
      tests/auto/qmlls/qqmlcodemodel/tst_qmlls_qqmlcodemodel.cpp:            testFileUrl("twoWorkspaces/WorkSpaceA/UseImportPathA.qml"_L1).toEncoded();
      tests/auto/qmlls/qqmlcodemodel/tst_qmlls_qqmlcodemodel.cpp:    manager.newOpenFile(fileUrl, 0, readFile("twoWorkspaces/WorkSpaceA/UseImportPathA.qml"_L1));
      tests/auto/quick/pointerhandlers/multipointtoucharea_interop/CMakeLists.txt:# OTHER_FILES = "data/pinchDragMPTA.qml"
      tests/auto/quick/pointerhandlers/multipointtoucharea_interop/tst_multipointtoucharea_interop.cpp:    createView(windowPtr, "pinchDragMPTA.qml");
      tests/auto/quick/pointerhandlers/multipointtoucharea_interop/tst_multipointtoucharea_interop.cpp:    createView(windowPtr, "pinchDragMPTA.qml");
      tests/auto/quick/pointerhandlers/multipointtoucharea_interop/tst_multipointtoucharea_interop.cpp:    createView(windowPtr, "dragParentOfMPTA.qml");
      Found no references to Drawer.qml in tests/auto/qml/qqmlcontext. Added in 1d88e9919f by Ulf Hermann on 2018-12-04 (QML: Fix registering and unregistering of context objects). Full grep in tests/auto:
      tests/auto/qml/qmlimportscanner/tst_qmlimportscanner.cpp:    QTest::newRow("moduleImportWithPrefix")    << QStringLiteral("Drawer.qml");
      tests/auto/qml/qmllint/tst_qmllint.cpp:    QTest::newRow("qualifiedAttached")         << QStringLiteral("Drawer.qml");
      tests/auto/qml/qqmllanguage/data/Comps/qmldir:OverlayDrawer 254.0 OverlayDrawer.qml
      tests/auto/qml/qqmllanguage/tst_qqmllanguage.cpp:    qmlRegisterType(testFileUrl("Comps/OverlayDrawer.qml"), "Comps", 2, 0, "OverlayDrawer");
      tests/auto/quickcontrols/customization/data/styles/empty/qmldir:Drawer 6.0 Drawer.qml
      tests/auto/quickcontrols/customization/data/styles/identified/qmldir:Drawer 6.0 Drawer.qml
      tests/auto/quickcontrols/customization/data/styles/incomplete/qmldir:Drawer 6.0 Drawer.qml
      tests/auto/quickcontrols/customization/data/styles/override/qmldir:Drawer 6.0 Drawer.qml
      tests/auto/quickcontrols/customization/data/styles/simple/qmldir:Drawer 6.0 Drawer.qml
      Found no references to ContainerComponent.qml in tests/auto/qml/qqmlcontext. Added in e39908c658 by Matthew Vogt on 2012-04-27 (Ensure context is valid before VME method creation). Full grep in tests/auto:
      Found no references to MyItem.qml in tests/auto/qml/qqmlenginecleanup. Added in c915ac23d9 by Fabian Kosmale on 2020-02-10 (QQmlEngine: Test that types are correctly removed). Full grep in tests/auto:
      tests/auto/cmake/test_generate_qmlls_ini/Dependency/MyDependency/CMakeLists.txt:    QML_FILES MyItem.qml
      tests/auto/cmake/test_generate_qmlls_ini/WithoutCMakeBuilds/CMakeLists.txt:    QML_FILES MyItem.qml
      tests/auto/qml/qqmlcontext/data/outerContextObject.qml:    property Component itemComponent: Qt.createComponent("MyItem.qml")
      tests/auto/qml/qqmlimport/MyPluginSupported/qmldir:MyItem 1.0 MyItem.qml
      tests/auto/qml/qqmlimport/MyPluginSupported/qmldir:MyItem 2.0 MyItem.qml
      tests/auto/qml/qqmlimport/MyPluginUnsupported/qmldir:MyItem 1.0 MyItem.qml
      tests/auto/qml/qqmlimport/data/importPathOrder/path1/MyModule/qmldir:MyItem MyItem.qml
      tests/auto/qml/qqmlimport/data/importPathOrder/path2/MyModule/qmldir:MyItem MyItem.qml
      tests/auto/qmldom/domdata/domitem/ImportPath/MyModule/qmldir:MyItem 1.0 MyItem.qml
      tests/auto/qmlls/modules/data/workspaces/twoWorkspaces/ImportPathA/MyModule/qmldir:MyItem 1.0 MyItem.qml
      tests/auto/qmlls/modules/data/workspaces/twoWorkspaces/ImportPathB/MyModule/qmldir:MyItem 1.0 MyItem.qml
      tests/auto/qmlls/qqmlcodemodel/data/twoWorkspaces/ImportPathA/MyModule/qmldir:MyItem 1.0 MyItem.qml
      tests/auto/qmlls/qqmlcodemodel/data/twoWorkspaces/ImportPathB/MyModule/qmldir:MyItem 1.0 MyItem.qml
      tests/auto/qmlls/utils/data/findDefinition/TestAppWithBuildFolder/build/somesubfolder/anothersubfolder/MyModule/.qt/rcc/MyModule_raw_qml_0.qrc:    <file alias="MyItem.qml">../../../../../../TestApp/somesubfolder/anothersubfolder/MyModule/MyItem.qml</file>
      tests/auto/qmlls/utils/data/findDefinition/TestAppWithBuildFolder/build/somesubfolder/anothersubfolder/MyModule/qmldir:MyItem 254.0 MyItem.qml
      tests/auto/qmlls/utils/tst_qmlls_utils.cpp:        const QString myComponentQml = testFile(u"findDefinition/TestAppWithBuildFolder/TestApp/somesubfolder/anothersubfolder/MyModule/MyItem.qml"_s);
      tests/auto/quick/qquickdynamicpropertyanimation/tst_qquickdynamicpropertyanimation.cpp:        QQuickView view(testFileUrl("MyItem.qml"));
      Found no references to TestType.qml in tests/auto/qml/qqmlenginecleanup. Added in 2831e385e7 by Alan Alpert on 2013-06-27 (Fix qmlClearTypeRegistrations tests). Full grep in tests/auto:
      Found no references to MyComponent.qml in tests/auto/qml/qqmlbinding. Added in 9db3ec2613 by Fabian Kosmale on 2019-07-04 (Fix crash when binding to QML component). Full grep in tests/auto:
      tests/auto/cmake/test_generate_qmlls_ini/QmllsBuildIni/qml/MyModule/CMakeLists.txt:        MyComponent.qml
      tests/auto/qml/qqmljsutils/data/mymodule-build-without-qmldir-prefer/.qt/rcc/app_raw_qml_0.qrc:    <file alias="X/Y/Z/MyComponent.qml">../../../mymodule-source/MyModule/X/Y/Z/MyComponent.qml</file>
      tests/auto/qml/qqmljsutils/data/mymodule-build-without-qmldir-prefer/MyModule/qmldir:MyComponent 254.0 X/Y/Z/MyComponent.qml
      tests/auto/qml/qqmljsutils/data/mymodule-build/.qt/rcc/app_raw_qml_0.qrc:    <file alias="X/Y/Z/MyComponent.qml">../../../mymodule-source/MyModule/X/Y/Z/MyComponent.qml</file>
      tests/auto/qml/qqmljsutils/data/mymodule-build/MyModule/qmldir:MyComponent 254.0 X/Y/Z/MyComponent.qml
      tests/auto/qml/qqmljsutils/tst_qqmljsutils.cpp:            << testFile(u"mymodule-build/MyModule/X/Y/Z/MyComponent.qml"_s)
      tests/auto/qml/qqmljsutils/tst_qqmljsutils.cpp:            << testFile(u"mymodule-source/MyModule/X/Y/Z/MyComponent.qml"_s);
      tests/auto/qml/qqmljsutils/tst_qqmljsutils.cpp:            << testFile(u"mymodule-build-without-qmldir-prefer/MyModule/X/Y/Z/MyComponent.qml"_s)
      tests/auto/qml/qqmljsutils/tst_qqmljsutils.cpp:            << testFile(u"mymodule-source/MyModule/X/Y/Z/MyComponent.qml"_s);
      tests/auto/qml/qqmllanguage/data/importFile.errors.txt:1:1:"MyComponent.qml": no such directory
      tests/auto/qml/qqmllanguage/data/importFile.qml:import "MyComponent.qml" 1.0
      tests/auto/qml/qqmltypeloader/data/trim_cache2.qml:        var component = Qt.createComponent("MyComponent.qml")
      tests/auto/qmlls/modules/data/warnings/QmllsBuildIni/qml/MyModule/qmldir:MyComponent 1.0 MyComponent.qml
      tests/auto/qmlls/utils/data/findDefinition/mymodule-build-without-qmldir-prefer/.qt/rcc/app_raw_qml_0.qrc:    <file alias="X/Y/Z/MyComponent.qml">../../../mymodule-source/MyModule/X/Y/Z/MyComponent.qml</file>
      tests/auto/qmlls/utils/data/findDefinition/mymodule-build-without-qmldir-prefer/MyModule/qmldir:MyComponent 254.0 X/Y/Z/MyComponent.qml
      tests/auto/qmlls/utils/data/findDefinition/mymodule-build/.qt/rcc/app_raw_qml_0.qrc:    <file alias="X/Y/Z/MyComponent.qml">../../../mymodule-source/MyModule/X/Y/Z/MyComponent.qml</file>
      tests/auto/qmlls/utils/data/findDefinition/mymodule-build/MyModule/qmldir:MyComponent 254.0 X/Y/Z/MyComponent.qml
      tests/auto/qmlls/utils/tst_qmlls_utils.cpp:        const QString myComponentQml = testFile(u"findDefinition/mymodule-source/MyModule/X/Y/Z/MyComponent.qml"_s);
      Found no references to TranslationChangeBase.qml in tests/auto/qml/qqmltranslation. Added in 61887379b0 by Simon Hausmann on 2017-07-12 (Add support for QEvent::LanguageChange). Full grep in tests/auto:
      Found no references to RequiredDefault.qml in tests/auto/qml/qqmlcomponent. Added in da9fee11bb by Fabian Kosmale on 2020-01-29 (Required properties: Allow required default properties). Full grep in tests/auto:
      Found no references to AliasToSubcomponentRequiredBase.qml in tests/auto/qml/qqmlcomponent. Added in 2f3b4ec528 by Fabian Kosmale on 2019-09-05 (Introduce required properties to QML). Full grep in tests/auto:
      Found no references to BaseWithRequired.qml in tests/auto/qml/qqmlcomponent. Added in 2f3b4ec528 by Fabian Kosmale on 2019-09-05 (Introduce required properties to QML). Full grep in tests/auto:
      Found no references to BindingsSpliceCorrectlyType5.qml in tests/auto/qml/qqmlvaluetypes. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to BindingsSpliceCorrectlyType4.qml in tests/auto/qml/qqmlvaluetypes. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to BindingsSpliceCorrectlyType.qml in tests/auto/qml/qqmlvaluetypes. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to FileB.qml in tests/auto/qmlls/qqmlcodemodel. Added in 13761ee3c7 by Sami Shalayel on 2024-05-13 (qmlls: implement commitToBase workflow for lazy files). Full grep in tests/auto:
      Found no references to Zzz.qml in tests/auto/qmlls/utils. Added in 0232b45cef by Sami Shalayel on 2023-09-07 (qmlls: move completion support to QQmlLSUtils). Full grep in tests/auto:
      tests/auto/qmlls/modules/tst_qmlls_modules.cpp:    const QString zzzPath = u"completions/Zzz.qml"_s;
      tests/auto/qmlls/qmlls/tst_qmlls.cpp:    QByteArray uri = testFileUrl("default/Zzz.qml").toString().toUtf8();
      Found no references to MultiDelegate.qml in tests/auto/qmltest/listview. Added in 607ced5bfd by Paolo Angelelli on 2018-05-09 (Allow DelegateModel-based views to support multiple delegate types). Full grep in tests/auto:
      Found no references to MultiDelegate3.qml in tests/auto/qmltest/listview. Added in 6dce8c470c by Joni Poikelin on 2019-12-27 (Add support to match against QObject properties in DelegateChooser). Full grep in tests/auto:
      Found no references to MultiDelegate2.qml in tests/auto/qmltest/listview. Added in 607ced5bfd by Paolo Angelelli on 2018-05-09 (Allow DelegateModel-based views to support multiple delegate types). Full grep in tests/auto:
      Found no references to CustomDelegate.qml in tests/auto/quick/qquicktreeview. Added in 18da655b77 by Richard Moe Gustavsen on 2021-11-19 (quick: add qquicktreeview). Full grep in tests/auto:
      Found no references to flickableqgraphicswidget.qml in tests/auto/quick/qquickflickable. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to RegTestComponent.qml in tests/auto/quick/qquickdesignersupport. Added in c7995e6aa3 by Thomas Hartmann on 2024-03-20 (QQmlGadgetPtrWrapper: Consider QVariant as possible type). Full grep in tests/auto:
      Found no references to RecursiveProperty.qml in tests/auto/quick/qquickdesignersupport. Added in d3cae36550 by Thomas Hartmann on 2021-07-20 (Avoid infinite loop in designer support). Full grep in tests/auto:
      Found no references to dummytest.qml in tests/auto/quick/examples. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to AnimatedButton.qml in tests/auto/quick/qquicklistview. Added in 79014a1b39 by Jan Arve Sæther on 2020-10-05 (QQuickListView: Add autotest so that animated delegate does not crash). Full grep in tests/auto:
      Found no references to ComponentView.qml in tests/auto/quick/qquicklistview. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to Page.qml in tests/auto/quick/qquicklistview. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      tests/auto/cmake/RunCMake/qt_target_qml_sources/src/CMakeLists.txt:            SubPage.qml
      tests/auto/cmake/RunCMake/qt_target_qml_sources/src/CMakeLists.txt:            SubPage.qml
      tests/auto/qml/qmllint/data/MultiDirectory/multi.qrc:        <file>qml/pages/Page.qml</file>
      tests/auto/qml/qmllint/data/MultiDirectory/qmldir:Page 1.0 qml/pages/Page.qml
      tests/auto/qml/qmllint/tst_qmllint.cpp:    callQmllint(testFile("MultiDirectory/qml/pages/Page.qml"), options);
      tests/auto/qml/qqmlapplicationengine/androidassets/CMakeLists.txt:    COPY qml/pages/MainPage.qml
      tests/auto/quickcontrols/customization/data/styles/empty/qmldir:Page 6.0 Page.qml
      tests/auto/quickcontrols/customization/data/styles/identified/qmldir:Page 6.0 Page.qml
      tests/auto/quickcontrols/customization/data/styles/incomplete/qmldir:Page 6.0 Page.qml
      tests/auto/quickcontrols/customization/data/styles/override/qmldir:Page 6.0 Page.qml
      tests/auto/quickcontrols/customization/data/styles/simple/qmldir:Page 6.0 Page.qml
      Found no references to Button.qml in tests/auto/quick/pointerhandlers/qquicktaphandler. Added in 1e87f4605b by Shawn Rutledge on 2017-03-22 (add autotest for TapHandler). Full grep in tests/auto:
      tests/auto/qml/qmlcppcodegen/data/CMakeLists.txt:    pressAndHoldButton.qml
      tests/auto/qml/qmlcppcodegen/tst_qmlcppcodegen.cpp:    QQmlComponent component(&engine, QUrl(u"qrc:/qt/qml/TestTypes/pressAndHoldButton.qml"_s));
      tests/auto/qml/qqmlfileselector/data/qmldirtest/qmldir:MyButton 1.0 qml/MyButton.qml
      tests/auto/qml/qqmlfileselector/data/qmldirtest/qmldir:MyButton 1.0 qml/+linux/MyButton.qml
      tests/auto/qml/qqmlfileselector/data/qmldirtest/qmldir:MyButton 1.0 qml/+macos/MyButton.qml
      tests/auto/qml/qqmlfileselector/data/qmldirtest2/qmldir:MyButton 1.0 +foo/MyButton.qml
      tests/auto/qml/qqmlfileselector/data/qmldirtest2/qmldir:MyButton 1.0 MyButton.qml
      tests/auto/qml/qqmlfileselector/data/qmldirtest2/qmldir:MyButton 1.0 +bar/MyButton.qml
      tests/auto/quickcontrols/customization/data/styles/empty/qmldir:AbstractButton 6.0 AbstractButton.qml
      tests/auto/quickcontrols/customization/data/styles/empty/qmldir:Button 6.0 Button.qml
      tests/auto/quickcontrols/customization/data/styles/empty/qmldir:DelayButton 6.0 DelayButton.qml
      tests/auto/quickcontrols/customization/data/styles/empty/qmldir:RadioButton 6.0 RadioButton.qml
      tests/auto/quickcontrols/customization/data/styles/empty/qmldir:RoundButton 6.0 RoundButton.qml
      tests/auto/quickcontrols/customization/data/styles/empty/qmldir:TabButton 6.0 TabButton.qml
      tests/auto/quickcontrols/customization/data/styles/empty/qmldir:ToolButton 6.0 ToolButton.qml
      tests/auto/quickcontrols/customization/data/styles/identified/qmldir:AbstractButton 6.0 AbstractButton.qml
      tests/auto/quickcontrols/customization/data/styles/identified/qmldir:Button 6.0 Button.qml
      tests/auto/quickcontrols/customization/data/styles/identified/qmldir:DelayButton 6.0 DelayButton.qml
      tests/auto/quickcontrols/customization/data/styles/identified/qmldir:RadioButton 6.0 RadioButton.qml
      tests/auto/quickcontrols/customization/data/styles/identified/qmldir:RoundButton 6.0 RoundButton.qml
      tests/auto/quickcontrols/customization/data/styles/identified/qmldir:TabButton 6.0 TabButton.qml
      tests/auto/quickcontrols/customization/data/styles/identified/qmldir:ToolButton 6.0 ToolButton.qml
      tests/auto/quickcontrols/customization/data/styles/incomplete/qmldir:AbstractButton 6.0 AbstractButton.qml
      tests/auto/quickcontrols/customization/data/styles/incomplete/qmldir:Button 6.0 Button.qml
      tests/auto/quickcontrols/customization/data/styles/incomplete/qmldir:DelayButton 6.0 DelayButton.qml
      tests/auto/quickcontrols/customization/data/styles/incomplete/qmldir:RadioButton 6.0 RadioButton.qml
      tests/auto/quickcontrols/customization/data/styles/incomplete/qmldir:RoundButton 6.0 RoundButton.qml
      tests/auto/quickcontrols/customization/data/styles/incomplete/qmldir:TabButton 6.0 TabButton.qml
      tests/auto/quickcontrols/customization/data/styles/incomplete/qmldir:ToolButton 6.0 ToolButton.qml
      tests/auto/quickcontrols/customization/data/styles/override/qmldir:AbstractButton 6.0 AbstractButton.qml
      tests/auto/quickcontrols/customization/data/styles/override/qmldir:Button 6.0 Button.qml
      tests/auto/quickcontrols/customization/data/styles/override/qmldir:DelayButton 6.0 DelayButton.qml
      tests/auto/quickcontrols/customization/data/styles/override/qmldir:RadioButton 6.0 RadioButton.qml
      tests/auto/quickcontrols/customization/data/styles/override/qmldir:RoundButton 6.0 RoundButton.qml
      tests/auto/quickcontrols/customization/data/styles/override/qmldir:TabButton 6.0 TabButton.qml
      tests/auto/quickcontrols/customization/data/styles/override/qmldir:ToolButton 6.0 ToolButton.qml
      tests/auto/quickcontrols/customization/data/styles/simple/qmldir:AbstractButton 6.0 AbstractButton.qml
      tests/auto/quickcontrols/customization/data/styles/simple/qmldir:Button 6.0 Button.qml
      tests/auto/quickcontrols/customization/data/styles/simple/qmldir:DelayButton 6.0 DelayButton.qml
      tests/auto/quickcontrols/customization/data/styles/simple/qmldir:RadioButton 6.0 RadioButton.qml
      tests/auto/quickcontrols/customization/data/styles/simple/qmldir:RoundButton 6.0 RoundButton.qml
      tests/auto/quickcontrols/customization/data/styles/simple/qmldir:TabButton 6.0 TabButton.qml
      tests/auto/quickcontrols/customization/data/styles/simple/qmldir:ToolButton 6.0 ToolButton.qml
      tests/auto/quickcontrols/pointerhandlers/tst_pointerhandlers.cpp:    QVERIFY(QQuickTest::showView(window, testFileUrl("tapHandlerButton.qml")));
      tests/auto/quickcontrols/pointerhandlers/tst_pointerhandlers.cpp:    QVERIFY(QQuickTest::showView(window, testFileUrl("draggableButton.qml")));
      tests/auto/quickcontrols/styleimports/CMakeLists.txt:    "resources/ResourceStyle/Button.qml"
      tests/auto/quickcontrols/styleimports/data/styles/FileSystemStyle/qmldir:Button 2.15 Button.qml
      tests/auto/quickcontrols/styleimports/data/styles/PlatformStyle/Button.qml:    objectName: "PlatformStyle/Button.qml"
      tests/auto/quickcontrols/styleimports/data/styles/PlatformStyle/qmldir:Button 2.15 Button.qml
      tests/auto/quickcontrols/styleimports/data/styles/StyleThatImportsMaterial/qmldir:Button 1.0 Button.qml
      tests/auto/quickcontrols/styleimports/resources/ResourceStyle/qmldir:Button 2.15 Button.qml
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:    // Button.qml exists in all styles including the fs and qrc styles
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:    QTest::newRow("control=Button,style=basic,fallback=empty") << "Button.qml" << "Basic" << "" << "Basic";
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:    QTest::newRow("control=Button,style=fs,fallback=empty") << "Button.qml" << "FileSystemStyle" << "" << "FileSystemStyle";
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:    QTest::newRow("control=Button,style=qrc,fallback=empty") << "Button.qml" << "ResourceStyle" << "" << "ResourceStyle";
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:    QTest::newRow("control=Button,style=nosuch,fallback=empty") << "Button.qml" << "NoSuchStyle" << "" << "Basic";
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:    QTest::newRow("control=Button,style=import,fallback=empty") << "Button.qml" << "StyleThatImportsFusion" << "" << "Fusion";
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:    QTest::newRow("control=Button,style=basic,fallback=mat") << "Button.qml" << "Basic" << "Material" << "Basic";
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:    QTest::newRow("control=Button,style=fs,fallback=mat") << "Button.qml" << "FileSystemStyle" << "Material" << "FileSystemStyle";
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:    QTest::newRow("control=Button,style=qrc,fallback=mat") << "Button.qml" << "ResourceStyle" << "Material" << "ResourceStyle";
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:    QTest::newRow("control=Button,style=nosuch,fallback=mat") << "Button.qml" << "NoSuchStyle" << "Material" << "Basic";
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:    QTest::newRow("control=Button,style=import,fallback=mat") << "Button.qml" << "StyleThatImportsFusion" << "Material" << "Material";
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:    engine.load(testFileUrl("applicationWindowWithButton.qml"));
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:    QCOMPARE(button->objectName(), "PlatformStyle/Button.qml");
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:// that results in e.g. FileSystemStyle/Button.qml being found;
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:    engine.load(testFileUrl("applicationWindowWithButton.qml"));
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:    // For example: the Fusion style provides Button.qml, so the Button's text color
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:    QTest::newRow("import controls, env var fallback, light") << "applicationWindowWithButton.qml"
      tests/auto/quickcontrols/styleimports/tst_styleimports.cpp:    QTest::newRow("import controls, env var fallback, dark") << "applicationWindowWithButton.qml"
      tests/auto/quickcontrols/styleimportscompiletimeqmlonly/data/QmlOnly/qmldir:Button 1.0 Button.qml
      Found no references to FlashAnimation.qml in tests/auto/quick/pointerhandlers/qquicktaphandler. Added in 1e87f4605b by Shawn Rutledge on 2017-03-22 (add autotest for TapHandler). Full grep in tests/auto:
      tests/auto/quick/pointerhandlers/qquickdraghandler/CMakeLists.txt:# OTHER_FILES = "data/DragAnywhereSlider.qml" "data/FlashAnimation.qml" "data/Slider.qml" "data/draggables.qml" "data/grabberstate.qml" "data/multipleSliders.qml" "data/reparenting.qml" "data/snapMode.qml"
      Found no references to GrooveDragSlider.qml in tests/auto/quick/pointerhandlers/flickableinterop. Added in 090cfda4ed by Shawn Rutledge on 2018-07-03 (tst_FlickableInterop: test both usages of DragHandler in a Slider). Full grep in tests/auto:
      Found no references to FlashAnimation.qml in tests/auto/quick/pointerhandlers/flickableinterop. Added in 4c84de4a93 by Shawn Rutledge on 2017-04-21 (Add tst_flickableinterop: verify drag and tap handlers inside Flickable). Full grep in tests/auto:
      tests/auto/quick/pointerhandlers/qquickdraghandler/CMakeLists.txt:# OTHER_FILES = "data/DragAnywhereSlider.qml" "data/FlashAnimation.qml" "data/Slider.qml" "data/draggables.qml" "data/grabberstate.qml" "data/multipleSliders.qml" "data/reparenting.qml" "data/snapMode.qml"
      Found no references to TapHandlerButton.qml in tests/auto/quick/pointerhandlers/flickableinterop. Added in 4c84de4a93 by Shawn Rutledge on 2017-04-21 (Add tst_flickableinterop: verify drag and tap handlers inside Flickable). Full grep in tests/auto:
      Found no references to KnobDragSlider.qml in tests/auto/quick/pointerhandlers/flickableinterop. Added in 090cfda4ed by Shawn Rutledge on 2018-07-03 (tst_FlickableInterop: test both usages of DragHandler in a Slider). Full grep in tests/auto:
      tests/auto/quick/qquickcanvasitem/tst_qquickcanvasitem.cpp:QUICK_TEST_MAIN_WITH_SETUP(qquickcanvasitem, Setup)
      tests/auto/quick/qquickcanvasitem/tst_qquickcanvasitem.cpp:QUICK_TEST_MAIN_WITH_SETUP(qquickcanvasitem, Setup)
      Found no references to rotated.qml in tests/auto/quick/qquicktext. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to qtbug_14734.qml in tests/auto/quick/qquicktext. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to forImports.qml in tests/auto/quick/qquickimageprovider. Added in 9ab67f0ff0 by Andreas Buhr on 2022-05-02 (Include qml test data file in tst_qquickimageprovider for dependencies). Full grep in tests/auto:
      Found no references to ComponentView.qml in tests/auto/quick/qquickgridview. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to ComponentView.qml in tests/auto/quick/qquickpathview. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to RenderTestBase.qml in tests/auto/quick/scenegraph. Added in b7f6382b1e by Gunnar Sletta on 2013-10-31 (Say hello to the scene graph sanity-tests for rendering). Full grep in tests/auto:
      Found no references to ExtendedRectangle.qml in tests/auto/quick/qquickstates. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to SizeGraphicsWidgetToLoader.qml in tests/auto/quick/qquickloader. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to CreationContextLoader.qml in tests/auto/quick/qquickloader. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to sameorigin.qml in tests/auto/quick/qquickloader. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to differentorigin.qml in tests/auto/quick/qquickloader. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to NoResizeGraphicsWidget.qml in tests/auto/quick/qquickloader. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to SizeLoaderToGraphicsWidget.qml in tests/auto/quick/qquickloader. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to basicFunctionality_item.qml in tests/auto/quick/qquickwindowcontainer. Added in a21d8e10a6 by Tor Arne Vestbø on 2023-12-22 (WindowContainer: Add auto test for basic functionality). Full grep in tests/auto:
      Found no references to basicFunctionality_window.qml in tests/auto/quick/qquickwindowcontainer. Added in a21d8e10a6 by Tor Arne Vestbø on 2023-12-22 (WindowContainer: Add auto test for basic functionality). Full grep in tests/auto:
      Found no references to basicFunctionality_container.qml in tests/auto/quick/qquickwindowcontainer. Added in a21d8e10a6 by Tor Arne Vestbø on 2023-12-22 (WindowContainer: Add auto test for basic functionality). Full grep in tests/auto:
      Found no references to windowComponent.qml in tests/auto/quick/qquickwindowcontainer. Added in f737517ddb by Tor Arne Vestbø on 2024-01-08 (WindowContainer: Add test for window containers as components). Full grep in tests/auto:
      Found no references to focusNavigation.qml in tests/auto/quick/qquickwindowcontainer. Added in c815f6fe7b by Doris Verria on 2024-12-10 (QQuickWindowContainer: Give focus to embedded window on FocusIn event). Full grep in tests/auto:
      Found no references to deferredVisibilityWithoutWindow.qml in tests/auto/quick/qquickwindowcontainer. Added in 2c85fd352f by Tor Arne Vestbø on 2023-12-22 (WindowContainer: Don't apply visibility to contained window without parent). Full grep in tests/auto:
      Found no references to ItemWithInnerBehavior.qml in tests/auto/quick/qquickbehaviors. Added in f17b826a72 by Simon Hausmann on 2017-09-22 (Fix behaviors not working when sub-types declare properties). Full grep in tests/auto:
      Found no references to Accelerator.qml in tests/auto/quick/qquickbehaviors. Added in dbc147b2e7 by Lars Knoll on 2015-11-25 (Make property interceptors work on alias properties again). Full grep in tests/auto:
      Found no references to test3.qml in tests/auto/quick/qquickfocusscope. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      Found no references to CursorRect.qml in tests/auto/quick/qquicktextedit. Added in b855240b78 by Matthew Vogt on 2012-02-16 (Rename QDeclarative symbols to QQuick and QQml). Full grep in tests/auto:
      tests/auto/quicktest/testswithcomponents/tst_quicktestswithcomponents.cpp:QUICK_TEST_MAIN(data)
      Found no references to delegateFromSeparateComponent.qml in tests/auto/quickcontrols/qquickmenubar. Added in 4bd87b903b by Mitch Curtis on 2022-11-18 (Remove "2" from Qt Quick Controls directories). Full grep in tests/auto:
      Found no references to attachedTypeResolution.qml in tests/auto/quickcontrols/sanity. Added in 450fa684f7 by Olivier De Cannière on 2023-05-23 (QQmlSA: Change API for accessing attached types). Full grep in tests/auto:
      tests/auto/qml/qqmljsscope/tst_qqmljsscope.cpp:    QFile qmlFile("data/attachedTypeResolution.qml");
      Found no references to delegateFromSeparateComponent.qml in tests/auto/quickcontrols/qquickmenu. Added in 4bd87b903b by Mitch Curtis on 2022-11-18 (Remove "2" from Qt Quick Controls directories). Full grep in tests/auto:
      Found no references to svgSourceBindingSourceSize.qml in tests/auto/quickcontrols/qquickiconimage. Added in 4bd87b903b by Mitch Curtis on 2022-11-18 (Remove "2" from Qt Quick Controls directories). Full grep in tests/auto:
      Found no references to root.qml in tests/auto/quickcontrols/qquickiconimage. Added in 4bd87b903b by Mitch Curtis on 2022-11-18 (Remove "2" from Qt Quick Controls directories). Full grep in tests/auto:
      tests/auto/qml/qmllint/tst_qmllint.cpp:    QTest::newRow("qjsroot") << QStringLiteral("qjsroot.qml");
      tests/auto/qml/qqmllanguage/data/alias.2.qml:    property alias aliasObject: root.qmlobjectProperty
      Found no references to SignalSequenceSpy.qml in tests/auto/quickcontrols/controls. Added in 4bd87b903b by Mitch Curtis on 2022-11-18 (Remove "2" from Qt Quick Controls directories). Full grep in tests/auto:
      

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

            qt.team.quick.subscriptions Qt Quick and Widgets Team
            mitch_curtis Mitch Curtis
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated: