Home
last modified time | relevance | path

Searched refs:updateInterval (Results 1 – 25 of 31) sorted by relevance

12

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/android/jar/src/org/qtproject/qt5/android/positioning/
H A DQtPositioning.java240 static public int startUpdates(int androidClassKey, int locationProvider, int updateInterval) in startUpdates() argument
250 if (updateInterval == 0) in startUpdates()
251 updateInterval = 50; //don't update more often than once per 50ms in startUpdates()
253 positioningListener.updateIntervalTime = updateInterval; in startUpdates()
255 Log.d(TAG, "Regular updates using GPS " + updateInterval); in startUpdates()
259 updateInterval, 0); in startUpdates()
267 Log.d(TAG, "Regular updates using network " + updateInterval); in startUpdates()
271 updateInterval, 0); in startUpdates()
359 …static public int startSatelliteUpdates(int androidClassKey, int updateInterval, boolean isSingleR… in startSatelliteUpdates() argument
370 if (updateInterval == 0) in startSatelliteUpdates()
[all …]
/OK3568_Linux_fs/app/forlinx/forlinx_up4_qt/qopenglwidget/
H A Dmainwindow.cpp78 QSpinBox *updateInterval = new QSpinBox(this); in MainWindow() local
79 updateInterval->setSuffix(" ms"); in MainWindow()
80 updateInterval->setValue(10); in MainWindow()
81 updateInterval->setToolTip("Interval for the timer that calls update().\n" in MainWindow()
96 updateLayout->addWidget(updateInterval); in MainWindow()
150 connect(updateInterval, QOverload<int>::of(&QSpinBox::valueChanged), in MainWindow()
153 connect(timerBased, &QCheckBox::toggled, updateInterval, &QWidget::setEnabled); in MainWindow()
158 updateInterval->setEnabled(false); in MainWindow()
/OK3568_Linux_fs/app/forlinx/forlinx_qt/qopenglwidget/
H A Dmainwindow.cpp78 QSpinBox *updateInterval = new QSpinBox(this); in MainWindow() local
79 updateInterval->setSuffix(" ms"); in MainWindow()
80 updateInterval->setValue(10); in MainWindow()
81 updateInterval->setToolTip("Interval for the timer that calls update().\n" in MainWindow()
96 updateLayout->addWidget(updateInterval); in MainWindow()
150 connect(updateInterval, QOverload<int>::of(&QSpinBox::valueChanged), in MainWindow()
153 connect(timerBased, &QCheckBox::toggled, updateInterval, &QWidget::setEnabled); in MainWindow()
158 updateInterval->setEnabled(false); in MainWindow()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioningquick/
H A Dqdeclarativepositionsource.cpp200 int previousUpdateInterval = updateInterval(); in tryAttach()
232 if (previousUpdateInterval != updateInterval()) in tryAttach()
512 void QDeclarativePositionSource::setUpdateInterval(int updateInterval) in setUpdateInterval() argument
515 int previousUpdateInterval = m_positionSource->updateInterval(); in setUpdateInterval()
517 m_updateInterval = updateInterval; in setUpdateInterval()
519 if (previousUpdateInterval != updateInterval) { in setUpdateInterval()
520 m_positionSource->setUpdateInterval(updateInterval); in setUpdateInterval()
521 if (previousUpdateInterval != m_positionSource->updateInterval()) in setUpdateInterval()
525 if (m_updateInterval != updateInterval) { in setUpdateInterval()
526 m_updateInterval = updateInterval; in setUpdateInterval()
[all …]
H A Dqdeclarativepositionsource_p.h75 …Q_PROPERTY(int updateInterval READ updateInterval WRITE setUpdateInterval NOTIFY updateIntervalCha…
111 void setUpdateInterval(int updateInterval);
119 int updateInterval() const;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/declarative_core/
H A Dtst_positionsource.qml104 PositionSource { id: testingSource; name: "test.source"; updateInterval: 1000 }
112 updateInterval: 1000
124 PositionSource { id: testingSourceV1; name: "test.source.v1"; updateInterval: 1000 }
130 testingSource.updateInterval = 1000;
131 compare(testingSource.updateInterval, 1000);
132 testingSource.updateInterval = 1200;
133 compare(testingSource.updateInterval, 1200);
134 testingSource.updateInterval = 800;
135 compare(testingSource.updateInterval, 1000);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/
H A Dqgeosatelliteinfosource.h53 Q_PROPERTY(int updateInterval READ updateInterval WRITE setUpdateInterval)
77 int updateInterval() const;
H A Dqgeopositioninfosource.h53 Q_PROPERTY(int updateInterval READ updateInterval WRITE setUpdateInterval)
78 int updateInterval() const;
H A Dqgeosatelliteinfosource.cpp163 int QGeoSatelliteInfoSource::updateInterval() const in updateInterval() function in QGeoSatelliteInfoSource
H A Dqnmeapositioninfosource.cpp598 if (m_source->updateInterval() > 0) { in startUpdates()
601 m_updateTimer->start(m_source->updateInterval(), this); in startUpdates()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/winrt/
H A Dqgeopositioninfosource_winrt.cpp128 int updateInterval = -1; member in QGeoPositionInfoSourceWinRTPrivate
180 if (d->updateInterval == -1) in init()
181 d->updateInterval = d->minimumUpdateInterval; in init()
182 setUpdateInterval(d->updateInterval); in init()
256 d->updateInterval = msec; in setUpdateInterval()
278 d->updateInterval = msec; in setUpdateInterval()
279 d->periodicTimer.setInterval(d->updateInterval); in setUpdateInterval()
281 QGeoPositionInfoSource::setUpdateInterval(d->updateInterval); in setUpdateInterval()
422 sent.setTimestamp(sent.timestamp().addMSecs(updateInterval())); in virtualPositionUpdate()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/android/src/
H A Dqgeosatelliteinfosource_android.cpp79 int previousInterval = updateInterval(); in setUpdateInterval()
109 androidClassKeyForUpdate, false, updateInterval()); in startUpdates()
144 if (updatesRunning && updateInterval() <= timeout) in requestUpdate()
H A Dqgeopositioninfosource_android.cpp77 int previousInterval = updateInterval(); in setUpdateInterval()
175 if (updatesRunning && updateInterval() <= timeout) in requestUpdate()
H A Djnipositioning.cpp409 source->updateInterval()); in startUpdates()
474 int interval = source->updateInterval(); in startSatelliteUpdates()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/doc/snippets/declarative/
H A Ddeclarative-location.qml61 updateInterval: 1000
70 Text {text: "updateInterval: " + positionSource.updateInterval}
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeopositioninfosource/
H A Dtestqgeopositioninfosource.cpp197 void TestQGeoPositionInfoSource::updateInterval() in updateInterval() function in TestQGeoPositionInfoSource
200 QCOMPARE(s.updateInterval(), 0); in updateInterval()
287 QCOMPARE(m_source->updateInterval(), expectedInterval); in setUpdateInterval()
428 int interval = m_source->updateInterval(); in startUpdates_testIntervals()
H A Dtestqgeopositioninfosource_p.h78 void updateInterval();
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeosatelliteinfosource/
H A Dtestqgeosatelliteinfosource_p.h71 void updateInterval();
H A Dtestqgeosatelliteinfosource.cpp191 void TestQGeoSatelliteInfoSource::updateInterval() in updateInterval() function in TestQGeoSatelliteInfoSource
194 QCOMPARE(s.updateInterval(), 0); in updateInterval()
205 QCOMPARE(m_source->updateInterval(), expectedInterval); in setUpdateInterval()
253 int interval = m_source->updateInterval(); in startUpdates_testIntervals()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/geoclue/
H A Dqgeosatelliteinfosource_geocluemaster.cpp99 m_requestTimer.start(qMax(updateInterval(), minimumUpdateInterval())); in startUpdates()
176 m_requestTimer.start(qMax(updateInterval(), minimumUpdateInterval())); in updateSatelliteInfo()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeoareamonitor/
H A Dlogfilepositionsource.cpp63 int interval = updateInterval(); in startUpdates()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/positioning/logfilepositionsource/
H A Dlogfilepositionsource.cpp83 int interval = updateInterval(); in startUpdates()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/serialnmea/
H A Dqnmeasatelliteinfosource.cpp299 if (m_source->updateInterval() > 0) { in startUpdates()
302 m_updateTimer->start(m_source->updateInterval(), this); in startUpdates()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/simulator/
H A Dqgeosatelliteinfosource_simulator.cpp65 int interval = updateInterval(); in startUpdates()
H A Dqgeopositioninfosource_simulator.cpp124 int interval = updateInterval(); in startUpdates()

12