Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/
H A Dqgeorectangle.h55 Q_PROPERTY(QGeoCoordinate topRight READ topRight WRITE setTopRight)
81 void setTopRight(const QGeoCoordinate &topRight);
82 QGeoCoordinate topRight() const;
H A Dqgeorectangle.cpp353 void QGeoRectangle::setTopRight(const QGeoCoordinate &topRight) in setTopRight() argument
357 d->topLeft.setLatitude(topRight.latitude()); in setTopRight()
358 d->bottomRight.setLongitude(topRight.longitude()); in setTopRight()
364 QGeoCoordinate QGeoRectangle::topRight() const in topRight() function in QGeoRectangle
671 && d->contains(rectangle.topRight()) in contains()
H A Dqgeopolygon.cpp192 perimeter << rect.topLeft() << rect.topRight() in QGeoPolygon()
H A Dqdoublematrix4x4.cpp959 QPointF tl = map(rect.topLeft()); QPointF tr = map(rect.topRight()); in mapRect()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/mapboxgl/
H A Dqmapboxglstylechange.cpp81 QMapbox::Coordinate topRight { rect->topRight().latitude(), rect->topRight().longitude() }; in featureFromMapRectangle() local
84 topRight.second += 360.0; in featureFromMapRectangle()
86 …QMapbox::CoordinatesCollections geometry { { { bottomLeft, bottomRight, topRight, topLeft, bottomL… in featureFromMapRectangle()
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/database/
H A Dbookdelegate.cpp97 painter->drawLine(option.rect.topRight(), option.rect.bottomRight()); in paint()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeorectangle/
H A Dtst_qgeorectangle.cpp340 QFETCH(QGeoCoordinate, topRight); in corners()
345 QCOMPARE(box.topRight(), topRight); in corners()
398 QCOMPARE(box.topRight(), QGeoCoordinate(20.0, 10.0)); in setCorners()
405 QCOMPARE(box.topRight(), QGeoCoordinate(30.0, 20.0)); in setCorners()
412 QCOMPARE(box.topRight(), QGeoCoordinate(30.0, 30.0)); in setCorners()
419 QCOMPARE(box.topRight(), QGeoCoordinate(30.0, 30.0)); in setCorners()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/declarative_geoshape/
H A Dtst_locationsingleton.qml117 box.topRight = ntr
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/
H A Dqgeotiledmapscene.cpp464 const QPointF trt = matrix * tileRect.topRight(); in qgeotiledmapscene_isTileInViewport_rotationTilt()