Home
last modified time | relevance | path

Searched refs:Impl (Results 1 – 25 of 224) sorted by relevance

123456789

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/
H A Dstyle_impl.cpp30 Style::Impl::Impl(Scheduler& scheduler_, FileSource& fileSource_, float pixelRatio) in Impl() function in mbgl::style::Style::Impl
40 Style::Impl::~Impl() = default;
42 void Style::Impl::loadJSON(const std::string& json_) { in loadJSON()
50 void Style::Impl::loadURL(const std::string& url_) { in loadURL()
76 void Style::Impl::parse(const std::string& json_) { in parse()
122 std::string Style::Impl::getJSON() const { in getJSON()
126 std::string Style::Impl::getURL() const { in getURL()
130 void Style::Impl::setTransitionOptions(const TransitionOptions& options) { in setTransitionOptions()
134 TransitionOptions Style::Impl::getTransitionOptions() const { in getTransitionOptions()
138 void Style::Impl::addSource(std::unique_ptr<Source> source) { in addSource()
[all …]
H A Dlayer_impl.hpp30 class Layer::Impl { class in mbgl::style::Layer
32 Impl(LayerType, std::string layerID, std::string sourceID);
33 virtual ~Impl() = default;
35 Impl& operator=(const Impl&) = delete;
39 virtual bool hasLayoutDifference(const Layer::Impl&) const = 0;
54 Impl(const Impl&) = default;
H A Dsource_impl.hpp16 class Source::Impl { class in mbgl::style::Source
18 virtual ~Impl() = default;
20 Impl& operator=(const Impl&) = delete;
28 Impl(SourceType, std::string);
29 Impl(const Impl&) = default;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/sources/
H A Dimage_source_impl.cpp7 ImageSource::Impl::Impl(std::string id_, std::array<LatLng, 4> coords_) in Impl() function in mbgl::style::ImageSource::Impl
8 : Source::Impl(SourceType::Image, std::move(id_)), in Impl()
12 ImageSource::Impl::Impl(const Impl& other, std::array<LatLng, 4> coords_) in Impl() function in mbgl::style::ImageSource::Impl
13 : Source::Impl(other), in Impl()
18 ImageSource::Impl::Impl(const Impl& rhs, PremultipliedImage&& image_) in Impl() function in mbgl::style::ImageSource::Impl
19 : Source::Impl(rhs), in Impl()
23 ImageSource::Impl::~Impl() = default;
25 std::shared_ptr<PremultipliedImage> ImageSource::Impl::getImage() const { in getImage()
29 std::array<LatLng, 4> ImageSource::Impl::getCoordinates() const { in getCoordinates()
33 optional<std::string> ImageSource::Impl::getAttribution() const { in getAttribution()
H A Dcustom_geometry_source_impl.cpp7 CustomGeometrySource::Impl::Impl(std::string id_, in Impl() function in mbgl::style::CustomGeometrySource::Impl
9 : Source::Impl(SourceType::CustomVector, std::move(id_)), in Impl()
15 CustomGeometrySource::Impl::Impl(const Impl& impl, ActorRef<CustomTileLoader> loaderRef_) in Impl() function in mbgl::style::CustomGeometrySource::Impl
16 : Source::Impl(impl), in Impl()
23 optional<std::string> CustomGeometrySource::Impl::getAttribution() const { in getAttribution()
27 CustomGeometrySource::TileOptions CustomGeometrySource::Impl::getTileOptions() const { in getTileOptions()
31 Range<uint8_t> CustomGeometrySource::Impl::getZoomRange() const { in getZoomRange()
35 optional<ActorRef<CustomTileLoader>> CustomGeometrySource::Impl::getTileLoader() const { in getTileLoader()
H A Draster_source_impl.cpp6 RasterSource::Impl::Impl(SourceType sourceType, std::string id_, uint16_t tileSize_) in Impl() function in mbgl::style::RasterSource::Impl
7 : Source::Impl(sourceType, std::move(id_)), in Impl()
11 RasterSource::Impl::Impl(const Impl& other, Tileset tileset_) in Impl() function in mbgl::style::RasterSource::Impl
12 : Source::Impl(other), in Impl()
17 uint16_t RasterSource::Impl::getTileSize() const { in getTileSize()
21 optional<Tileset> RasterSource::Impl::getTileset() const { in getTileset()
25 optional<std::string> RasterSource::Impl::getAttribution() const { in getAttribution()
H A Dvector_source_impl.cpp6 VectorSource::Impl::Impl(std::string id_) in Impl() function in mbgl::style::VectorSource::Impl
7 : Source::Impl(SourceType::Vector, std::move(id_)) { in Impl()
10 VectorSource::Impl::Impl(const Impl& other, Tileset tileset_) in Impl() function in mbgl::style::VectorSource::Impl
11 : Source::Impl(other), in Impl()
15 optional<Tileset> VectorSource::Impl::getTileset() const { in getTileset()
19 optional<std::string> VectorSource::Impl::getAttribution() const { in getAttribution()
H A Dgeojson_source_impl.cpp42 GeoJSONSource::Impl::Impl(std::string id_, GeoJSONOptions options_) in Impl() function in mbgl::style::GeoJSONSource::Impl
43 : Source::Impl(SourceType::GeoJSON, std::move(id_)), in Impl()
47 GeoJSONSource::Impl::Impl(const Impl& other, const GeoJSON& geoJSON) in Impl() function in mbgl::style::GeoJSONSource::Impl
48 : Source::Impl(other), in Impl()
71 GeoJSONSource::Impl::~Impl() = default;
73 Range<uint8_t> GeoJSONSource::Impl::getZoomRange() const { in getZoomRange()
77 GeoJSONData* GeoJSONSource::Impl::getData() const { in getData()
81 optional<std::string> GeoJSONSource::Impl::getAttribution() const { in getAttribution()
H A Dimage_source_impl.hpp12 class ImageSource::Impl : public Source::Impl { class in mbgl::style::ImageSource
14 Impl(std::string id, std::array<LatLng, 4> coords);
15 Impl(const Impl& rhs, std::array<LatLng, 4> coords);
16 Impl(const Impl& rhs, PremultipliedImage&& image);
18 ~Impl() final;
H A Dgeojson_source_impl.hpp20 class GeoJSONSource::Impl : public Source::Impl { class in mbgl::style::GeoJSONSource
22 Impl(std::string id, GeoJSONOptions);
23 Impl(const GeoJSONSource::Impl&, const GeoJSON&);
24 ~Impl() final;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/mbgl/map/
H A Dmap_snapshotter.cpp14 class MapSnapshotter::Impl { class in mbgl::MapSnapshotter
16 Impl(FileSource*,
48 MapSnapshotter::Impl::Impl(FileSource* fileSource, in Impl() function in mbgl::MapSnapshotter::Impl
76 void MapSnapshotter::Impl::snapshot(ActorRef<MapSnapshotter::Callback> callback) { in snapshot()
120 void MapSnapshotter::Impl::setStyleURL(std::string styleURL) { in setStyleURL()
124 std::string MapSnapshotter::Impl::getStyleURL() const { in getStyleURL()
128 void MapSnapshotter::Impl::setStyleJSON(std::string styleJSON) { in setStyleJSON()
132 std::string MapSnapshotter::Impl::getStyleJSON() const { in getStyleJSON()
136 void MapSnapshotter::Impl::setSize(Size size) { in setSize()
141 Size MapSnapshotter::Impl::getSize() const { in getSize()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Drender_layer.cpp21 std::unique_ptr<RenderLayer> RenderLayer::create(Immutable<Layer::Impl> impl) { in create()
24 return std::make_unique<RenderFillLayer>(staticImmutableCast<FillLayer::Impl>(impl)); in create()
26 return std::make_unique<RenderLineLayer>(staticImmutableCast<LineLayer::Impl>(impl)); in create()
28 return std::make_unique<RenderCircleLayer>(staticImmutableCast<CircleLayer::Impl>(impl)); in create()
30 return std::make_unique<RenderSymbolLayer>(staticImmutableCast<SymbolLayer::Impl>(impl)); in create()
32 return std::make_unique<RenderRasterLayer>(staticImmutableCast<RasterLayer::Impl>(impl)); in create()
34 … return std::make_unique<RenderHillshadeLayer>(staticImmutableCast<HillshadeLayer::Impl>(impl)); in create()
36 … return std::make_unique<RenderBackgroundLayer>(staticImmutableCast<BackgroundLayer::Impl>(impl)); in create()
38 return std::make_unique<RenderCustomLayer>(staticImmutableCast<CustomLayer::Impl>(impl)); in create()
40 …rn std::make_unique<RenderFillExtrusionLayer>(staticImmutableCast<FillExtrusionLayer::Impl>(impl)); in create()
[all …]
H A Drender_source.cpp17 std::unique_ptr<RenderSource> RenderSource::create(Immutable<Source::Impl> impl) { in create()
20 return std::make_unique<RenderVectorSource>(staticImmutableCast<VectorSource::Impl>(impl)); in create()
22 return std::make_unique<RenderRasterSource>(staticImmutableCast<RasterSource::Impl>(impl)); in create()
24 … return std::make_unique<RenderRasterDEMSource>(staticImmutableCast<RasterSource::Impl>(impl)); in create()
26 … return std::make_unique<RenderGeoJSONSource>(staticImmutableCast<GeoJSONSource::Impl>(impl)); in create()
31 …return std::make_unique<RenderAnnotationSource>(staticImmutableCast<AnnotationSource::Impl>(impl)); in create()
33 return std::make_unique<RenderImageSource>(staticImmutableCast<ImageSource::Impl>(impl)); in create()
35 …td::make_unique<RenderCustomGeometrySource>(staticImmutableCast<CustomGeometrySource::Impl>(impl)); in create()
45 RenderSource::RenderSource(Immutable<style::Source::Impl> impl) in RenderSource()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/
H A Dhttp_file_source.cpp115 class HTTPFileSource::Impl { class in mbgl::HTTPFileSource
117 Impl();
118 ~Impl();
122 static void onTimeout(HTTPFileSource::Impl *context);
146 HTTPRequest(HTTPFileSource::Impl*, Resource, FileSource::Callback);
155 HTTPFileSource::Impl* context = nullptr;
172 HTTPFileSource::Impl::Impl() { in Impl() function in mbgl::HTTPFileSource::Impl
186 HTTPFileSource::Impl::~Impl() { in ~Impl()
201 CURL *HTTPFileSource::Impl::getHandle() { in getHandle()
211 void HTTPFileSource::Impl::returnHandle(CURL *handle) { in returnHandle()
[all …]
H A Ddefault_file_source.cpp20 class DefaultFileSource::Impl { class in mbgl::DefaultFileSource
22Impl(std::shared_ptr<FileSource> assetFileSource_, std::string cachePath, uint64_t maximumCacheSiz… in Impl() function in mbgl::DefaultFileSource::Impl
212 …, impl(std::make_unique<util::Thread<Impl>>("DefaultFileSource", assetFileSource, cachePath, maxim… in DefaultFileSource()
218 impl->actor().invoke(&Impl::setAPIBaseURL, baseURL); in setAPIBaseURL()
232 impl->actor().invoke(&Impl::setAccessToken, accessToken); in setAccessToken()
246 impl->actor().invoke(&Impl::setResourceTransform, std::move(transform)); in setResourceTransform()
252 …req->onCancel([fs = impl->actor(), req = req.get()] () mutable { fs.invoke(&Impl::cancel, req); }); in request()
254 impl->actor().invoke(&Impl::request, req.get(), resource, req->actor()); in request()
260 impl->actor().invoke(&Impl::listRegions, callback); in listOfflineRegions()
266 impl->actor().invoke(&Impl::createRegion, definition, metadata, callback); in createOfflineRegion()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/annotation/
H A Dannotation_source.hpp12 class Impl;
13 const Impl& impl() const;
18 Mutable<Impl> mutableImpl() const;
21 class AnnotationSource::Impl : public style::Source::Impl { class in mbgl::AnnotationSource
23 Impl();
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/layers/
H A Dcustom_layer_impl.cpp6 CustomLayer::Impl::Impl(const std::string& id_, in Impl() function in mbgl::style::CustomLayer::Impl
8 : Layer::Impl(LayerType::Custom, id_, std::string()) { in Impl()
12 bool CustomLayer::Impl::hasLayoutDifference(const Layer::Impl&) const { in hasLayoutDifference()
16 void CustomLayer::Impl::stringifyLayout(rapidjson::Writer<rapidjson::StringBuffer>&) const { in stringifyLayout()
H A Dfill_extrusion_layer_impl.hpp10 class FillExtrusionLayer::Impl : public Layer::Impl { class in mbgl::style::FillExtrusionLayer
12 using Layer::Impl::Impl;
14 bool hasLayoutDifference(const Layer::Impl&) const override;
H A Dcircle_layer_impl.hpp10 class CircleLayer::Impl : public Layer::Impl { class in mbgl::style::CircleLayer
12 using Layer::Impl::Impl;
14 bool hasLayoutDifference(const Layer::Impl&) const override;
H A Dheatmap_layer_impl.hpp10 class HeatmapLayer::Impl : public Layer::Impl { class in mbgl::style::HeatmapLayer
12 using Layer::Impl::Impl;
14 bool hasLayoutDifference(const Layer::Impl&) const override;
H A Dhillshade_layer_impl.hpp10 class HillshadeLayer::Impl : public Layer::Impl { class in mbgl::style::HillshadeLayer
12 using Layer::Impl::Impl;
14 bool hasLayoutDifference(const Layer::Impl&) const override;
H A Dfill_layer_impl.hpp10 class FillLayer::Impl : public Layer::Impl { class in mbgl::style::FillLayer
12 using Layer::Impl::Impl;
14 bool hasLayoutDifference(const Layer::Impl&) const override;
H A Dbackground_layer_impl.hpp10 class BackgroundLayer::Impl : public Layer::Impl { class in mbgl::style::BackgroundLayer
12 using Layer::Impl::Impl;
14 bool hasLayoutDifference(const Layer::Impl&) const override;
H A Draster_layer_impl.hpp10 class RasterLayer::Impl : public Layer::Impl { class in mbgl::style::RasterLayer
12 using Layer::Impl::Impl;
14 bool hasLayoutDifference(const Layer::Impl&) const override;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/
H A Dtimer.cpp11 Timer::Impl::Impl() { in Impl() function in mbgl::util::Timer::Impl
18 void Timer::Impl::start(uint64_t timeout, uint64_t repeat_, std::function<void ()>&& cb) { in start()
26 void Timer::Impl::stop() { in stop()
30 void Timer::Impl::timerFired() { in timerFired()
40 : impl(std::make_unique<Impl>()) { in Timer()

123456789