Home
last modified time | relevance | path

Searched refs:QGeoSatelliteInfo (Results 1 – 25 of 35) sorted by relevance

12

/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeosatelliteinfo/
H A Dtst_qgeosatelliteinfo.cpp42 Q_DECLARE_METATYPE(QGeoSatelliteInfo)
43 Q_DECLARE_METATYPE(QGeoSatelliteInfo::Attribute)
83 QList<QGeoSatelliteInfo::Attribute> tst_qgeosatelliteinfo_getAttributes() in tst_qgeosatelliteinfo_getAttributes()
85 QList<QGeoSatelliteInfo::Attribute> attributes; in tst_qgeosatelliteinfo_getAttributes()
86 attributes << QGeoSatelliteInfo::Elevation in tst_qgeosatelliteinfo_getAttributes()
87 << QGeoSatelliteInfo::Azimuth; in tst_qgeosatelliteinfo_getAttributes()
97 QGeoSatelliteInfo updateWithAttribute(QGeoSatelliteInfo::Attribute attribute, qreal value) in updateWithAttribute()
99 QGeoSatelliteInfo info; in updateWithAttribute()
106 QTest::addColumn<QGeoSatelliteInfo>("info"); in addTestData_update()
111 QGeoSatelliteInfo info; in addTestData_update()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/
H A Dqgeosatelliteinfo.cpp79 QGeoSatelliteInfo::QGeoSatelliteInfo() in QGeoSatelliteInfo() function in QGeoSatelliteInfo
84 d->system = QGeoSatelliteInfo::Undefined; in QGeoSatelliteInfo()
91 QGeoSatelliteInfo::QGeoSatelliteInfo(const QGeoSatelliteInfo &other) in QGeoSatelliteInfo() function in QGeoSatelliteInfo
97 QGeoSatelliteInfo::QGeoSatelliteInfo(QGeoSatelliteInfoPrivate &dd) : d(&dd) in QGeoSatelliteInfo() function in QGeoSatelliteInfo
104 QGeoSatelliteInfo::~QGeoSatelliteInfo() in ~QGeoSatelliteInfo()
112 QGeoSatelliteInfo &QGeoSatelliteInfo::operator=(const QGeoSatelliteInfo & other) in operator =()
127 bool QGeoSatelliteInfo::operator==(const QGeoSatelliteInfo &other) const in operator ==()
143 void QGeoSatelliteInfo::setSatelliteSystem(SatelliteSystem system) in setSatelliteSystem()
151 QGeoSatelliteInfo::SatelliteSystem QGeoSatelliteInfo::satelliteSystem() const in satelliteSystem()
163 void QGeoSatelliteInfo::setSatelliteIdentifier(int satId) in setSatelliteIdentifier()
[all …]
H A Dqgeosatelliteinfo.h50 class Q_POSITIONING_EXPORT QGeoSatelliteInfo
64 QGeoSatelliteInfo();
65 QGeoSatelliteInfo(const QGeoSatelliteInfo &other);
66 QGeoSatelliteInfo(QGeoSatelliteInfoPrivate &dd);
67 ~QGeoSatelliteInfo();
69 QGeoSatelliteInfo &operator=(const QGeoSatelliteInfo &other);
71 bool operator==(const QGeoSatelliteInfo &other) const;
72 inline bool operator!=(const QGeoSatelliteInfo &other) const {
93 friend Q_POSITIONING_EXPORT QDebug operator<<(QDebug dbg, const QGeoSatelliteInfo &info);
96 …d Q_POSITIONING_EXPORT QDataStream &operator<<(QDataStream &stream, const QGeoSatelliteInfo &info);
[all …]
H A Dqgeosatelliteinfo_p.h57 static QGeoSatelliteInfoPrivate *get(const QGeoSatelliteInfo &info);
61 QGeoSatelliteInfo::SatelliteSystem system;
H A Dqgeosatelliteinfosource.h88 void satellitesInViewUpdated(const QList<QGeoSatelliteInfo> &satellites);
89 void satellitesInUseUpdated(const QList<QGeoSatelliteInfo> &satellites);
H A Dqlocationutils_p.h68 class QGeoSatelliteInfo; variable
307 QList<QGeoSatelliteInfo> &infos);
H A Dqlocationutils.cpp355 …tus QLocationUtils::getSatInfoFromNmea(const char *data, int size, QList<QGeoSatelliteInfo> &infos) in getSatInfoFromNmea()
396 QGeoSatelliteInfo info; in getSatInfoFromNmea()
400 info.setAttribute(QGeoSatelliteInfo::Elevation, (ok) ? elevation : 0); in getSatInfoFromNmea()
402 info.setAttribute(QGeoSatelliteInfo::Azimuth, (ok) ? azimuth : 0); in getSatInfoFromNmea()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/positioning/satelliteinfo/
H A Dsatellitemodel.cpp66 connect(source, SIGNAL(satellitesInViewUpdated(QList<QGeoSatelliteInfo>)), in SatelliteModel()
67 this, SLOT(satellitesInViewUpdated(QList<QGeoSatelliteInfo>))); in SatelliteModel()
68 connect(source, SIGNAL(satellitesInUseUpdated(QList<QGeoSatelliteInfo>)), in SatelliteModel()
69 this, SLOT(satellitesInUseUpdated(QList<QGeoSatelliteInfo>))); in SatelliteModel()
103 const QGeoSatelliteInfo &info = knownSatellites.at(index.row()); in data()
112 if (!info.hasAttribute(QGeoSatelliteInfo::Elevation)) in data()
114 return info.attribute(QGeoSatelliteInfo::Elevation); in data()
116 if (!info.hasAttribute(QGeoSatelliteInfo::Azimuth)) in data()
118 return info.attribute(QGeoSatelliteInfo::Azimuth); in data()
227 QList<QGeoSatelliteInfo> satellites; in updateDemoData()
[all …]
H A Dsatellitemodel.h114 void satellitesInViewUpdated(const QList<QGeoSatelliteInfo> &infos); in QT_FORWARD_DECLARE_CLASS()
115 void satellitesInUseUpdated(const QList<QGeoSatelliteInfo> &infos); in QT_FORWARD_DECLARE_CLASS()
122 QList <QGeoSatelliteInfo> knownSatellites; in QT_FORWARD_DECLARE_CLASS()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeosatelliteinfosource/
H A Dtestqgeosatelliteinfosource.cpp43 Q_DECLARE_METATYPE(QList<QGeoSatelliteInfo>)
103 qRegisterMetaType<QList<QGeoSatelliteInfo> >(); in base_initTestCase()
246 SIGNAL(satellitesInViewUpdated(QList<QGeoSatelliteInfo>))); in startUpdates_testIntervals()
248 SIGNAL(satellitesInUseUpdated(QList<QGeoSatelliteInfo>))); in startUpdates_testIntervals()
281 SIGNAL(satellitesInViewUpdated(QList<QGeoSatelliteInfo>))); in startUpdates_testIntervalChangesWhileRunning()
283 SIGNAL(satellitesInUseUpdated(QList<QGeoSatelliteInfo>))); in startUpdates_testIntervalChangesWhileRunning()
341 SIGNAL(satellitesInViewUpdated(QList<QGeoSatelliteInfo>))); in startUpdates_testDefaultInterval()
343 SIGNAL(satellitesInUseUpdated(QList<QGeoSatelliteInfo>))); in startUpdates_testDefaultInterval()
364 SIGNAL(satellitesInViewUpdated(QList<QGeoSatelliteInfo>))); in startUpdates_testZeroInterval()
366 SIGNAL(satellitesInUseUpdated(QList<QGeoSatelliteInfo>))); in startUpdates_testZeroInterval()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/geoclue/
H A Dqgeosatelliteinfosource_geocluemaster.cpp108 …nnect(m_sat, SIGNAL(SatelliteChanged(qint32,qint32,qint32,QList<qint32>,QList<QGeoSatelliteInfo>)), in stopUpdates()
109 … this, SLOT(satelliteChanged(qint32,qint32,qint32,QList<qint32>,QList<QGeoSatelliteInfo>))); in stopUpdates()
137 QDBusPendingReply<qint32, qint32, qint32, QList<qint32>, QList<QGeoSatelliteInfo> > reply = in requestUpdate()
148 … const QList<QGeoSatelliteInfo> &satInfos) in updateSatelliteInfo()
152 QList<QGeoSatelliteInfo> inUse; in updateSatelliteInfo()
154 foreach (const QGeoSatelliteInfo &si, satInfos) in updateSatelliteInfo()
198 …QDBusPendingReply<qint32, qint32, qint32, QList<qint32>, QList<QGeoSatelliteInfo> > reply = *watch… in getSatelliteFinished()
209 …esUsed, int satellitesVisible, const QList<int> &usedPrn, const QList<QGeoSatelliteInfo> &satInfos) in satelliteChanged()
264 …nnect(m_sat, SIGNAL(SatelliteChanged(qint32,qint32,qint32,QList<qint32>,QList<QGeoSatelliteInfo>)), in positionProviderChanged()
265 … this, SLOT(satelliteChanged(qint32,qint32,qint32,QList<qint32>,QList<QGeoSatelliteInfo>))); in positionProviderChanged()
[all …]
H A Dgeocluetypes.cpp73 const QDBusArgument &operator>>(const QDBusArgument &argument, QGeoSatelliteInfo &si) in operator >>()
81 si.setAttribute(QGeoSatelliteInfo::Elevation, a); in operator >>()
83 si.setAttribute(QGeoSatelliteInfo::Azimuth, a); in operator >>()
90 const QDBusArgument &operator>>(const QDBusArgument &argument, QList<QGeoSatelliteInfo> &sis) in operator >>()
96 QGeoSatelliteInfo si; in operator >>()
H A Dqgeosatelliteinfosource_geocluemaster.h80 const QList<int> &usedPrn, const QList<QGeoSatelliteInfo> &satInfos);
88 const QList<int> &usedPrn, const QList<QGeoSatelliteInfo> &satInfos);
96 QList<QGeoSatelliteInfo> m_inView;
97 QList<QGeoSatelliteInfo> m_inUse;
H A Dgeocluetypes.h77 Q_DECLARE_METATYPE(QList<QGeoSatelliteInfo>)
87 const QDBusArgument &operator>>(const QDBusArgument &arg, QGeoSatelliteInfo &si);
88 const QDBusArgument &operator>>(const QDBusArgument &arg, QList<QGeoSatelliteInfo> &sis);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/simulator/
H A Dqgeosatelliteinfosource_simulator.cpp112 QList<QGeoSatelliteInfo> satellitesInUse; in updateData()
113 QList<QGeoSatelliteInfo> satellitesInView; in updateData()
118 QGeoSatelliteInfo satInfo; in updateData()
119 satInfo.setAttribute(QGeoSatelliteInfo::Azimuth, info.azimuth); in updateData()
120 satInfo.setAttribute(QGeoSatelliteInfo::Elevation, info.elevation); in updateData()
122 … satInfo.setSatelliteSystem(static_cast<QGeoSatelliteInfo::SatelliteSystem>(info.satelliteSystem)); in updateData()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/android/src/
H A Dqgeosatelliteinfosource_android.cpp45 Q_DECLARE_METATYPE(QGeoSatelliteInfo)
46 Q_DECLARE_METATYPE(QList<QGeoSatelliteInfo>) in Q_DECLARE_METATYPE() argument
53 qRegisterMetaType< QGeoSatelliteInfo >(); in Q_DECLARE_METATYPE()
54 qRegisterMetaType< QList<QGeoSatelliteInfo> >(); in Q_DECLARE_METATYPE()
156 void QGeoSatelliteInfoSourceAndroid::processSatelliteUpdateInView(const QList<QGeoSatelliteInfo> &s… in processSatelliteUpdateInView()
169 void QGeoSatelliteInfoSourceAndroid::processSatelliteUpdateInUse(const QList<QGeoSatelliteInfo> &sa… in processSatelliteUpdateInUse()
H A Dqgeosatelliteinfosource_android_p.h76 …void processSatelliteUpdateInView(const QList<QGeoSatelliteInfo> &satsInView, bool isSingleUpdate);
77 … void processSatelliteUpdateInUse(const QList<QGeoSatelliteInfo> &satsInUse, bool isSingleUpdate);
92 QList<QGeoSatelliteInfo> m_satsInUse;
93 QList<QGeoSatelliteInfo> m_satsInView;
H A Djnipositioning.cpp298 QList<QGeoSatelliteInfo> satelliteInfoFromJavaLocation(JNIEnv *jniEnv, in satelliteInfoFromJavaLocation()
300 QList<QGeoSatelliteInfo>* usedInFix) in satelliteInfoFromJavaLocation()
302 QList<QGeoSatelliteInfo> sats; in satelliteInfoFromJavaLocation()
315 QGeoSatelliteInfo info; in satelliteInfoFromJavaLocation()
332 info.setSatelliteSystem(QGeoSatelliteInfo::GPS); in satelliteInfoFromJavaLocation()
334 info.setSatelliteSystem(QGeoSatelliteInfo::GLONASS); in satelliteInfoFromJavaLocation()
339 info.setAttribute(QGeoSatelliteInfo::Azimuth, qreal(azimuth)); in satelliteInfoFromJavaLocation()
344 info.setAttribute(QGeoSatelliteInfo::Elevation, qreal(elevation)); in satelliteInfoFromJavaLocation()
564 QList<QGeoSatelliteInfo> inUse; in satelliteUpdated()
565 …QList<QGeoSatelliteInfo> sats = AndroidPositioning::satelliteInfoFromJavaLocation(env, satellites,… in satelliteUpdated()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/gypsy/
H A Dqgeosatelliteinfosource_gypsy.cpp179 QList<QGeoSatelliteInfo> lastSatellitesInView; in satellitesChanged()
180 QList<QGeoSatelliteInfo> lastSatellitesInUse; in satellitesChanged()
185 QGeoSatelliteInfo info; in satellitesChanged()
186 info.setAttribute(QGeoSatelliteInfo::Elevation, details->elevation); in satellitesChanged()
187 info.setAttribute(QGeoSatelliteInfo::Azimuth, details->azimuth); in satellitesChanged()
H A Dqgeosatelliteinfosource_gypsy_p.h118 void satellitesInViewUpdated(const QList<QGeoSatelliteInfo> &satellites);
119 void satellitesInUseUpdated(const QList<QGeoSatelliteInfo> &satellites);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/serialnmea/
H A Dqnmeasatelliteinfosource.cpp115 QList<QGeoSatelliteInfo> m_satellitesInView;
116 QList<QGeoSatelliteInfo> m_satellitesInUse;
126 void setSatellitesInView(const QList<QGeoSatelliteInfo> &inView) in setSatellitesInView()
406 const QGeoSatelliteInfo &s = m_pendingUpdate.m_satellitesInView.at(i); in readAvailableData()
410 m_pendingUpdate.m_satellitesInView.replace(i, QGeoSatelliteInfo(*pimpl)); in readAvailableData()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/dist/
H A Dchanges-5.5.031 QGeoPositionInfo, QGeoSatelliteInfo & QGeoShape following a QDebug related
/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/positioning/satelliteinfo/doc/src/
H A Dsatelliteinfo.qdoc41 \li \l{QGeoSatelliteInfo}
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/bic/data/
H A DQtPositioning.5.4.0.linux-gcc-amd64.txt3750 Class QGeoSatelliteInfo
3753 QGeoSatelliteInfo (0x0x7fb60bfedba0) 0
H A DQtPositioning.5.3.0.linux-gcc-amd64.txt3718 Class QGeoSatelliteInfo
3721 QGeoSatelliteInfo (0x0x7f95ed4478a0) 0

12