| Absolute File Name: | /home/opencoverage/opencoverage/guest-scripts/qtdeclarative/src/qtdeclarative/src/qml/debugger/qqmldebugserviceinterfaces_p.h |
| Switch to Source code | Preprocessed file |
| Line | Source | Count |
|---|---|---|
| 1 | - | |
| 2 | - | |
| 3 | - | |
| 4 | - | |
| 5 | - | |
| 6 | - | |
| 7 | - | |
| 8 | class QWindow; | - |
| 9 | class QQuickWindow; | - |
| 10 | class __attribute__((visibility("default"))) QV4DebugService : public QQmlDebugService | - |
| 11 | { | - |
| 12 | public: | - |
| 13 | #pragma GCC diagnostic push | - |
| 14 | - | |
| 15 | #pragma GCC diagnostic ignored "-Wsuggest-override" | - |
| 16 | static const QMetaObject staticMetaObject; virtual const QMetaObject *metaObject() const; virtual void *qt_metacast(const char *); virtual int qt_metacall(QMetaObject::Call, int, void **); static inline QString tr(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } __attribute__ ((__deprecated__)) static inline QString trUtf8(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } private: | - |
| 17 | #pragma GCC diagnostic ignored "-Wattributes" | - |
| 18 | __attribute__((visibility("hidden"))) static void qt_static_metacall(QObject *, QMetaObject::Call, int, void **); | - |
| 19 | #pragma GCC diagnostic pop | - |
| 20 | struct QPrivateSignal {}; | - |
| 21 | public: | - |
| 22 | static const QString s_key; | - |
| 23 | - | |
| 24 | virtual void signalEmitted(const QString &signal) = 0; | - |
| 25 | - | |
| 26 | protected: | - |
| 27 | friend class QQmlDebugConnector; | - |
| 28 | - | |
| 29 | QV4DebugService(float version, QObject *parent = nullptr) : | - |
| 30 | QQmlDebugService(s_key, version, parent) {} executed 18 times by 2 tests: end of blockExecuted by:
| 18 |
| 31 | }; | - |
| 32 | - | |
| 33 | class QQmlAbstractProfilerAdapter; | - |
| 34 | class __attribute__((visibility("default"))) QQmlProfilerService : public QQmlDebugService | - |
| 35 | { | - |
| 36 | public: | - |
| 37 | #pragma GCC diagnostic push | - |
| 38 | - | |
| 39 | #pragma GCC diagnostic ignored "-Wsuggest-override" | - |
| 40 | static const QMetaObject staticMetaObject; virtual const QMetaObject *metaObject() const; virtual void *qt_metacast(const char *); virtual int qt_metacall(QMetaObject::Call, int, void **); static inline QString tr(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } __attribute__ ((__deprecated__)) static inline QString trUtf8(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } private: | - |
| 41 | #pragma GCC diagnostic ignored "-Wattributes" | - |
| 42 | __attribute__((visibility("hidden"))) static void qt_static_metacall(QObject *, QMetaObject::Call, int, void **); | - |
| 43 | #pragma GCC diagnostic pop | - |
| 44 | struct QPrivateSignal {}; | - |
| 45 | public: | - |
| 46 | static const QString s_key; | - |
| 47 | - | |
| 48 | virtual void addGlobalProfiler(QQmlAbstractProfilerAdapter *profiler) = 0; | - |
| 49 | virtual void removeGlobalProfiler(QQmlAbstractProfilerAdapter *profiler) = 0; | - |
| 50 | - | |
| 51 | virtual void startProfiling(QJSEngine *engine, | - |
| 52 | quint64 features = std::numeric_limits<quint64>::max()) = 0; | - |
| 53 | virtual void stopProfiling(QJSEngine *engine) = 0; | - |
| 54 | - | |
| 55 | virtual void dataReady(QQmlAbstractProfilerAdapter *profiler) = 0; | - |
| 56 | - | |
| 57 | protected: | - |
| 58 | friend class QQmlDebugConnector; | - |
| 59 | - | |
| 60 | QQmlProfilerService(float version, QObject *parent = nullptr) : | - |
| 61 | QQmlDebugService(s_key, version, parent) {} executed 24 times by 3 tests: end of blockExecuted by:
| 24 |
| 62 | }; | - |
| 63 | - | |
| 64 | class __attribute__((visibility("default"))) QQmlEngineDebugService : public QQmlDebugService | - |
| 65 | { | - |
| 66 | public: | - |
| 67 | #pragma GCC diagnostic push | - |
| 68 | - | |
| 69 | #pragma GCC diagnostic ignored "-Wsuggest-override" | - |
| 70 | static const QMetaObject staticMetaObject; virtual const QMetaObject *metaObject() const; virtual void *qt_metacast(const char *); virtual int qt_metacall(QMetaObject::Call, int, void **); static inline QString tr(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } __attribute__ ((__deprecated__)) static inline QString trUtf8(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } private: | - |
| 71 | #pragma GCC diagnostic ignored "-Wattributes" | - |
| 72 | __attribute__((visibility("hidden"))) static void qt_static_metacall(QObject *, QMetaObject::Call, int, void **); | - |
| 73 | #pragma GCC diagnostic pop | - |
| 74 | struct QPrivateSignal {}; | - |
| 75 | public: | - |
| 76 | static const QString s_key; | - |
| 77 | - | |
| 78 | virtual void objectCreated(QJSEngine *engine, QObject *object) = 0; | - |
| 79 | virtual void setStatesDelegate(QQmlDebugStatesDelegate *) = 0; | - |
| 80 | - | |
| 81 | protected: | - |
| 82 | friend class QQmlDebugConnector; | - |
| 83 | - | |
| 84 | QQmlEngineDebugService(float version, QObject *parent = nullptr) : | - |
| 85 | QQmlDebugService(s_key, version, parent) {} never executed: end of block | 0 |
| 86 | - | |
| 87 | QQmlBoundSignal *nextSignal(QQmlBoundSignal *prev) { return never executed: prev->m_nextSignal;return prev->m_nextSignal;never executed: }return prev->m_nextSignal; | 0 |
| 88 | }; | - |
| 89 | - | |
| 90 | class __attribute__((visibility("default"))) QQmlInspectorService : public QQmlDebugService | - |
| 91 | { | - |
| 92 | public: | - |
| 93 | #pragma GCC diagnostic push | - |
| 94 | - | |
| 95 | #pragma GCC diagnostic ignored "-Wsuggest-override" | - |
| 96 | static const QMetaObject staticMetaObject; virtual const QMetaObject *metaObject() const; virtual void *qt_metacast(const char *); virtual int qt_metacall(QMetaObject::Call, int, void **); static inline QString tr(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } __attribute__ ((__deprecated__)) static inline QString trUtf8(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } private: | - |
| 97 | #pragma GCC diagnostic ignored "-Wattributes" | - |
| 98 | __attribute__((visibility("hidden"))) static void qt_static_metacall(QObject *, QMetaObject::Call, int, void **); | - |
| 99 | #pragma GCC diagnostic pop | - |
| 100 | struct QPrivateSignal {}; | - |
| 101 | public: | - |
| 102 | static const QString s_key; | - |
| 103 | - | |
| 104 | virtual void addWindow(QQuickWindow *) = 0; | - |
| 105 | virtual void setParentWindow(QQuickWindow *, QWindow *) = 0; | - |
| 106 | virtual void removeWindow(QQuickWindow *) = 0; | - |
| 107 | - | |
| 108 | protected: | - |
| 109 | friend class QQmlDebugConnector; | - |
| 110 | - | |
| 111 | QQmlInspectorService(float version, QObject *parent = nullptr) : | - |
| 112 | QQmlDebugService(s_key, version, parent) {} executed 18 times by 2 tests: end of blockExecuted by:
| 18 |
| 113 | }; | - |
| 114 | - | |
| 115 | class __attribute__((visibility("default"))) QDebugMessageService : public QQmlDebugService | - |
| 116 | { | - |
| 117 | public: | - |
| 118 | #pragma GCC diagnostic push | - |
| 119 | - | |
| 120 | #pragma GCC diagnostic ignored "-Wsuggest-override" | - |
| 121 | static const QMetaObject staticMetaObject; virtual const QMetaObject *metaObject() const; virtual void *qt_metacast(const char *); virtual int qt_metacall(QMetaObject::Call, int, void **); static inline QString tr(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } __attribute__ ((__deprecated__)) static inline QString trUtf8(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } private: | - |
| 122 | #pragma GCC diagnostic ignored "-Wattributes" | - |
| 123 | __attribute__((visibility("hidden"))) static void qt_static_metacall(QObject *, QMetaObject::Call, int, void **); | - |
| 124 | #pragma GCC diagnostic pop | - |
| 125 | struct QPrivateSignal {}; | - |
| 126 | public: | - |
| 127 | static const QString s_key; | - |
| 128 | - | |
| 129 | virtual void synchronizeTime(const QElapsedTimer &otherTimer) = 0; | - |
| 130 | - | |
| 131 | protected: | - |
| 132 | friend class QQmlDebugConnector; | - |
| 133 | - | |
| 134 | QDebugMessageService(float version, QObject *parent = nullptr) : | - |
| 135 | QQmlDebugService(s_key, version, parent) {} executed 24 times by 3 tests: end of blockExecuted by:
| 24 |
| 136 | }; | - |
| 137 | - | |
| 138 | class __attribute__((visibility("default"))) QQmlEngineControlService : public QQmlDebugService | - |
| 139 | { | - |
| 140 | public: | - |
| 141 | #pragma GCC diagnostic push | - |
| 142 | - | |
| 143 | #pragma GCC diagnostic ignored "-Wsuggest-override" | - |
| 144 | static const QMetaObject staticMetaObject; virtual const QMetaObject *metaObject() const; virtual void *qt_metacast(const char *); virtual int qt_metacall(QMetaObject::Call, int, void **); static inline QString tr(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } __attribute__ ((__deprecated__)) static inline QString trUtf8(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } private: | - |
| 145 | #pragma GCC diagnostic ignored "-Wattributes" | - |
| 146 | __attribute__((visibility("hidden"))) static void qt_static_metacall(QObject *, QMetaObject::Call, int, void **); | - |
| 147 | #pragma GCC diagnostic pop | - |
| 148 | struct QPrivateSignal {}; | - |
| 149 | public: | - |
| 150 | static const QString s_key; | - |
| 151 | - | |
| 152 | protected: | - |
| 153 | friend class QQmlDebugConnector; | - |
| 154 | - | |
| 155 | QQmlEngineControlService(float version, QObject *parent = nullptr) : | - |
| 156 | QQmlDebugService(s_key, version, parent) {} executed 24 times by 3 tests: end of blockExecuted by:
| 24 |
| 157 | - | |
| 158 | }; | - |
| 159 | - | |
| 160 | class __attribute__((visibility("default"))) QQmlNativeDebugService : public QQmlDebugService | - |
| 161 | { | - |
| 162 | public: | - |
| 163 | #pragma GCC diagnostic push | - |
| 164 | - | |
| 165 | #pragma GCC diagnostic ignored "-Wsuggest-override" | - |
| 166 | static const QMetaObject staticMetaObject; virtual const QMetaObject *metaObject() const; virtual void *qt_metacast(const char *); virtual int qt_metacall(QMetaObject::Call, int, void **); static inline QString tr(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } __attribute__ ((__deprecated__)) static inline QString trUtf8(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } private: | - |
| 167 | #pragma GCC diagnostic ignored "-Wattributes" | - |
| 168 | __attribute__((visibility("hidden"))) static void qt_static_metacall(QObject *, QMetaObject::Call, int, void **); | - |
| 169 | #pragma GCC diagnostic pop | - |
| 170 | struct QPrivateSignal {}; | - |
| 171 | public: | - |
| 172 | static const QString s_key; | - |
| 173 | - | |
| 174 | protected: | - |
| 175 | friend class QQmlDebugConnector; | - |
| 176 | - | |
| 177 | QQmlNativeDebugService(float version, QObject *parent = nullptr) | - |
| 178 | : QQmlDebugService(s_key, version, parent) {} executed 20 times by 3 tests: end of blockExecuted by:
| 20 |
| 179 | }; | - |
| 180 | - | |
| 181 | - | |
| 182 | - | |
| 183 | - | |
| Switch to Source code | Preprocessed file |