OpenCoverage

qquickwindowmodule.cpp

Absolute File Name:/home/opencoverage/opencoverage/guest-scripts/qtdeclarative/src/qtdeclarative/src/quick/items/qquickwindowmodule.cpp
Switch to Source codePreprocessed file
LineSourceCount
1-
2-
3-
4-
5extern const QLoggingCategory &lcTransient();-
6-
7class QQuickWindowQmlImplPrivate : public QQuickWindowPrivate-
8{-
9public:-
10 QQuickWindowQmlImplPrivate()-
11 : complete(false)-
12 , visible(false)-
13 , visibility(QQuickWindow::AutomaticVisibility)-
14 {-
15 }
executed 150 times by 8 tests: end of block
Executed by:
  • tst_examples
  • tst_qqmlcomponent
  • tst_qquickanimations
  • tst_qquickitem
  • tst_qquicklistview
  • tst_qquickloader
  • tst_qquickshortcut
  • tst_qquicktext
150
16-
17 bool complete;-
18 bool visible;-
19 QQuickWindow::Visibility visibility;-
20 QV4::PersistentValue rootItemMarker;-
21};-
22-
23QQuickWindowQmlImpl::QQuickWindowQmlImpl(QWindow *parent)-
24 : QQuickWindow(*(new QQuickWindowQmlImplPrivate), parent)-
25{-
26 connect(this, &QWindow::visibleChanged, this, &QQuickWindowQmlImpl::visibleChanged);-
27 connect(this, &QWindow::visibilityChanged, this, &QQuickWindowQmlImpl::visibilityChanged);-
28 connect(this, &QWindow::screenChanged, this, &QQuickWindowQmlImpl::screenChanged);-
29}
executed 150 times by 8 tests: end of block
Executed by:
  • tst_examples
  • tst_qqmlcomponent
  • tst_qquickanimations
  • tst_qquickitem
  • tst_qquicklistview
  • tst_qquickloader
  • tst_qquickshortcut
  • tst_qquicktext
150
30-
31void QQuickWindowQmlImpl::setVisible(bool visible)-
32{-
33 QQuickWindowQmlImplPrivate * const d = d_func();-
34 d->visible = visible;-
35 if (d->complete
d->completeDescription
TRUEevaluated 148 times by 8 tests
Evaluated by:
  • tst_examples
  • tst_qqmlcomponent
  • tst_qquickanimations
  • tst_qquickitem
  • tst_qquicklistview
  • tst_qquickloader
  • tst_qquickshortcut
  • tst_qquicktext
FALSEevaluated 8 times by 3 tests
Evaluated by:
  • tst_qquickanimations
  • tst_qquicklistview
  • tst_qquickloader
&& (!transientParent()
!transientParent()Description
TRUEevaluated 144 times by 7 tests
Evaluated by:
  • tst_examples
  • tst_qqmlcomponent
  • tst_qquickanimations
  • tst_qquickitem
  • tst_qquicklistview
  • tst_qquickshortcut
  • tst_qquicktext
FALSEevaluated 4 times by 1 test
Evaluated by:
  • tst_qquickloader
|| transientParent()->isVisible()
transientParent()->isVisible()Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • tst_qquickloader
FALSEnever evaluated
))
0-148
36 QQuickWindow::setVisible(visible);
executed 148 times by 8 tests: QQuickWindow::setVisible(visible);
Executed by:
  • tst_examples
  • tst_qqmlcomponent
  • tst_qquickanimations
  • tst_qquickitem
  • tst_qquicklistview
  • tst_qquickloader
  • tst_qquickshortcut
  • tst_qquicktext
148
37}
executed 156 times by 8 tests: end of block
Executed by:
  • tst_examples
  • tst_qqmlcomponent
  • tst_qquickanimations
  • tst_qquickitem
  • tst_qquicklistview
  • tst_qquickloader
  • tst_qquickshortcut
  • tst_qquicktext
