| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/util/ |
| H A D | geometry.hpp | 9 enum class FeatureType : uint8_t { enum 47 FeatureType operator()(const Point<T> &) const { return FeatureType::Point; } in operator ()() 49 FeatureType operator()(const MultiPoint<T> &) const { return FeatureType::Point; } in operator ()() 51 FeatureType operator()(const LineString<T> &) const { return FeatureType::LineString; } in operator ()() 53 FeatureType operator()(const MultiLineString<T> &) const { return FeatureType::LineString; } in operator ()() 55 FeatureType operator()(const Polygon<T> &) const { return FeatureType::Polygon; } in operator ()() 57 FeatureType operator()(const MultiPolygon<T> &) const { return FeatureType::Polygon; } in operator ()() 59 …FeatureType operator()(const mapbox::geometry::geometry_collection<T> &) const { return FeatureTyp… in operator ()()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/ |
| H A D | qgeorouterequest.h | 64 enum FeatureType { enum 76 Q_DECLARE_FLAGS(FeatureTypes, FeatureType) 136 void setFeatureWeight(FeatureType featureType, FeatureWeight featureWeight); 137 FeatureWeight featureWeight(FeatureType featureType) const; 138 QList<FeatureType> featureTypes() const;
|
| H A D | qgeorouterequest.cpp | 383 void QGeoRouteRequest::setFeatureWeight(QGeoRouteRequest::FeatureType featureType, QGeoRouteRequest… in setFeatureWeight() 399 QGeoRouteRequest::FeatureWeight QGeoRouteRequest::featureWeight(QGeoRouteRequest::FeatureType featu… in featureWeight() 408 QList<QGeoRouteRequest::FeatureType> QGeoRouteRequest::featureTypes() const in featureTypes()
|
| H A D | qgeorouterequest_p.h | 75 QMap < QGeoRouteRequest::FeatureType,
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/tile/ |
| H A D | vector_tile_data.cpp | 11 FeatureType VectorTileFeature::getType() const { in getType() 14 return FeatureType::Point; in getType() 16 return FeatureType::LineString; in getType() 18 return FeatureType::Polygon; in getType() 20 return FeatureType::Unknown; in getType()
|
| H A D | geometry_tile_data.cpp | 118 case FeatureType::Unknown: { in convertGeometry() 123 case FeatureType::Point: { in convertGeometry() 135 case FeatureType::LineString: { in convertGeometry() 151 case FeatureType::Polygon: { in convertGeometry()
|
| H A D | geojson_tile_data.hpp | 16 FeatureType getType() const override { in getType() 32 if (getType() == FeatureType::Polygon) { in getGeometries()
|
| H A D | vector_tile_data.hpp | 16 FeatureType getType() const override;
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/ |
| H A D | stringify.hpp | 106 void stringify(Writer& writer, FeatureType type) { in stringify() 108 case FeatureType::Unknown: in stringify() 111 case FeatureType::Point: in stringify() 114 case FeatureType::LineString: in stringify() 117 case FeatureType::Polygon: in stringify()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/ |
| H A D | qmapbox.cpp | 19 …lying_type(QMapbox::Feature::PointType) == mbgl::underlying_type(mbgl::FeatureType::Point), "error… 20 …_type(QMapbox::Feature::LineStringType) == mbgl::underlying_type(mbgl::FeatureType::LineString), "… 21 …ing_type(QMapbox::Feature::PolygonType) == mbgl::underlying_type(mbgl::FeatureType::Polygon), "err…
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/annotation/ |
| H A D | annotation_tile.cpp | 25 FeatureType type_, in AnnotationTileFeatureData() 35 FeatureType type; 46 FeatureType AnnotationTileFeature::getType() const { in getType() 91 FeatureType type, in addFeature()
|
| H A D | shape_annotation_impl.cpp | 48 FeatureType featureType = apply_visitor(toFeatureType, shapeFeature.geometry); in updateTileData() 51 assert(featureType != FeatureType::Unknown); in updateTileData() 54 if (featureType == FeatureType::Polygon) { in updateTileData()
|
| H A D | annotation_tile.hpp | 28 FeatureType getType() const override; 48 FeatureType,
|
| H A D | symbol_annotation_impl.cpp | 21 …layer.addFeature(id, FeatureType::Point, GeometryCollection {{ {{ tilePoint }} }}, featureProperti… in updateLayer()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativemaps/ |
| H A D | qdeclarativegeoroutemodel_p.h | 280 Q_ENUMS(FeatureType) 326 enum FeatureType { enum 338 Q_DECLARE_FLAGS(FeatureTypes, FeatureType) 393 Q_INVOKABLE void setFeatureWeight(FeatureType featureType, FeatureWeight featureWeight); 394 Q_INVOKABLE int featureWeight(FeatureType featureType);
|
| H A D | qdeclarativegeoroutemodel.cpp | 1231 void QDeclarativeGeoRouteQuery::setFeatureWeight(FeatureType featureType, FeatureWeight featureWeig… in setFeatureWeight() 1239 …st<FeatureWeight>(request_.featureWeight(static_cast<QGeoRouteRequest::FeatureType>(featureType))); in setFeatureWeight() 1243 request_.setFeatureWeight(static_cast<QGeoRouteRequest::FeatureType>(featureType), in setFeatureWeight() 1263 QList<QGeoRouteRequest::FeatureType> featureTypes = request_.featureTypes(); in resetFeatureWeights() 1281 int QDeclarativeGeoRouteQuery::featureWeight(FeatureType featureType) in featureWeight() 1283 return request_.featureWeight(static_cast<QGeoRouteRequest::FeatureType>(featureType)); in featureWeight()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/buckets/ |
| H A D | line_bucket.cpp | 68 const FeatureType type = feature.getType(); in addGeometry() 88 if (len < (type == FeatureType::Polygon ? 3 : 2)) { in addGeometry() 100 …const LineCapType endCap = type == FeatureType::Polygon ? LineCapType::Butt : LineCapType(layout.g… in addGeometry() 113 if (type == FeatureType::Polygon) { in addGeometry() 122 if (type == FeatureType::Polygon && i == len - 1) { in addGeometry()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/vector-tile/1.0.2/include/mapbox/ |
| H A D | vector_tile.hpp | 141 case FeatureType::ID: in feature() 144 case FeatureType::TAGS: in feature() 147 case FeatureType::TYPE: in feature() 150 case FeatureType::GEOMETRY: in feature()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/expression/ |
| H A D | compound_expression.cpp | 236 optional<std::string> featureTypeAsString(FeatureType type) { in featureTypeAsString() 238 case FeatureType::Point: in featureTypeAsString() 240 case FeatureType::LineString: in featureTypeAsString() 242 case FeatureType::Polygon: in featureTypeAsString() 244 case FeatureType::Unknown: in featureTypeAsString() 405 if (type == FeatureType::Point) { in initializeDefinitions() 407 } else if (type == FeatureType::LineString) { in initializeDefinitions() 409 } else if (type == FeatureType::Polygon) { in initializeDefinitions()
|
| H A D | expression.cpp | 15 FeatureType getType() const override { in getType()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/vector-tile/1.0.2/include/mapbox/vector_tile/ |
| H A D | vector_tile_config.hpp | 23 enum FeatureType : std::uint32_t enum
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeorouterequest/ |
| H A D | tst_qgeorouterequest.h | 92 Q_DECLARE_METATYPE( QGeoRouteRequest::FeatureType);
|
| H A D | tst_qgeorouterequest.cpp | 286 QTest::addColumn<QGeoRouteRequest::FeatureType>("type"); in featureWeight_data() 308 QFETCH(QGeoRouteRequest::FeatureType, type); in featureWeight()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/layout/ |
| H A D | symbol_feature.hpp | 18 FeatureType getType() const override { return feature->getType(); } in getType()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/nokia/ |
| H A D | qgeoroutingmanagerengine_nokia.cpp | 173 QList<QGeoRouteRequest::FeatureType> featureTypeList = request.featureTypes(); in checkEngineSupport() 328 QList<QGeoRouteRequest::FeatureType> featureTypes = request.featureTypes(); in modesRequestString()
|