Home
last modified time | relevance | path

Searched refs:FeatureType (Results 1 – 25 of 30) sorted by relevance

12

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/util/
H A Dgeometry.hpp9 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 ()()
59FeatureType operator()(const mapbox::geometry::geometry_collection<T> &) const { return FeatureTyp… in operator ()()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/
H A Dqgeorouterequest.h64 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 Dqgeorouterequest.cpp383 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 Dqgeorouterequest_p.h75 QMap < QGeoRouteRequest::FeatureType,
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/tile/
H A Dvector_tile_data.cpp11 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 Dgeometry_tile_data.cpp118 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 Dgeojson_tile_data.hpp16 FeatureType getType() const override { in getType()
32 if (getType() == FeatureType::Polygon) { in getGeometries()
H A Dvector_tile_data.hpp16 FeatureType getType() const override;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/
H A Dstringify.hpp106 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 Dqmapbox.cpp19 …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 Dannotation_tile.cpp25 FeatureType type_, in AnnotationTileFeatureData()
35 FeatureType type;
46 FeatureType AnnotationTileFeature::getType() const { in getType()
91 FeatureType type, in addFeature()
H A Dshape_annotation_impl.cpp48 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 Dannotation_tile.hpp28 FeatureType getType() const override;
48 FeatureType,
H A Dsymbol_annotation_impl.cpp21 …layer.addFeature(id, FeatureType::Point, GeometryCollection {{ {{ tilePoint }} }}, featureProperti… in updateLayer()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativemaps/
H A Dqdeclarativegeoroutemodel_p.h280 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 Dqdeclarativegeoroutemodel.cpp1231 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 Dline_bucket.cpp68 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 Dvector_tile.hpp141 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 Dcompound_expression.cpp236 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 Dexpression.cpp15 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 Dvector_tile_config.hpp23 enum FeatureType : std::uint32_t enum
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeorouterequest/
H A Dtst_qgeorouterequest.h92 Q_DECLARE_METATYPE( QGeoRouteRequest::FeatureType);
H A Dtst_qgeorouterequest.cpp286 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 Dsymbol_feature.hpp18 FeatureType getType() const override { return feature->getType(); } in getType()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/nokia/
H A Dqgeoroutingmanagerengine_nokia.cpp173 QList<QGeoRouteRequest::FeatureType> featureTypeList = request.featureTypes(); in checkEngineSupport()
328 QList<QGeoRouteRequest::FeatureType> featureTypes = request.featureTypes(); in modesRequestString()

12