156
38-
39void QQuickWindowQmlImpl::setVisibility(Visibility visibility)-
40{-
41 QQuickWindowQmlImplPrivate * const d = d_func();-
42 d->visibility = visibility;-
43 if (d->complete
d->completeDescription
TRUEnever evaluated
FALSEnever evaluated
)
0
44 QQuickWindow::setVisibility(visibility);
never executed: QQuickWindow::setVisibility(visibility);
0
45}
never executed: end of block
0
46-
47QQuickWindowAttached *QQuickWindowQmlImpl::qmlAttachedProperties(QObject *object)-
48{-
49 return
never executed: return new QQuickWindowAttached(object);
new QQuickWindowAttached(object);
never executed: return new QQuickWindowAttached(object);
0
50}-
51-
52void QQuickWindowQmlImpl::classBegin()-
53{-
54 QQuickWindowQmlImplPrivate * const d = d_func();-
55 QQmlEngine* e = qmlEngine(this);-
56-
57 QQmlEngine::setContextForObject(contentItem(), e->rootContext());-
58-
59-
60 if (QCoreApplication::instance()->property("__qml_using_qqmlapplicationengine") == QVariant(true)
QCoreApplicati...QVariant(true)Description
TRUEevaluated 130 times by 1 test
Evaluated by:
  • tst_qquickshortcut
FALSEevaluated 20 times by 7 tests
Evaluated by:
  • tst_examples
  • tst_qqmlcomponent
  • tst_qquickanimations
  • tst_qquickitem
  • tst_qquicklistview
  • tst_qquickloader
  • tst_qquicktext
) {
20-130
61 if (e
eDescription
TRUEevaluated 130 times by 1 test
Evaluated by:
  • tst_qquickshortcut
FALSEnever evaluated
&& !e->incubationController()
!e->incubationController()Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • tst_qquickshortcut
FALSEevaluated 24 times by 1 test
Evaluated by:
  • tst_qquickshortcut
)
0-130
62 e->setIncubationController(incubationController());
executed 106 times by 1 test: e->setIncubationController(incubationController());
Executed by:
  • tst_qquickshortcut
106
63 }
executed 130 times by 1 test: end of block
Executed by:
  • tst_qquickshortcut
130
64 {-
65-
66-
67 QV4::ExecutionEngine *v4 = e->handle();-
68 QV4::QObjectWrapper::wrap(v4, d->contentItem);-
69 }-
70}
executed 150 times by 8 tests: end of block
Executed by:
  • tst_examples
  • tst_qqmlcomponent
  • tst_qquickanimations
  • tst_qquickitem
  • tst_qquicklistview
  • tst_qquickloader
  • tst_qquickshortcut
  • tst_qquicktext
150
71-
72void QQuickWindowQmlImpl::componentComplete()-
73{-
74 QQuickWindowQmlImplPrivate * const d = d_func();-
75 d->complete = true;-
76 QQuickItem *itemParent = qmlobject_cast<QQuickItem *>(QObject::parent());-
77 if (itemParent
itemParentDescription
TRUEevaluated 6 times by 2 tests
Evaluated by:
  • tst_qqmlcomponent
  • tst_qquickloader
FALSEevaluated 144 times by 7 tests
Evaluated by:
  • tst_examples
  • tst_qqmlcomponent
  • tst_qquickanimations
  • tst_qquickitem
  • tst_qquicklistview
  • tst_qquickshortcut
  • tst_qquicktext
&& !itemParent->window()
!itemParent->window()Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • tst_qquickloader
FALSEevaluated 2 times by 1 test
Evaluated by:
  • tst_qqmlcomponent
) {
2-144
78 for (bool qt_category_enabled = lcTransient().isDebugEnabled(); qt_category_enabled
qt_category_enabledDescription
TRUEnever evaluated
FALSEevaluated 4 times by 1 test
Evaluated by:
  • tst_qquickloader
; qt_category_enabled = false) QMessageLogger(__FILE__, 128, __PRETTY_FUNCTION__, lcTransient().categoryName()).debug() << "window" << title() << "has invisible Item parent" << itemParent << "transientParent"
never executed: QMessageLogger(__FILE__, 128, __PRETTY_FUNCTION__, lcTransient().categoryName()).debug() << "window" << title() << "has invisible Item parent" << itemParent << "transientParent" << transientParent() << "declared visibility" << d->visibility << "; delaying show";
0-4
79 << transientParent() << "declared visibility" << d->visibility << "; delaying show";
never executed: QMessageLogger(__FILE__, 128, __PRETTY_FUNCTION__, lcTransient().categoryName()).debug() << "window" << title() << "has invisible Item parent" << itemParent << "transientParent" << transientParent() << "declared visibility" << d->visibility << "; delaying show";
0
80 connect(itemParent, &QQuickItem::windowChanged, this,-
81 &QQuickWindowQmlImpl::setWindowVisibility, Qt::QueuedConnection);-
82 }
executed 4 times by 1 test: end of block
Executed by:
  • tst_qquickloader
else if (transientParent()
transientParent()Description
TRUEevaluated 2 times by 1 test
Evaluated by:
  • tst_qqmlcomponent
FALSEevaluated 144 times by 7 tests
Evaluated by:
  • tst_examples
  • tst_qqmlcomponent
  • tst_qquickanimations
  • tst_qquickitem
  • tst_qquicklistview
  • tst_qquickshortcut
  • tst_qquicktext
&& !transientParent()->isVisible()
!transientPare...)->isVisible()Description
TRUEevaluated 2 times by 1 test
Evaluated by:
  • tst_qqmlcomponent
FALSEnever evaluated
) {
0-144
83 connect(transientParent(), &QQuickWindow::visibleChanged, this,-
84 &QQuickWindowQmlImpl::setWindowVisibility, Qt::QueuedConnection);-
85 }
executed 2 times by 1 test: end of block
Executed by:
  • tst_qqmlcomponent
