Home
last modified time | relevance | path

Searched refs:makeMutable (Results 1 – 24 of 24) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/sources/
H A Dgeojson_source.cpp13 : Source(makeMutable<Impl>(std::move(id), options)) { in GeoJSONSource()
35 baseImpl = makeMutable<Impl>(impl(), geoJSON); in setGeoJSON()
70 baseImpl = makeMutable<Impl>(impl(), GeoJSON{ FeatureCollection{} }); in loadDescription()
72 baseImpl = makeMutable<Impl>(impl(), *geoJSON); in loadDescription()
H A Dimage_source.cpp12 : Source(makeMutable<Impl>(std::move(id), coords_)) { in ImageSource()
22 baseImpl = makeMutable<Impl>(impl(), coords_); in setCoordinates()
46 baseImpl = makeMutable<Impl>(impl(), std::move(image_)); in setImage()
73 baseImpl = makeMutable<Impl>(impl(), decodeImage(*res.data)); in loadDescription()
H A Dvector_source.cpp14 : Source(makeMutable<Impl>(std::move(id))), in VectorSource()
38 baseImpl = makeMutable<Impl>(impl(), urlOrTileset.get<Tileset>()); in loadDescription()
66 baseImpl = makeMutable<Impl>(impl(), *tileset); in loadDescription()
H A Draster_source.cpp13 : Source(makeMutable<Impl>(sourceType, std::move(id), tileSize)), in RasterSource()
41 baseImpl = makeMutable<Impl>(impl(), urlOrTileset.get<Tileset>()); in loadDescription()
69 baseImpl = makeMutable<Impl>(impl(), *tileset); in loadDescription()
H A Dcustom_geometry_source.cpp16 : Source(makeMutable<CustomGeometrySource::Impl>(std::move(id), options)), in CustomGeometrySource()
27 baseImpl = makeMutable<CustomGeometrySource::Impl>(impl(), loader->self()); in loadDescription()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/util/
H A Dimmutable.hpp41 template <class S, class... Args> friend Mutable<S> makeMutable(Args&&...);
45 Mutable<T> makeMutable(Args&&... args) { in makeMutable() function
128 Mutable<T> mut = makeMutable<T>(*immutable); in mutate()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/layers/
H A Dcustom_layer.cpp10 : Layer(makeMutable<Impl>(layerID, std::move(host))) { in CustomLayer()
20 return makeMutable<Impl>(impl()); in mutableImpl()
H A Dbackground_layer.cpp11 : Layer(makeMutable<Impl>(LayerType::Background, layerID, std::string())) { in BackgroundLayer()
25 return makeMutable<Impl>(impl()); in mutableImpl()
H A Dlayer.cpp.ejs23 : Layer(makeMutable<Impl>(LayerType::<%- camelize(type) %>, layerID, std::string())) {
27 : Layer(makeMutable<Impl>(LayerType::<%- camelize(type) %>, layerID, sourceID)) {
42 return makeMutable<Impl>(impl());
H A Dheatmap_layer.cpp15 : Layer(makeMutable<Impl>(LayerType::Heatmap, layerID, sourceID)) { in HeatmapLayer()
29 return makeMutable<Impl>(impl()); in mutableImpl()
H A Dhillshade_layer.cpp11 : Layer(makeMutable<Impl>(LayerType::Hillshade, layerID, sourceID)) { in HillshadeLayer()
25 return makeMutable<Impl>(impl()); in mutableImpl()
H A Dfill_layer.cpp11 : Layer(makeMutable<Impl>(LayerType::Fill, layerID, sourceID)) { in FillLayer()
25 return makeMutable<Impl>(impl()); in mutableImpl()
H A Draster_layer.cpp11 : Layer(makeMutable<Impl>(LayerType::Raster, layerID, sourceID)) { in RasterLayer()
25 return makeMutable<Impl>(impl()); in mutableImpl()
H A Dfill_extrusion_layer.cpp11 : Layer(makeMutable<Impl>(LayerType::FillExtrusion, layerID, sourceID)) { in FillExtrusionLayer()
25 return makeMutable<Impl>(impl()); in mutableImpl()
H A Dcircle_layer.cpp11 : Layer(makeMutable<Impl>(LayerType::Circle, layerID, sourceID)) { in CircleLayer()
25 return makeMutable<Impl>(impl()); in mutableImpl()
H A Dline_layer.cpp11 : Layer(makeMutable<Impl>(LayerType::Line, layerID, sourceID)) { in LineLayer()
25 return makeMutable<Impl>(impl()); in mutableImpl()
H A Dsymbol_layer.cpp11 : Layer(makeMutable<Impl>(LayerType::Symbol, layerID, sourceID)) { in SymbolLayer()
25 return makeMutable<Impl>(impl()); in mutableImpl()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/
H A Dlight.cpp.ejs16 : impl(makeMutable<Impl>()),
27 return makeMutable<Impl>(*impl);
H A Dlight.cpp13 : impl(makeMutable<Impl>()), in Light()
24 return makeMutable<Impl>(*impl); in mutableImpl()
H A Dimage.cpp12 : baseImpl(makeMutable<Impl>(std::move(id), std::move(image), pixelRatio, sdf)) { in Image()
H A Dcollection.hpp61 : impls(makeMutable<std::vector<Immutable<Impl>>>()) { in Collection()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/text/
H A Dglyph_manager.cpp37 … entry.glyphs.emplace(glyphID, makeMutable<Glyph>(generateLocalSDF(fontStack, glyphID))); in getGlyphs()
102 entry.glyphs.emplace(glyph.id, makeMutable<Glyph>(std::move(glyph))); in processResponse()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/annotation/
H A Dannotation_source.cpp9 : Source(makeMutable<Impl>()) { in AnnotationSource()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Drenderer_impl.cpp59 , imageImpls(makeMutable<std::vector<Immutable<style::Image::Impl>>>())
60 , sourceImpls(makeMutable<std::vector<Immutable<style::Source::Impl>>>())
61 , layerImpls(makeMutable<std::vector<Immutable<style::Layer::Impl>>>())
62 , renderLight(makeMutable<Light::Impl>())