OpenCoverage

qquickpath_p_p.h

Absolute File Name:/home/opencoverage/opencoverage/guest-scripts/qtdeclarative/src/qtdeclarative/src/quick/util/qquickpath_p_p.h
Switch to Source codePreprocessed file
LineSourceCount
1-
2static_assert(bool(1 == 1), "Required feature " "quick_path" " for file " __FILE__ " not available.");-
3-
4-
5-
6-
7-
8-
9-
10class __attribute__((visibility("default"))) QQuickPathPrivate : public QObjectPrivate-
11{-
12 inline QQuickPath* q_func() { return static_cast<QQuickPath *>(q_ptr); } inline const QQuickPath* q_func() const { return static_cast<const QQuickPath *>(q_ptr); } friend class QQuickPath;-
13-
14public:-
15 static QQuickPathPrivate* get(QQuickPath *path) { return
executed 10752 times by 6 tests: return path->d_func();
Executed by:
  • tst_examples
  • tst_qquickanimations
  • tst_qquickpath
  • tst_qquickpathview
  • tst_qquickshape
  • tst_qquickvisualdatamodel
path->d_func();
executed 10752 times by 6 tests: return path->d_func();
Executed by:
  • tst_examples
  • tst_qquickanimations
  • tst_qquickpath
  • tst_qquickpathview
  • tst_qquickshape
  • tst_qquickvisualdatamodel
}
10752
16 static const QQuickPathPrivate* get(const QQuickPath *path) { return
never executed: return path->d_func();
path->d_func();
never executed: return path->d_func();
}
0
17-
18 QQuickPathPrivate() {}-
19-
20 QPainterPath _path;-
21 QList<QQuickPathElement*> _pathElements;-
22 mutable QVector<QPointF> _pointCache;-
23 QList<QQuickPath::AttributePoint> _attributePoints;-
24 QStringList _attributes;-
25 QList<QQuickCurve*> _pathCurves;-
26 mutable QQuickCachedBezier prevBez;-
27 QQmlNullableValue<qreal> startX;-
28 QQmlNullableValue<qreal> startY;-
29 qreal pathLength = 0;-
30 bool closed = false;-
31 bool componentComplete = true;-
32 bool isShapePath = false;-
33};-
34-
35-
Switch to Source codePreprocessed file

Generated by Squish Coco 4.2.0