else {
2
86 setWindowVisibility();-
87 }
executed 144 times by 7 tests: end of block
Executed by:
  • tst_examples
  • tst_qqmlcomponent
  • tst_qquickanimations
  • tst_qquickitem
  • tst_qquicklistview
  • tst_qquickshortcut
  • tst_qquicktext
144
88}-
89-
90void QQuickWindowQmlImpl::setWindowVisibility()-
91{-
92 QQuickWindowQmlImplPrivate * const d = d_func();-
93 if (transientParent()
transientParent()Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • tst_qquickloader
FALSEevaluated 144 times by 7 tests
Evaluated by:
  • tst_examples
  • tst_qqmlcomponent
  • tst_qquickanimations
  • tst_qquickitem
  • tst_qquicklistview
  • tst_qquickshortcut
  • tst_qquicktext
&& !transientParent()->isVisible()
!transientPare...)->isVisible()Description
TRUEnever evaluated
FALSEevaluated 4 times by 1 test
Evaluated by:
  • tst_qquickloader
)
0-144
94 return;
never executed: return;
0
95-
96 if (QQuickItem *senderItem = qmlobject_cast<QQuickItem *>(sender())
QQuickItem *se...m *>(sender())Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • tst_qquickloader
FALSEevaluated 144 times by 7 tests
Evaluated by:
  • tst_examples
  • tst_qqmlcomponent
  • tst_qquickanimations
  • tst_qquickitem
  • tst_qquicklistview
  • tst_qquickshortcut
  • tst_qquicktext
) {
4-144
97 disconnect(senderItem, &QQuickItem::windowChanged, this, &QQuickWindowQmlImpl::setWindowVisibility);-
98 }
executed 4 times by 1 test: end of block
Executed by:
  • tst_qquickloader
