Home
last modified time | relevance | path

Searched refs:addSource (Results 1 – 7 of 7) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/
H A Dstyle.cpp95 void Style::addSource(std::unique_ptr<Source> source) { in addSource() function in mbgl::style::Style
97 impl->addSource(std::move(source)); in addSource()
H A Dstyle_impl.cpp99 addSource(std::move(source)); in parse()
138 void Style::Impl::addSource(std::unique_ptr<Source> source) { in addSource() function in mbgl::style::Style::Impl
H A Dstyle_impl.hpp62 void addSource(std::unique_ptr<Source>);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/
H A Dstyle.hpp60 void addSource(std::unique_ptr<Source>);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/include/
H A Dqmapboxgl.hpp224 void addSource(const QString &sourceID, const QVariantMap& params);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/
H A Dqmapboxgl.cpp1303 void QMapboxGL::addSource(const QString &id, const QVariantMap &params) in addSource() function in QMapboxGL
1315 d_ptr->mapObj->getStyle().addSource(std::move(*source)); in addSource()
1339 addSource(id, params); in updateSource()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/annotation/
H A Dannotation_manager.cpp160 style.get().impl->addSource(std::make_unique<AnnotationSource>()); in updateStyle()