| Absolute File Name: | /home/opencoverage/opencoverage/guest-scripts/qtdeclarative/src/qtdeclarative/src/qml/util/qqmllistaccessor_p.h |
| Switch to Source code | Preprocessed file |
| Line | Source | Count |
|---|---|---|
| 1 | - | |
| 2 | - | |
| 3 | - | |
| 4 | class QQmlEngine; | - |
| 5 | class __attribute__((visibility("default"))) QQmlListAccessor | - |
| 6 | { | - |
| 7 | public: | - |
| 8 | QQmlListAccessor(); | - |
| 9 | ~QQmlListAccessor(); | - |
| 10 | - | |
| 11 | QVariant list() const; | - |
| 12 | void setList(const QVariant &, QQmlEngine * = nullptr); | - |
| 13 | - | |
| 14 | bool isValid() const; | - |
| 15 | - | |
| 16 | int count() const; | - |
| 17 | QVariant at(int) const; | - |
| 18 | - | |
| 19 | enum Type { Invalid, StringList, VariantList, ListProperty, Instance, Integer }; | - |
| 20 | Type type() const { return executed 102242 times by 25 tests: m_type;return m_type;Executed by:
executed 102242 times by 25 tests: }return m_type;Executed by:
| 102242 |
| 21 | - | |
| 22 | private: | - |
| 23 | Type m_type; | - |
| 24 | QVariant d; | - |
| 25 | }; | - |
| 26 | - | |
| 27 | - | |
| Switch to Source code | Preprocessed file |