else if (sender()
sender()Description
TRUEnever evaluated
FALSEevaluated 144 times by 7 tests
Evaluated by:
  • tst_examples
  • tst_qqmlcomponent
  • tst_qquickanimations
  • tst_qquickitem
  • tst_qquicklistview
  • tst_qquickshortcut
  • tst_qquicktext
) {
0-144
99 disconnect(transientParent(), &QWindow::visibleChanged, this, &QQuickWindowQmlImpl::setWindowVisibility);-
100 }
never executed: end of block
0
101-
102-
103-
104-
105 if ((d->visibility == Hidden
d->visibility == HiddenDescription
TRUEnever evaluated
FALSEevaluated 148 times by 8 tests
Evaluated by:
  • tst_examples
  • tst_qqmlcomponent
  • tst_qquickanimations
  • tst_qquickitem
  • tst_qquicklistview
  • tst_qquickloader
  • tst_qquickshortcut
  • tst_qquicktext
&& d->visible
d->visibleDescription
TRUEnever evaluated
FALSEnever evaluated
) || (d->visibility > AutomaticVisibility
d->visibility ...aticVisibilityDescription
TRUEnever evaluated
FALSEevaluated 148 times by 8 tests
Evaluated by:
  • tst_examples
  • tst_qqmlcomponent
  • tst_qquickanimations
  • tst_qquickitem
  • tst_qquicklistview
  • tst_qquickloader
  • tst_qquickshortcut
  • tst_qquicktext
&& !d->visible
!d->visibleDescription
TRUEnever evaluated
FALSEnever evaluated
)) {
0-148
106 QQmlData *data = QQmlData::get(this);-
107 ((data && data->context) ? static_cast<void>(0) : qt_assert("data && data->context", __FILE__, 157));-
108-
109 QQmlError error;-
110 error.setObject(this);-
111-
112 const QQmlContextData* urlContext = data->context;-
113 while (urlContext
urlContextDescription
TRUEnever evaluated
FALSEnever evaluated
&& urlContext->url().isEmpty()
urlContext->url().isEmpty()Description
TRUEnever evaluated
FALSEnever evaluated
)
0
114 urlContext = urlContext->parent;
never executed: urlContext = urlContext->parent;
0
115 error.setUrl(urlContext ? urlContext->url() : QUrl());-
116-
117 QString objectId = data->context->findObjectId(this);-
118 if (!objectId.isEmpty()
!objectId.isEmpty()Description
TRUEnever evaluated
FALSEnever evaluated
)
0
119 error.setDescription(QCoreApplication::translate("QQuickWindowQmlImpl",
never executed: error.setDescription(QCoreApplication::translate("QQuickWindowQmlImpl", "Conflicting properties 'visible' and 'visibility' for Window '%1'").arg(objectId));
0
120 "Conflicting properties 'visible' and 'visibility' for Window '%1'").arg(objectId));
never executed: error.setDescription(QCoreApplication::translate("QQuickWindowQmlImpl", "Conflicting properties 'visible' and 'visibility' for Window '%1'").arg(objectId));
0
121 else-
122 error.setDescription(QCoreApplication::translate("QQuickWindowQmlImpl",
never executed: error.setDescription(QCoreApplication::translate("QQuickWindowQmlImpl", "Conflicting properties 'visible' and 'visibility'"));
0
123 "Conflicting properties 'visible' and 'visibility'"));
never executed: error.setDescription(QCoreApplication::translate("QQuickWindowQmlImpl", "Conflicting properties 'visible' and 'visibility'"));
0
124-
125 QQmlEnginePrivate::get(data->context->engine)->warning(error);-
126 }
never executed: end of block
0
127-
128 if (d->visibility == AutomaticVisibility
d->visibility ...aticVisibilityDescription
TRUEevaluated 148 times by 8 tests
Evaluated by:
  • tst_examples
  • tst_qqmlcomponent
  • tst_qquickanimations
  • tst_qquickitem
  • tst_qquicklistview
  • tst_qquickloader
  • tst_qquickshortcut
  • tst_qquicktext
FALSEnever evaluated
) {
0-148
129 setWindowState(QGuiApplicationPrivate::platformIntegration()->defaultWindowState(flags()));-
130 setVisible(d->visible);-
131 }
executed 148 times by 8 tests: end of block
Executed by:
  • tst_examples
  • tst_qqmlcomponent
  • tst_qquickanimations
  • tst_qquickitem
  • tst_qquicklistview
  • tst_qquickloader
  • tst_qquickshortcut
  • tst_qquicktext
