Home
last modified time | relevance | path

Searched refs:center (Results 1 – 25 of 443) sorted by relevance

12345678910>>...18

/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/declarative_ui/
H A Dtst_map.qml85 zoomLevel: 3; center: coordinate1; plugin: testPlugin;
93 center: coordinate1; plugin: testPlugin; }
96 zoomLevel: 4; center: coordinate1; plugin: testPlugin;
103 center: coordinateCenterVisibleRegion; plugin: testPlugin; zoomLevel: 1.0 }
105 Map {id: map; plugin: testPlugin; center: coordinate1; width: 100; height: 100}
108 Map {id: mapPar; plugin: testPlugin; center: coordinate1; width: 512; height: 512}
110 Map {id: coordinateMap; plugin: testPlugin; center: coordinate3;
113 Map {id: mapTiltBearing; plugin: testPlugin; center: coordinate1;
116 Map {id: mapTiltBearingHere; plugin: testPlugin; center: coordinate1;
134 property var center: QtPositioning.coordinate(-33.0, -47.0)
[all …]
H A Dtst_map_flick.qml53 center: coordinate;
72 flickStartedLatitude = map.center.latitude
73 flickStartedLatitude = map.center.longitude
169 map.center.latitude = 10
170 map.center.longitude = 11
179 … verify(map.center.latitude > 10) // latitude increases we are going 'up/north' (moving mouse down)
180 var moveLatitude = map.center.latitude // store lat and check that flick continues
186 verify(map.center.latitude > moveLatitude)
187 compare(map.center.longitude, 11) // should remain the same
206 map.center.latitude = 70
[all …]
H A Dtst_map_keepgrab.qml77 map.center = QtPositioning.coordinate(50,50)
112 var center = QtPositioning.coordinate(map.center.latitude,map.center.longitude)
121 verify(center == map.center)
126 var center = QtPositioning.coordinate(map.center.latitude,map.center.longitude)
134 verify(center != map.center)
144 var center = QtPositioning.coordinate(map.center.latitude,map.center.longitude)
153 verify(center != map.center)
H A Dtst_map_item.qml84 center {
226 var mapcenter = map.fromCoordinate(map.center)
233 map.center = QtPositioning.coordinate(20, 20)
234 preMapCircle.center = QtPositioning.coordinate(10,30)
282 map.center = preMapRect.topLeft
292 map.center = preMapCircle.center
294 point = map.fromCoordinate(preMapCircle.center)
300 map.center = preMapCircle.center.atDistanceAndAzimuth(preMapCircle.radius, -45)
307 map.center = preMapQuickItem.coordinate
315 map.center = preMapPolygon.path[1]
[all …]
H A Dtst_map_error.qml86 map_error_plugin.center = QtPositioning.coordinate(0, 0)
87 map_no_plugin.center = QtPositioning.coordinate(0, 0)
127 map_no_plugin.center = coordinate
128 verify(map_no_plugin.center === coordinate)
129 map_error_plugin.center = coordinate
130 verify(map_error_plugin.center === coordinate)
149 map_no_plugin.center = coordinate
151 map_error_plugin.center = coordinate
171 map_no_plugin.center = coordinate
173 verify(map_no_plugin.center === coordinate)
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/labs/
H A Dqmapcircleobject.cpp74 return QGeoCircle(center(), radius()); in geoShape()
83 const bool centerHasChanged = circle.center() != center(); in setGeoShape()
87 setCenter(circle.center()); // to handle overrides in setGeoShape()
108 m_center = other.center(); in QMapCircleObjectPrivateDefault()
120 QGeoCoordinate QMapCircleObjectPrivateDefault::center() const in center() function in QMapCircleObjectPrivateDefault
125 void QMapCircleObjectPrivateDefault::setCenter(const QGeoCoordinate &center) in setCenter() argument
127 m_center = center; in setCenter()
177 && center() == o.center() in equals()
210 QGeoCoordinate QMapCircleObject::center() const in center() function in QMapCircleObject
212 return static_cast<const QMapCircleObjectPrivate*>(d_ptr.data())->center(); in center()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeocircle/
H A Dtst_qgeocircle.cpp49 void center();
79 QVERIFY(!c.center().isValid()); in defaultConstructor()
86 QCOMPARE(c.center(), QGeoCoordinate(1,1)); in centerRadiusConstructor()
98 QCOMPARE(c2.center(), QGeoCoordinate(10.0, 0.0)); in assignment()
104 QCOMPARE(c1.center(), QGeoCoordinate(10.0, 0.0)); in assignment()
114 QCOMPARE(ca.center(), c1.center()); in assignment()
119 QVERIFY(ca.center() != c1.center()); in assignment()
170 void tst_QGeoCircle::center() in center() function in tst_QGeoCircle
174 QCOMPARE(c.center(), QGeoCoordinate(1,1)); in center()
177 QCOMPARE(shape.center(), c.center()); in center()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativemaps/
H A Dqdeclarativecirclemapitem.cpp176 … const double leftLongi = QLocationUtils::mapLeftLongitude(map.cameraData().center().longitude()); in updateScreenPointsInvert()
177 …const double rightLongi = QLocationUtils::mapRightLongitude(map.cameraData().center().longitude()); in updateScreenPointsInvert()
353 void QDeclarativeCircleMapItem::setCenter(const QGeoCoordinate &center) in setCenter() argument
355 if (m_circle.center() == center) in setCenter()
358 possiblySwitchBackend(m_circle.center(), m_circle.radius(), center, m_circle.radius()); in setCenter()
359 m_circle.setCenter(center); in setCenter()
361 emit centerChanged(center); in setCenter()
364 QGeoCoordinate QDeclarativeCircleMapItem::center() in center() function in QDeclarativeCircleMapItem
366 return m_circle.center(); in center()
402 possiblySwitchBackend(m_circle.center(), m_circle.radius(), m_circle.center(), radius); in setRadius()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Dgrid_index.cpp48 auto cx1 = convertToXCellCoord(bcircle.center.x - bcircle.radius); in insert()
49 auto cy1 = convertToYCellCoord(bcircle.center.y - bcircle.radius); in insert()
50 auto cx2 = convertToXCellCoord(bcircle.center.x + bcircle.radius); in insert()
51 auto cy2 = convertToYCellCoord(bcircle.center.y + bcircle.radius); in insert()
116 return BBox{{circle.center.x - circle.radius, circle.center.y - circle.radius}, in convertToBox()
117 {circle.center.x + circle.radius, circle.center.y + circle.radius}}; in convertToBox()
204 auto cx1 = convertToXCellCoord(queryBCircle.center.x - queryBCircle.radius); in query()
205 auto cy1 = convertToYCellCoord(queryBCircle.center.y - queryBCircle.radius); in query()
206 auto cx2 = convertToXCellCoord(queryBCircle.center.x + queryBCircle.radius); in query()
207 auto cy2 = convertToYCellCoord(queryBCircle.center.y + queryBCircle.radius); in query()
[all …]
H A Dgrid_index.hpp21 : center(center_), radius(radius_) in circle()
24 point_type center; member
31 return lhs.center == rhs.center && lhs.radius == rhs.radius; in operator ==()
37 return lhs.center != rhs.center || lhs.radius != rhs.radius; in operator !=()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeocameradata/
H A Dtst_qgeocameradata.cpp81 QFETCH(QGeoCoordinate, center); in constructorTest()
90 QCOMPARE(cameraData.center(), cameraData2.center()); in constructorTest()
97 cameraData.setCenter(center); in constructorTest()
104 QCOMPARE(cameraData3.center(), center); in constructorTest()
110 QCOMPARE(cameraData.center(), cameraData3.center()); in constructorTest()
122 QCOMPARE(cameraData.center(),QGeoCoordinate(10.0,20.4,30.8)); in centerTest()
181 QFETCH(QGeoCoordinate, center); in operatorsTest()
186 cameraData.setCenter(center); in operatorsTest()
/OK3568_Linux_fs/kernel/drivers/hid/
H A Dhid-nintendo.c114 s32 center; member
325 ctlr->left_stick_cal_x.center = DFLT_STICK_CAL_CEN; in joycon_request_calibration()
329 ctlr->left_stick_cal_y.center = DFLT_STICK_CAL_CEN; in joycon_request_calibration()
333 ctlr->right_stick_cal_x.center = DFLT_STICK_CAL_CEN; in joycon_request_calibration()
337 ctlr->right_stick_cal_y.center = DFLT_STICK_CAL_CEN; in joycon_request_calibration()
353 cal_x->center = hid_field_extract(ctlr->hdev, (raw_cal + 3), 0, 12); in joycon_request_calibration()
354 cal_y->center = hid_field_extract(ctlr->hdev, (raw_cal + 4), 4, 12); in joycon_request_calibration()
357 cal_x->max = cal_x->center + x_max_above; in joycon_request_calibration()
358 cal_x->min = cal_x->center - x_min_below; in joycon_request_calibration()
359 cal_y->max = cal_y->center + y_max_above; in joycon_request_calibration()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/labs/qsg/
H A Dqmapcircleobjectqsg.cpp54 if (!QDeclarativeCircleMapItemPrivateCPU::crossEarthPole(center(), radius())) in QMapCircleObjectPrivateQSG()
76 void QMapCircleObjectPrivateQSG::CircleDataCPU::updateCirclePath(const QGeoCoordinate &center, qrea… in updateCirclePath() argument
79 …QDeclarativeCircleMapItemPrivateCPU::calculatePeripheralPoints(path, center, radius, CircleSamples… in updateCirclePath()
88 || !qIsFinite(radius()) || !center().isValid()) in updateGeometryCPU()
95 m_dataCPU->updateCirclePath(center(), radius(), p); in updateGeometryCPU()
99 …bool preserve = QDeclarativeCircleMapItemPrivateCPU::preserveCircleGeometry(circlePath, center(), … in updateGeometryCPU()
107 …if (QDeclarativeCircleMapItemPrivateCPU::crossEarthPole(center(), radius()) && circlePath.size() =… in updateGeometryCPU()
154 void QMapCircleObjectPrivateQSG::CircleDataGL::updateCirclePath(const QGeoCoordinate &center, qreal… in updateCirclePath() argument
160 center, in updateCirclePath()
178 m_dataGL->updateCirclePath(center(), radius(), p); in updateGeometryGL()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/
H A Dqgeocircle.cpp134 QGeoCircle::QGeoCircle(const QGeoCoordinate &center, qreal radius) in QGeoCircle() argument
137 d_ptr = new QGeoCirclePrivate(center, radius); in QGeoCircle()
207 void QGeoCircle::setCenter(const QGeoCoordinate &center) in setCenter() argument
211 d->setCenter(center); in setCenter()
217 QGeoCoordinate QGeoCircle::center() const in center() function in QGeoCircle
221 return d->center(); in center()
257 QGeoCoordinate QGeoCirclePrivate::center() const in center() function in QGeoCirclePrivate
450 .arg(center().latitude()) in toString()
451 .arg(center().longitude()) in toString()
463 QGeoCirclePrivate::QGeoCirclePrivate(const QGeoCoordinate &center, qreal radius) in QGeoCirclePrivate() argument
[all …]
H A Dqgeorectangle.cpp223 QGeoRectangle::QGeoRectangle(const QGeoCoordinate &center, double degreesWidth, double degreesHeigh… in QGeoRectangle() argument
226 d_ptr = new QGeoRectanglePrivate(center, center); in QGeoRectangle()
430 void QGeoRectangle::setCenter(const QGeoCoordinate &center) in setCenter() argument
435 d->topLeft = center; in setCenter()
436 d->bottomRight = center; in setCenter()
442 double tlLat = center.latitude() + height / 2.0; in setCenter()
443 double tlLon = center.longitude() - width / 2.0; in setCenter()
444 double brLat = center.latitude() - height / 2.0; in setCenter()
445 double brLon = center.longitude() + width / 2.0; in setCenter()
450 brLat = 2 * center.latitude() - 90.0; in setCenter()
[all …]
H A Dqgeocircle.h53 Q_PROPERTY(QGeoCoordinate center READ center WRITE setCenter)
58 QGeoCircle(const QGeoCoordinate &center, qreal radius = -1.0);
72 void setCenter(const QGeoCoordinate &center);
73 QGeoCoordinate center() const;
/OK3568_Linux_fs/kernel/arch/arm/boot/dts/
H A Drk3288-linux.dtsi111 logo,mode = "center";
112 charge_logo,mode = "center";
120 logo,mode = "center";
121 charge_logo,mode = "center";
129 logo,mode = "center";
130 charge_logo,mode = "center";
138 logo,mode = "center";
139 charge_logo,mode = "center";
147 logo,mode = "center";
148 charge_logo,mode = "center";
/OK3568_Linux_fs/kernel/scripts/
H A Dmarkup_oops.pl214 my $center = -1;
254 $center = $counter;
270 if ($center == -1) {
281 $start = $center;
300 $finish = $center;
328 $i = $center;
330 $reglines[$i] = process_x86_regs($lines[$i], $center - $i);
337 if ($i == $center) {
348 if ($i == $center) {
/OK3568_Linux_fs/kernel/drivers/md/persistent-data/
H A Ddm-btree-remove.c271 struct btree_node *left, struct btree_node *center, struct btree_node *right, in delete_center_node() argument
278 node_copy(left, center, -shift); in delete_center_node()
285 node_copy(center, right, shift); in delete_center_node()
302 struct btree_node *left, struct btree_node *center, struct btree_node *right, in redistribute3() argument
320 shift(left, center, -nr_center); in redistribute3()
325 shift(left, center, s); in redistribute3()
327 shift(center, right, target_right - nr_right); in redistribute3()
333 shift(center, right, nr_center); in redistribute3()
338 shift(center, right, s); in redistribute3()
340 shift(left, center, nr_left - target_left); in redistribute3()
[all …]
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/algos/aorb/
H A Dorb_algos.cpp233 point_t center{}; in get_trusted_four_points() local
241 center.col += keypoints->col1; in get_trusted_four_points()
242 center.row += keypoints->row1; in get_trusted_four_points()
245 center.col = center.col / matched_keypoints->length; in get_trusted_four_points()
246 center.row = center.row / matched_keypoints->length; in get_trusted_four_points()
258 if (keypoints->col1 < center.col && in get_trusted_four_points()
259 keypoints->row1 < center.row) { in get_trusted_four_points()
260 subx = keypoints->col1 - center.col; in get_trusted_four_points()
261 suby = keypoints->row1 - center.row; in get_trusted_four_points()
273 if (keypoints->col1 > center.col && in get_trusted_four_points()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/
H A Dqgeotiledmapscene.cpp358 QDoubleVector2D camCenterMercator = QWebMercator::coordToMercator(m_cameraData.center()); in setupCamera()
359 QDoubleVector3D center = (m_sideLength * camCenterMercator); in setupCamera() local
362 if (center.x() < m_tileXWrapsBelow) in setupCamera()
363 center.setX(center.x() + 1.0 * m_sideLength); in setupCamera()
366 center.setX(center.x() - 1.0 * m_minTileX); in setupCamera()
367 center.setY(1.0 * m_minTileY - center.y()); in setupCamera()
370 center *= edge; in setupCamera()
376 QDoubleVector3D eye = center; in setupCamera()
381 QDoubleVector3D view = eye - center; in setupCamera()
396 eye = mTilt * view + center; in setupCamera()
[all …]
/OK3568_Linux_fs/kernel/Documentation/admin-guide/blockdev/drbd/
H A Dfigures.rst10 :align: center
14 :align: center
22 :align: center
26 :align: center
30 :align: center
/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/itemview_transitions/
H A Dmain.qml72 center: QtPositioning.coordinate(59.91, 10.75) // Oslo
148 … property point center: Qt.point(e1.x + e1.width * 0.5 , e1.y + e1.height * 0.5)
151 property point top: Qt.point(center.x, center.y - half )
152 property point bottomLeft: Qt.point(center.x - half, center.y + half )
153 property point bottomRight: Qt.point(center.x + half, center.y + half )
155 startX: center.x;
156 startY: center.y + half
161 PathLine { x: c_sp1.center.x; y: c_sp1.center.y + c_sp1.half }
/OK3568_Linux_fs/kernel/arch/arm64/boot/dts/rockchip/
H A Drk3326-linux.dtsi67 logo,mode = "center";
68 charge_logo,mode = "center";
76 logo,mode = "center";
77 charge_logo,mode = "center";
85 logo,mode = "center";
86 charge_logo,mode = "center";
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/map/
H A Dtransform.cpp68 camera.center = getLatLng(padding); in getCameraOptions()
91 const LatLng unwrappedLatLng = camera.center.value_or(getLatLng()); in easeTo()
116 ScreenCoordinate center = getScreenCoordinate(padding); in easeTo() local
117 center.y = state.size.height - center.y; in easeTo()
151 state.moveLatLng(frameLatLng, center); in easeTo()
165 const LatLng latLng = camera.center.value_or(getLatLng()).wrapped(); in flyTo()
182 ScreenCoordinate center = getScreenCoordinate(padding); in flyTo() local
183 center.y = state.size.height - center.y; in flyTo()
312 state.moveLatLng(frameLatLng, center); in flyTo()
327 camera.center = state.screenCoordinateToLatLng(centerPoint); in moveBy()
[all …]

12345678910>>...18