| Line | Source | Count |
| 1 | | - |
| 2 | | - |
| 3 | | - |
| 4 | class QQuickDesignerCustomParserObject : 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 | | - |
| 16 | public: | - |
| 17 | QQuickDesignerCustomParserObject(); | - |
| 18 | }; | - |
| 19 | | - |
| 20 | class QQuickDesignerCustomParser : public QQmlCustomParser | - |
| 21 | { | - |
| 22 | public: | - |
| 23 | QQuickDesignerCustomParser() | - |
| 24 | : QQmlCustomParser(AcceptsAttachedProperties | AcceptsSignalHandlers) {} never executed: end of block | 0 |
| 25 | | - |
| 26 | void verifyBindings(const QV4::CompiledData::Unit *qmlUnit, const QList<const QV4::CompiledData::Binding *> &props) override; | - |
| 27 | void applyBindings(QObject *obj, QV4::CompiledData::CompilationUnit *compilationUnit, const QList<const QV4::CompiledData::Binding *> &bindings) override; | - |
| 28 | }; | - |
| 29 | | - |
| 30 | | - |
| | |