Home
last modified time | relevance | path

Searched refs:SourceType (Results 1 – 25 of 45) sorted by relevance

12

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/mbgl/storage/
H A Doffline_download.cpp79 SourceType type = source->getType(); in getStatus()
103 case SourceType::Vector: { in getStatus()
109 case SourceType::Raster: { in getStatus()
115 case SourceType::RasterDEM: { in getStatus()
121 case SourceType::GeoJSON: { in getStatus()
129 case SourceType::Image: { in getStatus()
137 case SourceType::Video: in getStatus()
138 case SourceType::Annotations: in getStatus()
139 case SourceType::CustomVector: in getStatus()
166 SourceType type = source->getType(); in activateDownload()
[all …]
H A Doffline.cpp27 std::vector<CanonicalTileID> OfflineTilePyramidRegionDefinition::tileCover(style::SourceType type, … in tileCover()
41 uint64_t OfflineTilePyramidRegionDefinition::tileCount(style::SourceType type, uint16_t tileSize, c… in tileCount()
52 Range<uint8_t> OfflineTilePyramidRegionDefinition::coveringZoomRange(style::SourceType type, uint16… in coveringZoomRange()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Drender_source.cpp19 case SourceType::Vector: in create()
21 case SourceType::Raster: in create()
23 case SourceType::RasterDEM: in create()
25 case SourceType::GeoJSON: in create()
27 case SourceType::Video: in create()
30 case SourceType::Annotations: in create()
32 case SourceType::Image: in create()
34 case SourceType::CustomVector: in create()
H A Dtile_pyramid.cpp68 const SourceType type, in update()
108 if (type == SourceType::Raster) { in update()
208 if (type != SourceType::Annotations) { in update()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/
H A Dtypes.cpp8 MBGL_DEFINE_ENUM(SourceType, {
9 { SourceType::Vector, "vector" },
10 { SourceType::Raster, "raster" },
11 { SourceType::GeoJSON, "geojson" },
12 { SourceType::Video, "video" },
13 { SourceType::Annotations, "annotations" },
14 { SourceType::Image, "image" },
15 { SourceType::CustomVector, "customvector" }
H A Dsource_impl.hpp24 const SourceType type;
28 Impl(SourceType, std::string);
H A Dsource_impl.cpp6 Source::Impl::Impl(SourceType type_, std::string id_) in Impl()
H A Dsource.cpp18 SourceType Source::getType() const { in getType()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/sources/
H A Draster_source.hpp15 …ant<std::string, Tileset> urlOrTileset, uint16_t tileSize, SourceType sourceType = SourceType::Ras…
35 return getType() == SourceType::Raster; in is()
H A Draster_dem_source.hpp21 return getType() == SourceType::RasterDEM; in is()
H A Dvector_source.hpp33 return getType() == SourceType::Vector; in is()
H A Dimage_source.hpp37 return getType() == SourceType::Image; in is()
H A Dgeojson_source.hpp50 return getType() == SourceType::GeoJSON; in is()
H A Dcustom_geometry_source.hpp54 return getType() == SourceType::CustomVector; in is()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/storage/
H A Doffline.hpp33 …std::vector<CanonicalTileID> tileCover(style::SourceType, uint16_t tileSize, const Range<uint8_t>&…
34 uint64_t tileCount(style::SourceType, uint16_t tileSize, const Range<uint8_t>& zoomRange) const;
41 …Range<uint8_t> coveringZoomRange(style::SourceType, uint16_t tileSize, const Range<uint8_t>& zoomR…
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Dmapbox.cpp117 canonicalizeTileURL(const std::string& str, const style::SourceType type, const uint16_t tileSize) { in canonicalizeTileURL()
136 if (type == style::SourceType::Raster || type == style::SourceType::RasterDEM) { in canonicalizeTileURL()
174 void canonicalizeTileset(Tileset& tileset, const std::string& sourceURL, style::SourceType type, ui… in canonicalizeTileset()
H A Dmapbox.hpp22 std::string canonicalizeTileURL(const std::string& url, style::SourceType, uint16_t tileSize);
25 void canonicalizeTileset(Tileset&, const std::string& url, style::SourceType, uint16_t tileSize);
H A Dtile_cover.cpp133 int32_t coveringZoomLevel(double zoom, style::SourceType type, uint16_t size) { in coveringZoomLevel()
135 if (type == style::SourceType::Raster || type == style::SourceType::Video) { in coveringZoomLevel()
H A Dtile_cover.hpp34 int32_t coveringZoomLevel(double z, style::SourceType type, uint16_t tileSize);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/sources/
H A Draster_dem_source.cpp13 : RasterSource(std::move(id), urlOrTileset_, tileSize, SourceType::RasterDEM){ in RasterDEMSource()
H A Draster_source_impl.hpp11 Impl(SourceType sourceType, std::string id, uint16_t tileSize);
H A Dvector_source_impl.cpp7 : Source::Impl(SourceType::Vector, std::move(id_)) { in Impl()
H A Draster_source_impl.cpp6 RasterSource::Impl::Impl(SourceType sourceType, std::string id_, uint16_t tileSize_) in Impl()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/annotation/
H A Dannotation_source.cpp13 : Source::Impl(SourceType::Annotations, AnnotationManager::SourceID) { in Impl()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/
H A Dsource.hpp59 SourceType getType() const;

12