else {
148
132 setVisibility(d->visibility);-
133 }
never executed: end of block
0
134}-
135-
136QObject *QQuickWindowQmlImpl::screen() const-
137{-
138 return
never executed: return new QQuickScreenInfo(const_cast<QQuickWindowQmlImpl *>(this), QWindow::screen());
new QQuickScreenInfo(const_cast<QQuickWindowQmlImpl *>(this), QWindow::screen());
never executed: return new QQuickScreenInfo(const_cast<QQuickWindowQmlImpl *>(this), QWindow::screen());
0
139}-
140-
141void QQuickWindowQmlImpl::setScreen(QObject *screen)-
142{-
143 QQuickScreenInfo *screenWrapper = qobject_cast<QQuickScreenInfo *>(screen);-
144 QWindow::setScreen(screenWrapper ? screenWrapper->wrappedScreen() : nullptr);-
145}
never executed: end of block
0
146-
147void QQuickWindowModule::defineModule()-
148{-
149 const char uri[] = "QtQuick.Window";-
150-
151 qmlRegisterType<QQuickWindow>(uri, 2, 0, "Window");-
152 qmlRegisterRevision<QWindow,1>(uri, 2, 1);-
153 qmlRegisterRevision<QWindow,2>(uri, 2, 2);-
154 qmlRegisterRevision<QQuickWindow,1>(uri, 2, 1);-
155 qmlRegisterRevision<QQuickWindow,2>(uri, 2, 2);-
156 qmlRegisterType<QQuickWindowQmlImpl>(uri, 2, 1, "Window");-
157 qmlRegisterType<QQuickWindowQmlImpl,1>(uri, 2, 2, "Window");-
158 qmlRegisterType<QQuickWindowQmlImpl,2>(uri, 2, 3, "Window");-
159 qmlRegisterUncreatableType<QQuickScreen>(uri, 2, 0, "Screen", ([]() noexcept -> QString { enum { Size = sizeof(u"" "Screen can only be used via the attached property.")/2 - 1 }; static const QStaticStringData<Size> qstring_literal = { { { { -1 } }, Size, 0, 0, sizeof(QStringData) }, u"" "Screen can only be used via the attached property." }; QStringDataPtr holder = { qstring_literal.data_ptr() }; const QString qstring_literal_temp(holder); return
executed 54 times by 20 tests: return qstring_literal_temp;
Executed by:
  • tst_examples
  • tst_qqmlcomponent
  • tst_qqmlenginecleanup
  • tst_qquickanimationcontroller
  • tst_qquickanimations
  • tst_qquickitem
  • tst_qquickitem2
  • tst_qquicklayouts
  • tst_qquicklistview
  • tst_qquickloader
  • tst_qquickmousearea
  • tst_qquickrepeater
  • tst_qquickscreen
  • tst_qquickshortcut
  • tst_qquicktableview
  • tst_qquicktext
  • tst_qquickview
  • tst_quicktestmainwithsetup
  • tst_scenegraph
  • tst_testfiltering
qstring_literal_temp;
executed 54 times by 20 tests: return qstring_literal_temp;
Executed by:
  • tst_examples
  • tst_qqmlcomponent
  • tst_qqmlenginecleanup
  • tst_qquickanimationcontroller
  • tst_qquickanimations
  • tst_qquickitem
  • tst_qquickitem2
  • tst_qquicklayouts
  • tst_qquicklistview
  • tst_qquickloader
  • tst_qquickmousearea
  • tst_qquickrepeater
  • tst_qquickscreen
  • tst_qquickshortcut
  • tst_qquicktableview
  • tst_qquicktext
  • tst_qquickview
  • tst_quicktestmainwithsetup
  • tst_scenegraph
  • tst_testfiltering
}()));
54
160 qmlRegisterUncreatableType<QQuickScreen,1>(uri, 2, 3, "Screen", ([]() noexcept -> QString { enum { Size = sizeof(u"" "Screen can only be used via the attached property.")/2 - 1 }; static const QStaticStringData<Size> qstring_literal = { { { { -1 } }, Size, 0, 0, sizeof(QStringData) }, u"" "Screen can only be used via the attached property." }; QStringDataPtr holder = { qstring_literal.data_ptr() }; const QString qstring_literal_temp(holder); return
executed 54 times by 20 tests: return qstring_literal_temp;
Executed by:
  • tst_examples
  • tst_qqmlcomponent
  • tst_qqmlenginecleanup
  • tst_qquickanimationcontroller
  • tst_qquickanimations
  • tst_qquickitem
  • tst_qquickitem2
  • tst_qquicklayouts
  • tst_qquicklistview
  • tst_qquickloader
  • tst_qquickmousearea
  • tst_qquickrepeater
  • tst_qquickscreen
  • tst_qquickshortcut
  • tst_qquicktableview
  • tst_qquicktext
  • tst_qquickview
  • tst_quicktestmainwithsetup
  • tst_scenegraph
  • tst_testfiltering
qstring_literal_temp;
executed 54 times by 20 tests: return qstring_literal_temp;
Executed by:
  • tst_examples
  • tst_qqmlcomponent
  • tst_qqmlenginecleanup
  • tst_qquickanimationcontroller
  • tst_qquickanimations
  • tst_qquickitem
  • tst_qquickitem2
  • tst_qquicklayouts
  • tst_qquicklistview
  • tst_qquickloader
  • tst_qquickmousearea
  • tst_qquickrepeater
  • tst_qquickscreen
  • tst_qquickshortcut
  • tst_qquicktableview
  • tst_qquicktext
  • tst_qquickview
  • tst_quicktestmainwithsetup
  • tst_scenegraph
  • tst_testfiltering
}()));
54
161 qmlRegisterUncreatableType<QQuickScreenInfo,2>(uri, 2, 3, "ScreenInfo", ([]() noexcept -> QString { enum { Size = sizeof(u"" "ScreenInfo can only be used via the attached property.")/2 - 1 }; static const QStaticStringData<Size> qstring_literal = { { { { -1 } }, Size, 0, 0, sizeof(QStringData) }, u"" "ScreenInfo can only be used via the attached property." }; QStringDataPtr holder = { qstring_literal.data_ptr() }; const QString qstring_literal_temp(holder); return
executed 54 times by 20 tests: return qstring_literal_temp;
Executed by:
  • tst_examples
  • tst_qqmlcomponent
  • tst_qqmlenginecleanup
  • tst_qquickanimationcontroller
  • tst_qquickanimations
  • tst_qquickitem
  • tst_qquickitem2
  • tst_qquicklayouts
  • tst_qquicklistview
  • tst_qquickloader
  • tst_qquickmousearea
  • tst_qquickrepeater
  • tst_qquickscreen
  • tst_qquickshortcut
  • tst_qquicktableview
  • tst_qquicktext
  • tst_qquickview
  • tst_quicktestmainwithsetup
  • tst_scenegraph
  • tst_testfiltering
qstring_literal_temp;
executed 54 times by 20 tests: return qstring_literal_temp;
Executed by:
  • tst_examples
  • tst_qqmlcomponent
  • tst_qqmlenginecleanup
  • tst_qquickanimationcontroller
  • tst_qquickanimations
  • tst_qquickitem
  • tst_qquickitem2
  • tst_qquicklayouts
  • tst_qquicklistview
  • tst_qquickloader
  • tst_qquickmousearea
  • tst_qquickrepeater
  • tst_qquickscreen
  • tst_qquickshortcut
  • tst_qquicktableview
  • tst_qquicktext
  • tst_qquickview
  • tst_quicktestmainwithsetup
  • tst_scenegraph
  • tst_testfiltering
}()));
54
162 qmlRegisterUncreatableType<QQuickScreenInfo,10>(uri, 2, 10, "ScreenInfo", ([]() noexcept -> QString { enum { Size = sizeof(u"" "ScreenInfo can only be used via the attached property.")/2 - 1 }; static const QStaticStringData<Size> qstring_literal = { { { { -1 } }, Size, 0, 0, sizeof(QStringData) }, u"" "ScreenInfo can only be used via the attached property." }; QStringDataPtr holder = { qstring_literal.data_ptr() }; const QString qstring_literal_temp(holder); return
executed 54 times by 20 tests: return qstring_literal_temp;
Executed by:
  • tst_examples
  • tst_qqmlcomponent
  • tst_qqmlenginecleanup
  • tst_qquickanimationcontroller
  • tst_qquickanimations
  • tst_qquickitem
  • tst_qquickitem2
  • tst_qquicklayouts
  • tst_qquicklistview
  • tst_qquickloader
  • tst_qquickmousearea
  • tst_qquickrepeater
  • tst_qquickscreen
  • tst_qquickshortcut
  • tst_qquicktableview
  • tst_qquicktext
  • tst_qquickview
  • tst_quicktestmainwithsetup
  • tst_scenegraph
  • tst_testfiltering
qstring_literal_temp;
executed 54 times by 20 tests: return qstring_literal_temp;
Executed by:
  • tst_examples
  • tst_qqmlcomponent
  • tst_qqmlenginecleanup
  • tst_qquickanimationcontroller
  • tst_qquickanimations
  • tst_qquickitem
  • tst_qquickitem2
  • tst_qquicklayouts
  • tst_qquicklistview
  • tst_qquickloader
  • tst_qquickmousearea
  • tst_qquickrepeater
  • tst_qquickscreen
  • tst_qquickshortcut
  • tst_qquicktableview
  • tst_qquicktext
  • tst_qquickview
  • tst_quicktestmainwithsetup
  • tst_scenegraph
  • tst_testfiltering
}()));
54
163}
executed 54 times by 20 tests: end of block
Executed by:
  • tst_examples
  • tst_qqmlcomponent
  • tst_qqmlenginecleanup
  • tst_qquickanimationcontroller
  • tst_qquickanimations
  • tst_qquickitem
  • tst_qquickitem2
  • tst_qquicklayouts
  • tst_qquicklistview
  • tst_qquickloader
  • tst_qquickmousearea
  • tst_qquickrepeater
  • tst_qquickscreen
  • tst_qquickshortcut
  • tst_qquicktableview
  • tst_qquicktext
  • tst_qquickview
  • tst_quicktestmainwithsetup
  • tst_scenegraph
  • tst_testfiltering
54
164-
165-
166-
Switch to Source codePreprocessed file

Generated by Squish Coco 4.2.0