| Line | Source | Count |
| 1 | | - |
| 2 | | - |
| 3 | class QQmlDebugServer; | - |
| 4 | class __attribute__((visibility("default"))) QQmlDebugServerConnection : public QObject | - |
| 5 | { | - |
| 6 | public: | - |
| 7 | #pragma GCC diagnostic push | - |
| 8 | | - |
| 9 | #pragma GCC diagnostic ignored "-Wsuggest-override" | - |
| 10 | 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: | - |
| 11 | #pragma GCC diagnostic ignored "-Wattributes" | - |
| 12 | __attribute__((visibility("hidden"))) static void qt_static_metacall(QObject *, QMetaObject::Call, int, void **); | - |
| 13 | #pragma GCC diagnostic pop | - |
| 14 | struct QPrivateSignal {}; | - |
| 15 | public: | - |
| 16 | QQmlDebugServerConnection(QObject *parent = nullptr) : QObject(parent) {}executed 30 times by 6 tests: end of blockExecuted by:- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlenginedebugservice
- tst_qqmlprofilerservice
| 30 |
| 17 | | - |
| 18 | virtual void setServer(QQmlDebugServer *server) = 0; | - |
| 19 | virtual bool setPortRange(int portFrom, int portTo, bool block, const QString &hostaddress) = 0; | - |
| 20 | virtual bool setFileName(const QString &fileName, bool block) = 0; | - |
| 21 | virtual bool isConnected() const = 0; | - |
| 22 | virtual void disconnect() = 0; | - |
| 23 | virtual void waitForConnection() = 0; | - |
| 24 | virtual void flush() = 0; | - |
| 25 | }; | - |
| 26 | | - |
| 27 | class __attribute__((visibility("default"))) QQmlDebugServerConnectionFactory : public QObject | - |
| 28 | { | - |
| 29 | public: | - |
| 30 | #pragma GCC diagnostic push | - |
| 31 | | - |
| 32 | #pragma GCC diagnostic ignored "-Wsuggest-override" | - |
| 33 | 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: | - |
| 34 | #pragma GCC diagnostic ignored "-Wattributes" | - |
| 35 | __attribute__((visibility("hidden"))) static void qt_static_metacall(QObject *, QMetaObject::Call, int, void **); | - |
| 36 | #pragma GCC diagnostic pop | - |
| 37 | struct QPrivateSignal {}; | - |
| 38 | public: | - |
| 39 | virtual QQmlDebugServerConnection *create(const QString &key) = 0; | - |
| 40 | }; | - |
| 41 | | - |
| 42 | | - |
| 43 | template <> inline const char *qobject_interface_iid<QQmlDebugServerConnectionFactory *>() { return "org.qt-project.Qt.QQmlDebugServerConnectionFactory"; } template <> inline QQmlDebugServerConnectionFactory *qobject_cast<QQmlDebugServerConnectionFactory *>(QObject *object) { return reinterpret_cast<QQmlDebugServerConnectionFactory *>((object ? object->qt_metacast("org.qt-project.Qt.QQmlDebugServerConnectionFactory") : nullptr)); } template <> inline QQmlDebugServerConnectionFactory *qobject_cast<QQmlDebugServerConnectionFactory *>(const QObject *object) { return reinterpret_cast<QQmlDebugServerConnectionFactory *>((object ? const_cast<QObject *>(object)->qt_metacast("org.qt-project.Qt.QQmlDebugServerConnectionFactory") : nullptr)); } | - |
| 44 | | - |
| 45 | | - |
| | |