| Absolute File Name: | /home/opencoverage/opencoverage/guest-scripts/qtdeclarative/src/qtdeclarative/src/qml/jsapi/qjsvalueiterator.h |
| Switch to Source code | Preprocessed file |
| Line | Source | Count |
|---|---|---|
| 1 | - | |
| 2 | - | |
| 3 | - | |
| 4 | - | |
| 5 | class QString; | - |
| 6 | - | |
| 7 | class QJSValueIteratorPrivate; | - |
| 8 | class __attribute__((visibility("default"))) QJSValueIterator | - |
| 9 | { | - |
| 10 | public: | - |
| 11 | QJSValueIterator(const QJSValue &value); | - |
| 12 | ~QJSValueIterator(); | - |
| 13 | - | |
| 14 | bool hasNext() const; | - |
| 15 | bool next(); | - |
| 16 | - | |
| 17 | QString name() const; | - |
| 18 | - | |
| 19 | QJSValue value() const; | - |
| 20 | QJSValueIterator& operator=(QJSValue &value); | - |
| 21 | - | |
| 22 | private: | - |
| 23 | QScopedPointer<QJSValueIteratorPrivate> d_ptr; | - |
| 24 | - | |
| 25 | inline QJSValueIteratorPrivate* d_func() { return never executed: reinterpret_cast<QJSValueIteratorPrivate *>(qGetPtrHelper(d_ptr));return reinterpret_cast<QJSValueIteratorPrivate *>(qGetPtrHelper(d_ptr));never executed: } inline const QJSValueIteratorPrivate* d_func() const { returnreturn reinterpret_cast<QJSValueIteratorPrivate *>(qGetPtrHelper(d_ptr));never executed: reinterpret_cast<const QJSValueIteratorPrivate *>(qGetPtrHelper(d_ptr));return reinterpret_cast<const QJSValueIteratorPrivate *>(qGetPtrHelper(d_ptr));never executed: } friend class QJSValueIteratorPrivate;return reinterpret_cast<const QJSValueIteratorPrivate *>(qGetPtrHelper(d_ptr)); | 0 |
| 26 | QJSValueIterator(const QJSValueIterator &) = delete; QJSValueIterator &operator=(const QJSValueIterator &) = delete; | - |
| 27 | }; | - |
| 28 | - | |
| 29 | - | |
| Switch to Source code | Preprocessed file |