| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/ |
| H A D | layer.hpp | 79 case LayerType::Fill: in accept() 81 case LayerType::Line: in accept() 83 case LayerType::Circle: in accept() 85 case LayerType::Symbol: in accept() 87 case LayerType::Raster: in accept() 89 case LayerType::Background: in accept() 91 case LayerType::Hillshade: in accept() 93 case LayerType::Custom: in accept() 95 case LayerType::FillExtrusion: in accept() 97 case LayerType::Heatmap: in accept() [all …]
|
| H A D | layer_type.hpp | 6 enum class LayerType { enum
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/ |
| H A D | render_layer.cpp | 23 case LayerType::Fill: in create() 25 case LayerType::Line: in create() 27 case LayerType::Circle: in create() 29 case LayerType::Symbol: in create() 31 case LayerType::Raster: in create() 33 case LayerType::Hillshade: in create() 35 case LayerType::Background: in create() 37 case LayerType::Custom: in create() 39 case LayerType::FillExtrusion: in create() 41 case LayerType::Heatmap: in create() [all …]
|
| H A D | bucket.hpp | 19 Bucket(style::LayerType layerType_) in Bucket() 61 style::LayerType layerType;
|
| H A D | render_layer.hpp | 25 RenderLayer(style::LayerType, Immutable<style::Layer::Impl>); 27 const style::LayerType type;
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/checklayer/cases/ |
| H A D | distro.py | 8 from checklayer import LayerType 14 if self.tc.layer['type'] not in (LayerType.DISTRO, LayerType.CORE):
|
| H A D | common.py | 10 from checklayer import get_signatures, LayerType, check_command, get_depgraph, compare_signatures 15 if self.tc.layer['type'] == LayerType.CORE: 76 if self.tc.layer['type'] == LayerType.SOFTWARE and \
|
| H A D | bsp.py | 8 from checklayer import LayerType, get_signatures, check_command, get_depgraph 14 if self.tc.layer['type'] not in (LayerType.BSP, LayerType.CORE):
|
| /OK3568_Linux_fs/yocto/poky/scripts/ |
| H A D | yocto-check-layer | 27 from checklayer import LayerType, detect_layers, add_layers, add_layer_dependencies, get_layer_depe… 128 if layer['type'] == LayerType.ERROR_BSP_DISTRO: 133 elif layer['type'] == LayerType.ERROR_NO_LAYER_CONF: 171 if layer['type'] in (LayerType.ERROR_NO_LAYER_CONF, LayerType.ERROR_BSP_DISTRO): 177 …if layer['type'] not in (LayerType.CORE, ) and check_bblayers(bblayersconf, layer['path'], logger):
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/vector-tile/1.0.2/include/mapbox/ |
| H A D | vector_tile.hpp | 346 while (layer_reader.next(LayerType::NAME)) { in buffer() 389 case LayerType::NAME: in layer() 395 case LayerType::FEATURES: in layer() 400 case LayerType::KEYS: in layer() 408 case LayerType::VALUES: in layer() 413 case LayerType::EXTENT: in layer() 419 case LayerType::VERSION: in layer()
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/checklayer/ |
| H A D | __init__.py | 15 class LayerType(Enum): class 91 layer['type'] = LayerType.ERROR_NO_LAYER_CONF 113 layer['type'] = LayerType.CORE 117 layer['type'] = LayerType.ERROR_BSP_DISTRO 119 layer['type'] = LayerType.BSP 122 layer['type'] = LayerType.DISTRO 125 layer['type'] = LayerType.SOFTWARE
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/ |
| H A D | layer_impl.hpp | 32 Impl(LayerType, std::string layerID, std::string sourceID); 44 const LayerType type;
|
| H A D | layer_impl.cpp | 6 Layer::Impl::Impl(LayerType type_, std::string layerID, std::string sourceID) in Impl()
|
| H A D | layer.cpp | 17 LayerType Layer::getType() const { in getType()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/ |
| H A D | layer.cpp | 50 template <class LayerType> 64 std::unique_ptr<LayerType> layer = std::make_unique<LayerType>(id, *source); in convertVectorLayer()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/buckets/ |
| H A D | hillshade_bucket.cpp | 12 : Bucket(LayerType::Hillshade), in HillshadeBucket() 17 : Bucket(LayerType::Hillshade), in HillshadeBucket()
|
| H A D | raster_bucket.cpp | 11 : Bucket(LayerType::Raster), in RasterBucket() 16 : Bucket(LayerType::Raster), in RasterBucket()
|
| H A D | circle_bucket.hpp | 42 return layerType == style::LayerType::Circle; in is()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/layers/ |
| H A D | custom_layer_impl.cpp | 8 : Layer::Impl(LayerType::Custom, id_, std::string()) { in Impl()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/vector-tile/1.0.2/include/mapbox/vector_tile/ |
| H A D | vector_tile_config.hpp | 13 enum LayerType : std::uint32_t enum
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/layers/ |
| H A D | render_background_layer.hpp | 30 return type == style::LayerType::Background; in is()
|
| H A D | render_raster_layer.hpp | 31 return type == style::LayerType::Raster; in is()
|
| H A D | render_custom_layer.hpp | 33 return type == style::LayerType::Custom; in is()
|
| H A D | render_fill_layer.hpp | 38 return type == style::LayerType::Fill; in is()
|
| H A D | render_circle_layer.hpp | 38 return type == style::LayerType::Circle; in is()
|