Lines Matching refs:shape
336 QDebug operator<<(QDebug dbg, const QGeoShape &shape) in operator <<() argument
340 switch (shape.type()) { in operator <<()
364 QDataStream &operator<<(QDataStream &stream, const QGeoShape &shape) in operator <<() argument
366 stream << quint32(shape.type()); in operator <<()
367 switch (shape.type()) { in operator <<()
371 QGeoRectangle r = shape; in operator <<()
376 QGeoCircle c = shape; in operator <<()
381 QGeoPath p = shape; in operator <<()
388 QGeoPolygon p = shape; in operator <<()
399 QDataStream &operator>>(QDataStream &stream, QGeoShape &shape) in operator >>() argument
406 shape = QGeoShape(); in operator >>()
412 shape = QGeoRectangle(tl, br); in operator >>()
419 shape = QGeoCircle(c, r); in operator >>()
431 shape = QGeoPath(l); in operator >>()
443 shape = QGeoPolygon(l); in operator >>()