Home
last modified time | relevance | path

Searched refs:QGeoRoute (Results 1 – 25 of 51) sorted by relevance

123

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/
H A Dqgeoroute.cpp80 QGeoRoute::QGeoRoute() in QGeoRoute() function in QGeoRoute
86 QGeoRoute::QGeoRoute(const QExplicitlySharedDataPointer<QGeoRoutePrivate> &dd): d_ptr(dd) in QGeoRoute() function in QGeoRoute
93 QExplicitlySharedDataPointer<QGeoRoutePrivate> &QGeoRoute::d() in d()
98 const QExplicitlySharedDataPointer<QGeoRoutePrivate> &QGeoRoute::const_d() const in const_d()
106 QGeoRoute::QGeoRoute(const QGeoRoute &other) in QGeoRoute() function in QGeoRoute
112 QGeoRoute::~QGeoRoute() in ~QGeoRoute()
120 QGeoRoute &QGeoRoute::operator= (const QGeoRoute & other) in operator =()
132 bool QGeoRoute::operator ==(const QGeoRoute &other) const in operator ==()
141 bool QGeoRoute::operator !=(const QGeoRoute &other) const in operator !=()
153 void QGeoRoute::setRouteId(const QString &id) in setRouteId()
[all …]
H A Dqgeoroute.h54 class Q_LOCATION_EXPORT QGeoRoute
57 QGeoRoute();
58 QGeoRoute(const QGeoRoute &other);
59 ~QGeoRoute(); // ### Qt6: make this virtual
61 QGeoRoute &operator = (const QGeoRoute &other);
63 bool operator == (const QGeoRoute &other) const;
64 bool operator != (const QGeoRoute &other) const;
97 QGeoRoute(const QExplicitlySharedDataPointer<QGeoRoutePrivate> &dd);
107 class Q_LOCATION_EXPORT QGeoRouteLeg: public QGeoRoute
118 void setOverallRoute(const QGeoRoute &route);
[all …]
H A Dqgeoroute_p.h113 virtual void setContainingRoute(const QGeoRoute &route);
114 virtual QGeoRoute containingRoute() const;
116 static const QGeoRoutePrivate *routePrivateData(const QGeoRoute &route);
166 virtual void setContainingRoute(const QGeoRoute &route) override;
167 virtual QGeoRoute containingRoute() const override;
184 QScopedPointer<QGeoRoute> m_containingRoute;
H A Dqnavigationmanagerengine.cpp134 QGeoRoute QAbstractNavigator::currentRoute() const in currentRoute()
136 return QGeoRoute(); in currentRoute()
144 QList<QGeoRoute> QAbstractNavigator::alternativeRoutes() const in alternativeRoutes()
146 return QList<QGeoRoute>(); in alternativeRoutes()
H A Dqgeoroutereply.h71 QList<QGeoRoute> routes() const;
86 void setRoutes(const QList<QGeoRoute> &routes);
87 void addRoutes(const QList<QGeoRoute> &routes);
H A Dqgeoroutereply.cpp193 QList<QGeoRoute> QGeoRouteReply::routes() const in routes()
201 void QGeoRouteReply::setRoutes(const QList<QGeoRoute> &routes) in setRoutes()
209 void QGeoRouteReply::addRoutes(const QList<QGeoRoute> &routes) in addRoutes()
H A Dqnavigationmanagerengine_p.h62 class QGeoRoute; variable
99 virtual QGeoRoute currentRoute() const;
101 virtual QList<QGeoRoute> alternativeRoutes() const = 0;
H A Dqgeoroutereply_p.h58 class QGeoRoute; variable
72 QList<QGeoRoute> routes;
H A Dqgeorouteparserosrmv4.cpp248 static QGeoRoute constructRoute(const QByteArray &geometry, const QJsonArray &instructions, in constructRoute()
251 QGeoRoute route; in constructRoute()
319 …QGeoRouteReply::Error parseReply(QList<QGeoRoute> &routes, QString &errorString, const QByteArray …
331 QGeoRouteReply::Error QGeoRouteParserOsrmV4Private::parseReply(QList<QGeoRoute> &routes, QString &e… in parseReply()
358QGeoRoute route = constructRoute(routeGeometry, routeInstructions, routeSummary, trafficSide); in parseReply()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/mapbox/
H A Dqgeoroutereplymapbox.cpp53 class QGeoRouteMapbox : public QGeoRoute
56 QGeoRouteMapbox(const QGeoRoute &other, const QVariantMap &metadata);
70 QGeoRouteMapbox::QGeoRouteMapbox(const QGeoRoute &other, const QVariantMap &metadata) in QGeoRouteMapbox()
71 …: QGeoRoute(QExplicitlySharedDataPointer<QGeoRoutePrivateMapbox>(new QGeoRoutePrivateMapbox(*stati… in QGeoRouteMapbox()
125 QList<QGeoRoute> routes; in networkReplyFinished()
131 for (QGeoRoute &route : routes) { in networkReplyFinished()
133 for (QGeoRoute &leg: route.routeLegs()) { in networkReplyFinished()
141 QList<QGeoRoute> mapboxRoutes; in networkReplyFinished()
142 for (const QGeoRoute &route : routes.mid(0, request().numberAlternativeRoutes() + 1)) { in networkReplyFinished()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeoroutexmlparser/
H A Dtst_qgeoroutexmlparser.cpp39 Q_DECLARE_METATYPE(QList<QGeoRoute>)
52 qRegisterMetaType<QList<QGeoRoute> >(); in tst_QGeoRouteXmlParser()
71 QSignalSpy resultsSpy(&xp, SIGNAL(results(QList<QGeoRoute>))); in test_realData1()
80 QList<QGeoRoute> results = arguments.at(0).value<QList<QGeoRoute> >(); in test_realData1()
82 QGeoRoute route = results.first(); in test_realData1()
125 QSignalSpy resultsSpy(&xp, SIGNAL(results(QList<QGeoRoute>))); in test_realData2()
134 QList<QGeoRoute> results = arguments.at(0).value<QList<QGeoRoute> >(); in test_realData2()
136 QGeoRoute route = results.first(); in test_realData2()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/nokia/
H A Dqgeoroutexmlparser.h53 class QGeoRoute; variable
107 void results(const QList<QGeoRoute> &routes);
112 bool parseRoute(QGeoRoute *route);
115 bool parseMode(QGeoRoute *route);
116 bool parseSummary(QGeoRoute *route);
121 bool postProcessRoute(QGeoRoute *route);
130 QList<QGeoRoute> m_results;
H A Dqgeoroutereply_nokia.cpp45 Q_DECLARE_METATYPE(QList<QGeoRoute>) in Q_DECLARE_METATYPE() argument
54 qRegisterMetaType<QList<QGeoRoute> >(); in Q_DECLARE_METATYPE()
89 connect(parser, SIGNAL(results(QList<QGeoRoute>)), in networkFinished()
90 this, SLOT(appendResults(QList<QGeoRoute>))); in networkFinished()
108 void QGeoRouteReplyNokia::appendResults(const QList<QGeoRoute> &routes) in appendResults()
H A Dqgeoroutingmanagerengine_nokia.h61 QGeoRouteReply *updateRoute(const QGeoRoute &route, const QGeoCoordinate &position);
69 QStringList updateRouteRequestString(const QGeoRoute &route, const QGeoCoordinate &position);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeoroute/
H A Dtst_qgeoroute.cpp47 qgeoroute = new QGeoRoute(); in init()
73 QGeoRoute *qgeoroutecopy = new QGeoRoute(*qgeoroute); in copy_constructor()
87 QGeoRoute *qgeoroutecopy; in destructor()
89 qgeoroutecopy = new QGeoRoute(); in destructor()
92 qgeoroutecopy = new QGeoRoute(*qgeoroute); in destructor()
269 QGeoRoute *qgeoroutecopy = new QGeoRoute(*qgeoroute); in operators()
295 QGeoRoute r; in operators()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeoroutereply/
H A Dtst_qgeoroutereply.cpp135 QList<QGeoRoute> routes; in routes()
136 QGeoRoute *route1 = new QGeoRoute(); in routes()
137 QGeoRoute *route2 = new QGeoRoute(); in routes()
147 QList<QGeoRoute> routescopy; in routes()
H A Dtst_qgeoroutereply.h50 void callSetRoutes(const QList<QGeoRoute> & routes ) {setRoutes(routes);} in callSetRoutes()
90 Q_DECLARE_METATYPE( QList<QGeoRoute>);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/nokia_services/routing/
H A Dtst_routing.cpp169 void verifySaneRoute(const QGeoRoute& route);
251 void tst_nokia_routing::verifySaneRoute(const QGeoRoute& route) in verifySaneRoute()
377 QList<QGeoRoute> routes = m_reply->routes(); in can_compute_route_for_all_supported_travel_modes()
379 QGeoRoute& route = routes[0]; in can_compute_route_for_all_supported_travel_modes()
407 QList<QGeoRoute> routes = m_reply->routes(); in can_compute_route_for_all_supported_optimizations()
409 QGeoRoute& route = routes[0]; in can_compute_route_for_all_supported_optimizations()
430 QList<QGeoRoute> routes = m_reply->routes(); in can_handle_multiple_routes_in_response()
442 QList<QGeoRoute> routes = m_reply->routes(); in can_handle_no_route_exists_case()
451 QList<QGeoRoute> routes = m_reply->routes(); in can_handle_additions_to_routing_xml()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/geotestplugin/
H A Dqgeoroutingmanagerengine_test.h63 class QGeoRouteAlt : public QGeoRoute
67 : QGeoRoute(QExplicitlySharedDataPointer<QGeoRoutePrivate>(new QGeoRoutePrivateDefaultAlt())) in QGeoRouteAlt()
81 void callSetRoutes(const QList<QGeoRoute> &routes) {setRoutes(routes);} in callSetRoutes()
169 QList<QGeoRoute> routes; in setRoutes()
175 QGeoRoute route; in setRoutes()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/osm/
H A Dqgeoroutereplyosm.cpp75 QList<QGeoRoute> routes; in networkReplyFinished()
79 for (QGeoRoute &route : routes) { in networkReplyFinished()
81 for (QGeoRoute &leg: route.routeLegs()) { in networkReplyFinished()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativemaps/
H A Dqdeclarativegeoroute_p.h76 QDeclarativeGeoRoute(const QGeoRoute &route, QObject *parent = 0);
92 const QGeoRoute &route() const;
111 QGeoRoute route_;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/esri/
H A Dgeoroutejsonparser_esri.h55 QList<QGeoRoute> routes() const;
66 QMap<int, QGeoRoute> m_routes;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/labs/
H A Dqmaprouteobject_p_p.h56 class QGeoRoute; variable
69 virtual QGeoRoute route() const;
H A Dqmaprouteobject_p.h60 class QGeoRoute; variable
72 QGeoRoute geoRoute() const;
H A Dqmaprouteobject.cpp93 QGeoRoute QMapRouteObjectPrivate::route() const in route()
154 QGeoRoute QMapRouteObject::geoRoute() const in geoRoute()

123