Home
last modified time | relevance | path

Searched refs:AnnotationID (Results 1 – 19 of 19) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/annotation/
H A Dannotation_manager.hpp31 AnnotationID addAnnotation(const Annotation&);
32 bool updateAnnotation(const AnnotationID&, const Annotation&);
33 void removeAnnotation(const AnnotationID&);
52 void add(const AnnotationID&, const SymbolAnnotation&);
53 void add(const AnnotationID&, const LineAnnotation&);
54 void add(const AnnotationID&, const FillAnnotation&);
56 void update(const AnnotationID&, const SymbolAnnotation&);
57 void update(const AnnotationID&, const LineAnnotation&);
58 void update(const AnnotationID&, const FillAnnotation&);
60 void remove(const AnnotationID&);
[all …]
H A Dannotation_manager.cpp38 AnnotationID AnnotationManager::addAnnotation(const Annotation& annotation) { in addAnnotation()
40 AnnotationID id = nextID++; in addAnnotation()
48 bool AnnotationManager::updateAnnotation(const AnnotationID& id, const Annotation& annotation) { in updateAnnotation()
56 void AnnotationManager::removeAnnotation(const AnnotationID& id) { in removeAnnotation()
62 void AnnotationManager::add(const AnnotationID& id, const SymbolAnnotation& annotation) { in add()
68 void AnnotationManager::add(const AnnotationID& id, const LineAnnotation& annotation) { in add()
74 void AnnotationManager::add(const AnnotationID& id, const FillAnnotation& annotation) { in add()
80 void AnnotationManager::update(const AnnotationID& id, const SymbolAnnotation& annotation) { in update()
97 void AnnotationManager::update(const AnnotationID& id, const LineAnnotation& annotation) { in update()
109 void AnnotationManager::update(const AnnotationID& id, const FillAnnotation& annotation) { in update()
[all …]
H A Dannotation_tile.cpp24 AnnotationTileFeatureData(const AnnotationID id_, in AnnotationTileFeatureData()
34 AnnotationID id;
90 void AnnotationTileLayer::addFeature(const AnnotationID id, in addFeature()
H A Dshape_annotation_impl.hpp20 ShapeAnnotationImpl(const AnnotationID);
28 const AnnotationID id;
H A Dsymbol_annotation_impl.hpp39 SymbolAnnotationImpl(AnnotationID, SymbolAnnotation);
43 const AnnotationID id;
H A Dfill_annotation_impl.hpp10 FillAnnotationImpl(AnnotationID, FillAnnotation);
H A Dline_annotation_impl.hpp10 LineAnnotationImpl(AnnotationID, LineAnnotation);
H A Dsymbol_annotation_impl.cpp9 SymbolAnnotationImpl::SymbolAnnotationImpl(AnnotationID id_, SymbolAnnotation annotation_) in SymbolAnnotationImpl()
H A Dfill_annotation_impl.cpp10 FillAnnotationImpl::FillAnnotationImpl(AnnotationID id_, FillAnnotation annotation_) in FillAnnotationImpl()
H A Dline_annotation_impl.cpp10 LineAnnotationImpl::LineAnnotationImpl(AnnotationID id_, LineAnnotation annotation_) in LineAnnotationImpl()
H A Dannotation_tile.hpp47 void addFeature(const AnnotationID,
H A Dshape_annotation_impl.cpp16 ShapeAnnotationImpl::ShapeAnnotationImpl(const AnnotationID id_) in ShapeAnnotationImpl()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Drenderer.cpp76 std::set<AnnotationID> set; in getAnnotationIDs()
80 assert(feature.id->get<uint64_t>() <= std::numeric_limits<AnnotationID>::max()); in getAnnotationIDs()
81 set.insert(static_cast<AnnotationID>(feature.id->get<uint64_t>())); in getAnnotationIDs()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/map/
H A Dmap.hpp151 AnnotationID addAnnotation(const Annotation&);
152 void updateAnnotation(AnnotationID, const Annotation&);
153 void removeAnnotation(AnnotationID);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/annotation/
H A Dannotation.hpp15 using AnnotationID = uint32_t; typedef
16 using AnnotationIDs = std::vector<AnnotationID>;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/include/
H A Dqmapboxgl.hpp197 QMapbox::AnnotationID addAnnotation(const QMapbox::Annotation &);
198 void updateAnnotation(QMapbox::AnnotationID, const QMapbox::Annotation &);
199 void removeAnnotation(QMapbox::AnnotationID);
H A Dqmapbox.hpp97 typedef quint32 AnnotationID; typedef
98 typedef QList<AnnotationID> AnnotationIDs;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/map/
H A Dmap.cpp688 AnnotationID Map::addAnnotation(const Annotation& annotation) { in addAnnotation()
694 void Map::updateAnnotation(AnnotationID id, const Annotation& annotation) { in updateAnnotation()
700 void Map::removeAnnotation(AnnotationID annotation) { in removeAnnotation()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/
H A Dqmapboxgl.cpp953 QMapbox::AnnotationID QMapboxGL::addAnnotation(const QMapbox::Annotation &annotation) in addAnnotation()
963 void QMapboxGL::updateAnnotation(QMapbox::AnnotationID id, const QMapbox::Annotation &annotation) in updateAnnotation()
971 void QMapboxGL::removeAnnotation(QMapbox::AnnotationID id) in removeAnnotation()