Home
last modified time | relevance | path

Searched refs:featureTypes (Results 1 – 12 of 12) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/nokia/
H A Dqgeoroutingmanagerengine_nokia.cpp66 QGeoRouteRequest::FeatureTypes featureTypes; in QGeoRoutingManagerEngineNokia() local
67 featureTypes |= QGeoRouteRequest::TollFeature; in QGeoRoutingManagerEngineNokia()
68 featureTypes |= QGeoRouteRequest::HighwayFeature; in QGeoRoutingManagerEngineNokia()
69 featureTypes |= QGeoRouteRequest::FerryFeature; in QGeoRoutingManagerEngineNokia()
70 featureTypes |= QGeoRouteRequest::TunnelFeature; in QGeoRoutingManagerEngineNokia()
71 featureTypes |= QGeoRouteRequest::DirtRoadFeature; in QGeoRoutingManagerEngineNokia()
72 featureTypes |= QGeoRouteRequest::ParksFeature; in QGeoRoutingManagerEngineNokia()
73 setSupportedFeatureTypes(featureTypes); in QGeoRoutingManagerEngineNokia()
173 QList<QGeoRouteRequest::FeatureType> featureTypeList = request.featureTypes(); in checkEngineSupport()
328 QList<QGeoRouteRequest::FeatureType> featureTypes = request.featureTypes(); in modesRequestString() local
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/
H A Dqgeoroutingmanagerengine.cpp233 void QGeoRoutingManagerEngine::setSupportedFeatureTypes(QGeoRouteRequest::FeatureTypes featureTypes) in setSupportedFeatureTypes() argument
235 d_ptr->supportedFeatureTypes = featureTypes; in setSupportedFeatureTypes()
H A Dqgeoroutingmanagerengine.h81 void setSupportedFeatureTypes(QGeoRouteRequest::FeatureTypes featureTypes);
H A Dqgeorouterequest.h138 QList<FeatureType> featureTypes() const;
H A Dqgeorouterequest.cpp408 QList<QGeoRouteRequest::FeatureType> QGeoRouteRequest::featureTypes() const in featureTypes() function in QGeoRouteRequest
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativemaps/
H A Dqdeclarativegeoroutemodel.cpp808 QList<int> QDeclarativeGeoRouteQuery::featureTypes() in featureTypes() function in QDeclarativeGeoRouteQuery
812 for (int i = 0; i < request_.featureTypes().count(); ++i) { in featureTypes()
813 list.append(static_cast<int>(request_.featureTypes().at(i))); in featureTypes()
1233 if (featureType == NoFeature && !request_.featureTypes().isEmpty()) { in setFeatureWeight()
1263 QList<QGeoRouteRequest::FeatureType> featureTypes = request_.featureTypes(); in resetFeatureWeights() local
1264 for (int i = 0; i < featureTypes.count(); ++i) { in resetFeatureWeights()
1265 request_.setFeatureWeight(featureTypes.at(i), QGeoRouteRequest::NeutralFeatureWeight); in resetFeatureWeights()
H A Dqdeclarativegeoroutemodel_p.h297 Q_PROPERTY(QList<int> featureTypes READ featureTypes NOTIFY featureTypesChanged)
373 QList<int> featureTypes();
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/mapbox/
H A Dqgeoroutingmanagerenginemapbox.cpp271 const QList<QGeoRouteRequest::FeatureType> &featureTypes = request.featureTypes(); in calculateRoute() local
272 int trafficFeatureIdx = featureTypes.indexOf(QGeoRouteRequest::TrafficFeature); in calculateRoute()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/declarative_core/
H A Dtst_routing.qml179 compare (emptyQuery.featureTypes.length, 0, "Feature types")
332 compare(emptyQuery.featureTypes.length, 0)
340 compare(emptyQuery.featureTypes.length, 2)
341 compare(emptyQuery.featureTypes[0], RouteQuery.TollFeature)
342 compare(emptyQuery.featureTypes[1], RouteQuery.HighwayFeature)
350 compare(emptyQuery.featureTypes.length, 1)
353 compare(emptyQuery.featureTypes[0], RouteQuery.HighwayFeature)
354 … compare(emptyQuery.featureWeight(emptyQuery.featureTypes[0]), RouteQuery.PreferFeatureWeight)
357 compare(emptyQuery.featureTypes.length, 1)
364 compare(emptyQuery.featureTypes.length, 3)
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeorouterequest/
H A Dtst_qgeorouterequest.cpp319 QVERIFY(qgeorouterequest->featureTypes().contains(type)); in featureWeight()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/doc/src/
H A Dqml-maps.qdoc162 \li \l {RouteQuery::}{featureTypes}
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/imports/location/
H A Dplugins.qmltypes944 Property { name: "featureTypes"; type: "QList<int>"; isReadonly: true }