Lines Matching refs:QGeoShape
58 QGeoShapePrivate::QGeoShapePrivate(QGeoShape::ShapeType type) in QGeoShapePrivate()
139 inline QGeoShapePrivate *QGeoShape::d_func() in d_func()
144 inline const QGeoShapePrivate *QGeoShape::d_func() const in d_func()
152 QGeoShape::QGeoShape() in QGeoShape() function in QGeoShape
159 QGeoShape::QGeoShape(const QGeoShape &other) in QGeoShape() function in QGeoShape
167 QGeoShape::QGeoShape(QGeoShapePrivate *d) in QGeoShape() function in QGeoShape
175 QGeoShape::~QGeoShape() in ~QGeoShape()
182 QGeoShape::ShapeType QGeoShape::type() const in type()
184 Q_D(const QGeoShape); in type()
196 bool QGeoShape::isValid() const in isValid()
198 Q_D(const QGeoShape); in isValid()
211 bool QGeoShape::isEmpty() const in isEmpty()
213 Q_D(const QGeoShape); in isEmpty()
224 bool QGeoShape::contains(const QGeoCoordinate &coordinate) const in contains()
226 Q_D(const QGeoShape); in contains()
240 QGeoRectangle QGeoShape::boundingGeoRectangle() const in boundingGeoRectangle()
242 Q_D(const QGeoShape); in boundingGeoRectangle()
255 QGeoCoordinate QGeoShape::center() const in center()
257 Q_D(const QGeoShape); in center()
278 void QGeoShape::extendShape(const QGeoCoordinate &coordinate) in extendShape()
280 Q_D(QGeoShape); in extendShape()
291 bool QGeoShape::operator==(const QGeoShape &other) const in operator ==()
293 Q_D(const QGeoShape); in operator ==()
308 bool QGeoShape::operator!=(const QGeoShape &other) const in operator !=()
316 QGeoShape &QGeoShape::operator=(const QGeoShape &other) in operator =()
330 QString QGeoShape::toString() const in toString()
336 QDebug operator<<(QDebug dbg, const QGeoShape &shape) in operator <<()
341 case QGeoShape::UnknownType: in operator <<()
344 case QGeoShape::RectangleType: in operator <<()
347 case QGeoShape::PathType: in operator <<()
350 case QGeoShape::PolygonType: in operator <<()
353 case QGeoShape::CircleType: in operator <<()
364 QDataStream &operator<<(QDataStream &stream, const QGeoShape &shape) in operator <<()
368 case QGeoShape::UnknownType: in operator <<()
370 case QGeoShape::RectangleType: { in operator <<()
375 case QGeoShape::CircleType: { in operator <<()
380 case QGeoShape::PathType: { in operator <<()
387 case QGeoShape::PolygonType: { in operator <<()
399 QDataStream &operator>>(QDataStream &stream, QGeoShape &shape) in operator >>()
405 case QGeoShape::UnknownType: in operator >>()
406 shape = QGeoShape(); in operator >>()
408 case QGeoShape::RectangleType: { in operator >>()
415 case QGeoShape::CircleType: { in operator >>()
422 case QGeoShape::PathType: { in operator >>()
434 case QGeoShape::PolygonType: { in operator >>()