| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/android/jar/src/org/qtproject/qt5/android/positioning/ |
| H A D | QtPositioning.java | 240 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 D | mainwindow.cpp | 78 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 D | mainwindow.cpp | 78 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 D | qdeclarativepositionsource.cpp | 200 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 D | qdeclarativepositionsource_p.h | 75 …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 D | tst_positionsource.qml | 104 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 D | qgeosatelliteinfosource.h | 53 Q_PROPERTY(int updateInterval READ updateInterval WRITE setUpdateInterval) 77 int updateInterval() const;
|
| H A D | qgeopositioninfosource.h | 53 Q_PROPERTY(int updateInterval READ updateInterval WRITE setUpdateInterval) 78 int updateInterval() const;
|
| H A D | qgeosatelliteinfosource.cpp | 163 int QGeoSatelliteInfoSource::updateInterval() const in updateInterval() function in QGeoSatelliteInfoSource
|
| H A D | qnmeapositioninfosource.cpp | 598 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 D | qgeopositioninfosource_winrt.cpp | 128 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 D | qgeosatelliteinfosource_android.cpp | 79 int previousInterval = updateInterval(); in setUpdateInterval() 109 androidClassKeyForUpdate, false, updateInterval()); in startUpdates() 144 if (updatesRunning && updateInterval() <= timeout) in requestUpdate()
|
| H A D | qgeopositioninfosource_android.cpp | 77 int previousInterval = updateInterval(); in setUpdateInterval() 175 if (updatesRunning && updateInterval() <= timeout) in requestUpdate()
|
| H A D | jnipositioning.cpp | 409 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 D | declarative-location.qml | 61 updateInterval: 1000 70 Text {text: "updateInterval: " + positionSource.updateInterval}
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeopositioninfosource/ |
| H A D | testqgeopositioninfosource.cpp | 197 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 D | testqgeopositioninfosource_p.h | 78 void updateInterval();
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeosatelliteinfosource/ |
| H A D | testqgeosatelliteinfosource_p.h | 71 void updateInterval();
|
| H A D | testqgeosatelliteinfosource.cpp | 191 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 D | qgeosatelliteinfosource_geocluemaster.cpp | 99 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 D | logfilepositionsource.cpp | 63 int interval = updateInterval(); in startUpdates()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/positioning/logfilepositionsource/ |
| H A D | logfilepositionsource.cpp | 83 int interval = updateInterval(); in startUpdates()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/serialnmea/ |
| H A D | qnmeasatelliteinfosource.cpp | 299 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 D | qgeosatelliteinfosource_simulator.cpp | 65 int interval = updateInterval(); in startUpdates()
|
| H A D | qgeopositioninfosource_simulator.cpp | 124 int interval = updateInterval(); in startUpdates()
|