Home
last modified time | relevance | path

Searched refs:TileCover (Results 1 – 4 of 4) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Dtile_cover.cpp178 TileCover tc(geometry, z, true); in tileCover()
209 TileCover tc(geometry, z, true); in tileCount()
216 TileCover::TileCover(const LatLngBounds&bounds_, int32_t z) { in TileCover() function in mbgl::util::TileCover
233 impl = std::make_unique<TileCover::Impl>(z, p, false); in TileCover()
236 TileCover::TileCover(const Geometry<double>& geom, int32_t z, bool project/* = true*/) in TileCover() function in mbgl::util::TileCover
237 : impl( std::make_unique<TileCover::Impl>(z, geom, project)) { in TileCover()
240 TileCover::~TileCover() { in ~TileCover()
244 optional<UnwrappedTileID> TileCover::next() { in next()
248 bool TileCover::hasNext() { in hasNext()
H A Dtile_cover.hpp19 class TileCover { class
21 TileCover(const LatLngBounds&, int32_t z);
23 TileCover(const Geometry<double>&, int32_t z, bool project = true);
24 ~TileCover();
H A Dtile_cover_impl.cpp271 TileCover::Impl::Impl(int32_t z, const Geometry<double>& geom, bool project) in Impl()
294 void TileCover::Impl::nextRow() { in nextRow()
330 bool TileCover::Impl::hasNext() const { in hasNext()
336 optional<UnwrappedTileID> TileCover::Impl::next() { in next()
H A Dtile_cover_impl.hpp79 class TileCover::Impl {