This file is indexed.

/usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/XmlListModel/plugins.qmltypes is in qml-module-qtquick-xmllistmodel 5.5.1-2ubuntu6.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import QtQuick.tooling 1.1

// This file describes the plugin-supplied types contained in the library.
// It is used for QML tooling purposes only.
//
// This file was auto-generated by:
// 'qmlplugindump -nonrelocatable QtQuick.XmlListModel 2.0'

Module {
    Component {
        name: "QQuickXmlListModel"
        defaultProperty: "roles"
        prototype: "QAbstractListModel"
        exports: ["QtQuick.XmlListModel/XmlListModel 2.0"]
        exportMetaObjectRevisions: [0]
        Enum {
            name: "Status"
            values: {
                "Null": 0,
                "Ready": 1,
                "Loading": 2,
                "Error": 3
            }
        }
        Property { name: "status"; type: "Status"; isReadonly: true }
        Property { name: "progress"; type: "double"; isReadonly: true }
        Property { name: "source"; type: "QUrl" }
        Property { name: "xml"; type: "string" }
        Property { name: "query"; type: "string" }
        Property { name: "namespaceDeclarations"; type: "string" }
        Property { name: "roles"; type: "QQuickXmlListModelRole"; isList: true; isReadonly: true }
        Property { name: "count"; type: "int"; isReadonly: true }
        Signal {
            name: "statusChanged"
            Parameter { type: "QQuickXmlListModel::Status" }
        }
        Signal {
            name: "progressChanged"
            Parameter { name: "progress"; type: "double" }
        }
        Method { name: "reload" }
        Method {
            name: "get"
            type: "QQmlV4Handle"
            Parameter { name: "index"; type: "int" }
        }
        Method { name: "errorString"; type: "string" }
    }
    Component {
        name: "QQuickXmlListModelRole"
        prototype: "QObject"
        exports: ["QtQuick.XmlListModel/XmlRole 2.0"]
        exportMetaObjectRevisions: [0]
        Property { name: "name"; type: "string" }
        Property { name: "query"; type: "string" }
        Property { name: "isKey"; type: "bool" }
    }
}