Home
last modified time | relevance | path

Searched refs:QPlaceContentPrivate (Results 1 – 9 of 9) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/places/
H A Dqplacecontent_p.h70 virtual QPlaceContentPrivate *clone() const { return new Class##Private(*this); } \
72 …static void copyIfPossible(QSharedDataPointer<QPlaceContentPrivate> &d_ptr, const QPlaceContent &o…
80 class QPlaceContentPrivate : public QSharedData
83 QPlaceContentPrivate(){} in QPlaceContentPrivate() function
84 virtual ~QPlaceContentPrivate(){} in ~QPlaceContentPrivate()
86 virtual bool compare(const QPlaceContentPrivate *other) const;
87 virtual QPlaceContentPrivate *clone() const = 0;
91 …static const QSharedDataPointer<QPlaceContentPrivate> &extract_d(const QPlaceContent &other) {retu… in extract_d()
98 template<> QPlaceContentPrivate *QSharedDataPointer<QPlaceContentPrivate>::clone();
H A Dqplacecontent.cpp44 template<> QPlaceContentPrivate *QSharedDataPointer<QPlaceContentPrivate>::clone() in clone()
49 inline QPlaceContentPrivate *QPlaceContent::d_func() in d_func()
51 return static_cast<QPlaceContentPrivate *>(d_ptr.data()); in d_func()
54 inline const QPlaceContentPrivate *QPlaceContent::d_func() const in d_func()
56 return static_cast<const QPlaceContentPrivate *>(d_ptr.constData()); in d_func()
59 bool QPlaceContentPrivate::compare(const QPlaceContentPrivate *other) const in compare()
264 QPlaceContent::QPlaceContent(QPlaceContentPrivate *d) in QPlaceContent()
H A Dqplacecontent.h57 class QPlaceContentPrivate; variable
92 explicit QPlaceContent(QPlaceContentPrivate *d);
93 QSharedDataPointer<QPlaceContentPrivate> d_ptr;
96 inline QPlaceContentPrivate *d_func();
97 inline const QPlaceContentPrivate *d_func() const;
99 friend class QPlaceContentPrivate; variable
H A Dqplaceimage.cpp42 QPlaceImagePrivate::QPlaceImagePrivate() : QPlaceContentPrivate() in QPlaceImagePrivate()
47 : QPlaceContentPrivate(other) in QPlaceImagePrivate()
58 bool QPlaceImagePrivate::compare(const QPlaceContentPrivate *other) const in compare()
61 return QPlaceContentPrivate::compare(other) in compare()
H A Dqplaceeditorial.cpp43 : QPlaceContentPrivate() in QPlaceEditorialPrivate()
48 : QPlaceContentPrivate(other), text(other.text), contentTitle(other.contentTitle), in QPlaceEditorialPrivate()
57 bool QPlaceEditorialPrivate::compare(const QPlaceContentPrivate *other) const in compare()
60 return QPlaceContentPrivate::compare(other) in compare()
H A Dqplacereview.cpp43 : QPlaceContentPrivate(), rating(0) in QPlaceReviewPrivate()
48 : QPlaceContentPrivate(other) in QPlaceReviewPrivate()
62 bool QPlaceReviewPrivate::compare(const QPlaceContentPrivate *other) const in compare()
65 return QPlaceContentPrivate::compare(other) && in compare()
H A Dqplaceeditorial_p.h58 class QPlaceEditorialPrivate : public QPlaceContentPrivate
66 bool compare(const QPlaceContentPrivate *other) const;
H A Dqplaceimage_p.h59 class QPlaceImagePrivate : public QPlaceContentPrivate
67 bool compare(const QPlaceContentPrivate *other) const;
H A Dqplacereview_p.h58 class QPlaceReviewPrivate : public QPlaceContentPrivate
66 bool compare(const QPlaceContentPrivate *other) const;