Home
last modified time | relevance | path

Searched refs:coordinates (Results 1 – 25 of 93) sorted by relevance

1234

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/tile/
H A Dgeometry_tile_data.hpp90 GeometryCoordinates coordinates; in operator ()() local
91 coordinates.reserve(geom.size()); in operator ()()
93 coordinates.emplace_back(point); in operator ()()
95 return { coordinates }; in operator ()()
98 GeometryCoordinates coordinates; in operator ()() local
99 coordinates.reserve(geom.size()); in operator ()()
101 coordinates.emplace_back(point); in operator ()()
103 return { coordinates }; in operator ()()
109 GeometryCoordinates coordinates; in operator ()() local
110 coordinates.reserve(ring.size()); in operator ()()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeoroutesegment/
H A Dtst_qgeoroutesegment.cpp139 QFETCH(QList<double>, coordinates); in path()
146 for (int i = 0; i < coordinates.size(); i += 2) { in path()
147 path.append(QGeoCoordinate(coordinates.at(i), coordinates.at(i+1))); in path()
165 QList<double> coordinates; in path_data() local
167 coordinates << 0.0 << 0.0; in path_data()
168 QTest::newRow("path1") << coordinates; in path_data()
170 coordinates << -23.23 << 54.45345; in path_data()
171 QTest::newRow("path2") << coordinates; in path_data()
173 coordinates << -85.4324 << -121.343; in path_data()
174 QTest::newRow("path3") << coordinates; in path_data()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeoroute/
H A Dtst_qgeoroute.cpp130 QFETCH(QList<double>, coordinates); in path()
134 for (int i = 0; i < coordinates.size(); i += 2) { in path()
135 path.append(QGeoCoordinate(coordinates.at(i),coordinates.at(i+1))); in path()
152 QList<double> coordinates; in path_data() local
154 coordinates << 0.0 << 0.0; in path_data()
155 QTest::newRow("path1") << coordinates ; in path_data()
157 coordinates << -23.23 << 54.45345; in path_data()
158 QTest::newRow("path2") << coordinates ; in path_data()
160 coordinates << -85.4324 << -121.343; in path_data()
161 QTest::newRow("path3") << coordinates ; in path_data()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeorouterequest/
H A Dtst_qgeorouterequest.cpp225 QFETCH(QList<double>, coordinates); in waypoints()
229 for (int i = 0; i < coordinates.size(); i += 2) { in waypoints()
230 waypoints.append(QGeoCoordinate(coordinates.at(i), coordinates.at(i+1))); in waypoints()
247 QList<double> coordinates; in waypoints_data() local
249 coordinates << 0.0 << 0.0; in waypoints_data()
250 QTest::newRow("path1") << coordinates ; in waypoints_data()
252 coordinates << -23.23 << 54.45345; in waypoints_data()
253 QTest::newRow("path2") << coordinates ; in waypoints_data()
255 coordinates << -85.4324 << -121.343; in waypoints_data()
256 QTest::newRow("path3") << coordinates ; in waypoints_data()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/mapboxgl/
H A Dqmapboxglstylechange.cpp108 QMapbox::Coordinates coordinates; in featureFromMapCircle() local
110 coordinates << QMapbox::Coordinate { coordinate.latitude(), coordinate.longitude() }; in featureFromMapCircle()
112 coordinates.append(coordinates.first()); // closing the path in featureFromMapCircle()
113 QMapbox::CoordinatesCollections geometry { { coordinates } }; in featureFromMapCircle()
119 QMapbox::Coordinates coordinates; in qgeocoordinate2mapboxcoordinate() local
121 …if (!coordinates.empty() && crossesDateline && qAbs(coordinate.longitude() - coordinates.last().se… in qgeocoordinate2mapboxcoordinate()
122coordinates << QMapbox::Coordinate { coordinate.latitude(), coordinate.longitude() + (coordinate.l… in qgeocoordinate2mapboxcoordinate()
124 coordinates << QMapbox::Coordinate { coordinate.latitude(), coordinate.longitude() }; in qgeocoordinate2mapboxcoordinate()
127 if (closed && !coordinates.empty() && coordinates.last() != coordinates.first()) in qgeocoordinate2mapboxcoordinate()
128 coordinates.append(coordinates.first()); // closing the path in qgeocoordinate2mapboxcoordinate()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/imports/positioning/
H A Dlocationsingleton.cpp172 QGeoRectangle LocationSingleton::rectangle(const QVariantList &coordinates) const in rectangle()
175 for (int i = 0; i < coordinates.size(); i++) { in rectangle()
176 if (coordinates.at(i).canConvert<QGeoCoordinate>()) in rectangle()
177 internalCoordinates << coordinates.at(i).value<QGeoCoordinate>(); in rectangle()
268 QGeoPolygon LocationSingleton::polygon(const QVariantList &coordinates) const in polygon()
271 for (int i = 0; i < coordinates.size(); i++) { in polygon()
272 if (coordinates.at(i).canConvert<QGeoCoordinate>()) in polygon()
273 internalCoordinates << coordinates.at(i).value<QGeoCoordinate>(); in polygon()
H A Dlocationsingleton.h84 Q_INVOKABLE QGeoRectangle rectangle(const QVariantList &coordinates) const;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/buckets/
H A Dline_bucket.cpp67 void LineBucket::addGeometry(const GeometryCoordinates& coordinates, const GeometryTileFeature& fea… in addGeometry() argument
69 const std::size_t len = [&coordinates] { in addGeometry()
70 std::size_t l = coordinates.size(); in addGeometry()
72 while (l >= 2 && coordinates[l - 1] == coordinates[l - 2]) { in addGeometry()
78 const std::size_t first = [&coordinates, &len] { in addGeometry()
81 while (i < len - 1 && coordinates[i] == coordinates[i + 1]) { in addGeometry()
98 const GeometryCoordinate firstCoordinate = coordinates[first]; in addGeometry()
114 currentCoordinate = coordinates[len - 2]; in addGeometry()
124 nextCoordinate = coordinates[first + 1]; in addGeometry()
127 nextCoordinate = coordinates[i + 1]; in addGeometry()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/osm/
H A Dqplacesearchreplyosm.cpp85 static QGeoRectangle parseBoundingBox(const QJsonArray &coordinates) in parseBoundingBox() argument
87 if (coordinates.count() != 4) in parseBoundingBox()
90 double bottom = coordinates.at(0).toString().toDouble(); in parseBoundingBox()
91 double top = coordinates.at(1).toString().toDouble(); in parseBoundingBox()
92 double left = coordinates.at(2).toString().toDouble(); in parseBoundingBox()
93 double right = coordinates.at(3).toString().toDouble(); in parseBoundingBox()
H A Dqplacemanagerengineosm.cpp149 QString coordinates; in search() local
150 coordinates = QString::number(boundingBox.topLeft().longitude()) + QLatin1Char(',') + in search()
154 queryItems.addQueryItem(QStringLiteral("viewbox"), coordinates); in search()
/OK3568_Linux_fs/kernel/Documentation/userspace-api/media/v4l/
H A Dselection-api-configuration.rst30 The range of coordinates of the top left corner, width and height of
33 corner at position ``(0,0)``. The rectangle's coordinates are expressed
50 coordinates are obtained using ``V4L2_SEL_TGT_COMPOSE_BOUNDS``. All
51 coordinates are expressed in pixels. The rectangle's top/left corner
57 coordinates are also expressed in the same coordinate system as the
90 cropping coordinates are obtained using ``V4L2_SEL_TGT_CROP_BOUNDS``.
91 All coordinates are expressed in pixels. The top/left corner is always
97 by the ``V4L2_SEL_TGT_CROP``. Its coordinates are expressed in in the
109 target. The rectangle's coordinates are expressed in pixels. The
H A Dvidioc-g-selection.rst53 the current cropping (composing) coordinates. The coordinates are
55 for images in raw formats, whose coordinates are always expressed in
67 must be filled with zeros. The driver may adjust coordinates of the
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/nokia/
H A Dqgeoroutexmlparser.cpp450 QGeoCoordinate coordinates; in parseManeuver() local
451 if (parseCoordinates(coordinates)) in parseManeuver()
452 maneuverContainter.maneuver.setPosition(coordinates); in parseManeuver()
596 QGeoCoordinate coordinates; in parseBoundingBox() local
597 if (parseCoordinates(coordinates)) in parseBoundingBox()
598 tl = coordinates; in parseBoundingBox()
600 QGeoCoordinate coordinates; in parseBoundingBox() local
601 if (parseCoordinates(coordinates)) in parseBoundingBox()
602 br = coordinates; in parseBoundingBox()
/OK3568_Linux_fs/buildroot/package/weston/
H A D0076-HACK-Honour-cursor-size-config.patch114 /** Transform a rectangle to buffer coordinates
165 /* first transform coordinates if the viewport is set */
178 /** Transform a rectangle from surface coordinates to buffer coordinates
193 /** Transform a region from surface coordinates to buffer coordinates
/OK3568_Linux_fs/yocto/meta-rockchip/recipes-graphics/wayland/weston_11.0.1/
H A D0077-HACK-Honour-cursor-size-config.patch114 /** Transform a rectangle to buffer coordinates
165 /* first transform coordinates if the viewport is set */
178 /** Transform a rectangle from surface coordinates to buffer coordinates
193 /** Transform a region from surface coordinates to buffer coordinates
/OK3568_Linux_fs/buildroot/package/proj/
H A DConfig.in10 geographic longitude and latitude coordinates into cartesian
11 coordinates (and vice versa), and it is a C API for software
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/
H A Dsource.cpp150 std::array<LatLng, 4> coordinates; in convertImageSource() local
156 coordinates[i] = *latLng; in convertImageSource()
158 auto result = std::make_unique<ImageSource>(id, coordinates); in convertImageSource()
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/input/touchscreen/
H A Dbu21013.txt25 - rohm,flip-x : Flip touch coordinates on the X axis
26 - rohm,flip-y : Flip touch coordinates on the Y axis
H A Dst,stmfts.txt8 coordinates.
/OK3568_Linux_fs/kernel/Documentation/input/devices/
H A Dsentelic.rst186 => 01, Absolute coordinates packet
211 => 01, Absolute coordinates packet
215 Bit4 => when in absolute coordinates mode (valid when EN_PKT_GO is 1):
253 => 01, Absolute coordinates packet
312 Bit4 => when in absolute coordinates mode (valid when EN_PKT_GO is 1):
350 => 01, Absolute coordinates packet
353 0: single-finger absolute coordinates (SFAC) mode
354 1: multi-finger, multiple coordinates (MFMC) mode
381 0: single-finger absolute coordinates (SFAC) mode
382 1: multi-finger, multiple coordinates (MFMC) mode
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/
H A Dqgeorectangle.cpp244 QGeoRectangle::QGeoRectangle(const QList<QGeoCoordinate> &coordinates) in QGeoRectangle() argument
247 if (coordinates.isEmpty()) { in QGeoRectangle()
250 const QGeoCoordinate &startCoordinate = coordinates.first(); in QGeoRectangle()
253 foreach (const QGeoCoordinate &coordinate, coordinates) { in QGeoRectangle()
/OK3568_Linux_fs/yocto/poky/meta/recipes-bsp/grub/files/
H A DCVE-2022-3775.patch11 coordinates are allowed to be negative but ctx.bounds.height is an
20 to ensure coordinates are always calculated on signed integers.
/OK3568_Linux_fs/external/xserver/miext/rootless/
H A DREADME.txt103 screen-local to global coordinates.
175 * pNewShape Shape for the frame (in frame-local coordinates). NULL for
235 * pNewShape New shape for the frame (in frame-local coordinates)
277 * coordinates. This is clipped to the window's clip.
287 * rects Array of damaged rectangles in frame-local coordinates
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-support/ncp/
H A Dncp_1.2.4.bb4 one: you don't have to type the coordinates of your peer."
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/iio/
H A Dmount-matrix.txt21 of the (x,y,z) triplets, such as different registers to read these coordinates,
31 For a screen you probably want (x) coordinates to go from negative on the left
182 Identity matrix (nothing happens to the coordinates, which means the device was

1234