Home
last modified time | relevance | path

Searched refs:QGeoLocation (Results 1 – 25 of 54) sorted by relevance

123

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/
H A Dqgeolocation.cpp103 QGeoLocation::QGeoLocation() in QGeoLocation() function in QGeoLocation
111 QGeoLocation::QGeoLocation(const QGeoLocation &other) in QGeoLocation() function in QGeoLocation
119 QGeoLocation::~QGeoLocation() in ~QGeoLocation()
126 QGeoLocation &QGeoLocation::operator =(const QGeoLocation &other) in operator =()
139 bool QGeoLocation::operator==(const QGeoLocation &other) const in operator ==()
147 QGeoAddress QGeoLocation::address() const in address()
155 void QGeoLocation::setAddress(const QGeoAddress &address) in setAddress()
163 QGeoCoordinate QGeoLocation::coordinate() const in coordinate()
171 void QGeoLocation::setCoordinate(const QGeoCoordinate &coordinate) in setCoordinate()
184 QGeoRectangle QGeoLocation::boundingBox() const in boundingBox()
[all …]
H A Dqgeolocation.h54 class Q_POSITIONING_EXPORT QGeoLocation
57 QGeoLocation();
58 QGeoLocation(const QGeoLocation &other);
60 ~QGeoLocation();
62 QGeoLocation &operator=(const QGeoLocation &other);
64 bool operator==(const QGeoLocation &other) const;
65 bool operator!=(const QGeoLocation &other) const {
84 Q_DECLARE_TYPEINFO(QGeoLocation, Q_MOVABLE_TYPE);
88 Q_DECLARE_METATYPE(QGeoLocation)
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeolocation/
H A Dtst_qgeolocation.cpp65 QGeoLocation *qgeolocationcopy = new QGeoLocation (m_location); in copy_constructor()
72 QGeoLocation *qgeolocationcopy; in destructor()
74 qgeolocationcopy = new QGeoLocation(); in destructor()
77 qgeolocationcopy = new QGeoLocation(m_location); in destructor()
162 QGeoLocation qgeolocationcopy(m_location); in operators()
191 QGeoLocation location; in comparison()
205 QGeoLocation otherLocation(location); in comparison()
251 QGeoLocation location; in isEmpty()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/esri/
H A Dgeocodereply_esri.cpp100 QList<QGeoLocation> locations; in networkReplyFinished()
108 QGeoLocation location = parseCandidate(candidate); in networkReplyFinished()
119 QGeoLocation location = parseAddress(object); in networkReplyFinished()
121 QList<QGeoLocation> locations; in networkReplyFinished()
135 QGeoLocation GeoCodeReplyEsri::parseAddress(const QJsonObject& object) in parseAddress()
155 QGeoLocation location; in parseAddress()
163 QGeoLocation GeoCodeReplyEsri::parseCandidate(const QJsonObject& candidate) in parseCandidate()
197 QGeoLocation location; in parseCandidate()
H A Dgeocodereply_esri.h69 QGeoLocation parseAddress(const QJsonObject &object);
70 QGeoLocation parseCandidate(const QJsonObject &candidate);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioningquick/
H A Dqdeclarativegeolocation.cpp90 setLocation(QGeoLocation()); in QDeclarativeGeoLocation()
93 QDeclarativeGeoLocation::QDeclarativeGeoLocation(const QGeoLocation &src, QObject *parent) in QDeclarativeGeoLocation()
109 void QDeclarativeGeoLocation::setLocation(const QGeoLocation &src) in setLocation()
123 QGeoLocation QDeclarativeGeoLocation::location() const in location()
125 QGeoLocation retValue; in location()
H A Dqdeclarativegeolocation_p.h67 Q_PROPERTY(QGeoLocation location READ location WRITE setLocation)
75 explicit QDeclarativeGeoLocation(const QGeoLocation &src, QObject *parent = 0);
78 QGeoLocation location() const;
79 void setLocation(const QGeoLocation &src);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/nokia/
H A Dqgeocodereply_nokia.cpp44 Q_DECLARE_METATYPE(QList<QGeoLocation>) in Q_DECLARE_METATYPE() argument
62 qRegisterMetaType<QList<QGeoLocation> >(); in Q_DECLARE_METATYPE()
92 connect(parser, SIGNAL(results(QList<QGeoLocation>)), in networkFinished()
93 this, SLOT(appendResults(QList<QGeoLocation>))); in networkFinished()
109 void QGeoCodeReplyNokia::appendResults(const QList<QGeoLocation> &locations) in appendResults()
H A Dqgeocodejsonparser.h62 void results(const QList<QGeoLocation> &locations);
69 QList<QGeoLocation> m_results;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/places/
H A Dqplace_p.h77 virtual QGeoLocation location() const = 0;
78 virtual void setLocation(const QGeoLocation &location) = 0;
124 virtual QGeoLocation location() const override;
125 virtual void setLocation(const QGeoLocation &location) override;
152 QGeoLocation m_location;
H A Dqplace.h73 QGeoLocation location() const;
74 void setLocation(const QGeoLocation &location);
H A Dqplace.cpp229 QGeoLocation QPlace::location() const in location()
237 void QPlace::setLocation(const QGeoLocation &location) in setLocation()
699 QGeoLocation QPlacePrivateDefault::location() const in location()
704 void QPlacePrivateDefault::setLocation(const QGeoLocation &location) in setLocation()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/geotestplugin/
H A Dqgeocodingmanagerengine_test.h72 void callAddLocation ( const QGeoLocation & location ) {addLocation(location);} in callAddLocation()
77 void callSetLocations ( const QList<QGeoLocation> & locations ) {setLocations(locations);} in callSetLocations()
210 QGeoLocation location; in setLocations()
226 QGeoLocation location; in setLocations()
237 QGeoLocation location; in setLocations()
302 static void injectExtra(QGeoLocation &location, const QVariantMap &extra) in injectExtra()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeocodereply/
H A Dtst_qgeocodereply.h53 void callAddLocation ( const QGeoLocation & location ) {addLocation(location);} in callAddLocation()
58 void callSetLocations ( const QList<QGeoLocation> & locations ) {setLocations(locations);} in callSetLocations()
97 QGeoLocation *qgeolocation;
H A Dtst_qgeocodereply.cpp220 QList <QGeoLocation> geolocations; in locations()
230 qgeolocation = new QGeoLocation (); in locations()
240 QGeoLocation *qgeolocationcopy = new QGeoLocation (*qgeolocation); in locations()
242 QList <QGeoLocation> qgeolocations; in locations()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/
H A Dqgeocodereply.h74 QList<QGeoLocation> locations() const;
94 void addLocation(const QGeoLocation &location);
95 void setLocations(const QList<QGeoLocation> &locations);
H A Dqgeocodereply.cpp213 QList<QGeoLocation> QGeoCodeReply::locations() const in locations()
221 void QGeoCodeReply::addLocation(const QGeoLocation &location) in addLocation()
229 void QGeoCodeReply::setLocations(const QList<QGeoLocation> &locations) in setLocations()
H A Dqgeocodereply_p.h61 class QGeoLocation; variable
79 QList<QGeoLocation> locations;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qmlinterface/
H A Dtst_qmlinterface.cpp70 QGeoLocation m_location;
177 QGeoLocation location = qmlObject->property("location").value<QGeoLocation>(); in testLocation()
181 qmlObject->setProperty("location", QVariant::fromValue(QGeoLocation())); in testLocation()
343 QCOMPARE(qmlObject->property("location").value<QGeoLocation>(), QGeoLocation()); in testPlace()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/osm/
H A Dqgeocodereplyosm.cpp102 static void injectExtra(QGeoLocation &location, const QJsonObject &object) in injectExtra()
135 QList<QGeoLocation> locations; in networkReplyFinished()
146 QGeoLocation location; in networkReplyFinished()
181 QGeoLocation location; in networkReplyFinished()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/doc/snippets/cpp/
H A Dcppqml.cpp70 QGeoLocation geoLocation = qmlObject->property("location").value<QGeoLocation>(); in cppQmlInterface()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/doc/src/
H A Dcpp-qml-positioning.qdoc75 This section provides information on how to integrate QGeoAddress and QGeoLocation.
87 \section2 Location - QGeoLocation
91 The following gets the QGeoLocation representing this object from C++:
93 The following sets the properties of this object based on a QGeoLocation object from C++:
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeocodingmanagerplugins/
H A Dqgeocodingmanagerengine_test.h48 void callAddLocation ( const QGeoLocation & location ) {addLocation(location);} in callAddLocation()
53 void callSetLocations ( const QList<QGeoLocation> & locations ) {setLocations(locations);} in callSetLocations()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/mapbox/
H A Dqmapboxcommon.cpp58 QGeoLocation QMapboxCommon::parseGeoLocation(const QJsonObject &response) in parseGeoLocation()
60 QGeoLocation location; in parseGeoLocation()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qplace/
H A Dtst_qplace.cpp84 QGeoLocation loc; in constructorTest()
144 QVERIFY2(testObj.location() == QGeoLocation(), "Wrong default value"); in locationTest()
145 QGeoLocation obj; in locationTest()
494 QGeoLocation loc; in operatorsTest()
568 QGeoLocation location; in isEmptyTest()
612 place.setLocation(QGeoLocation()); in isEmptyTest()

123