| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/osm/ |
| H A D | qgeotileproviderosm.cpp | 48 static void setSSL(QGeoMapType &mapType, bool isHTTPS) in setSSL() argument 50 QVariantMap metadata = mapType.metadata(); in setSSL() 53 mapType = QGeoMapType(mapType.style(), mapType.name(), mapType.description(), mapType.mobile(), in setSSL() 54 … mapType.night(), mapType.mapId(), mapType.pluginName(), mapType.cameraCapabilities(), in setSSL() 59 const QGeoMapType &mapType, in QGeoTileProviderOsm() argument 62 : m_nm(nm), m_provider(nullptr), m_mapType(mapType), m_status(Idle), m_cameraCapabilities(cameraC… in QGeoTileProviderOsm() 152 const QGeoMapType &QGeoTileProviderOsm::mapType() const in mapType() function in QGeoTileProviderOsm
|
| H A D | qgeofiletilecacheosm.cpp | 88 int mapId = m_providers[i]->mapType().mapId(); in onProviderResolutionFinished() 120 if (p->mapType().mapId() > max) in init() 121 max = p->mapType().mapId(); in init() 301 … if (m_maxMapIdTimestamps[p->mapType().mapId()].isValid() && // there are tiles in the cache in clearObsoleteTiles() 302 …p->timestamp() > m_maxMapIdTimestamps[p->mapType().mapId()]) { // and they are older than the prov… in clearObsoleteTiles() 303 … qInfo() << "provider for " << p->mapType().name() << " timestamp: " << p->timestamp() in clearObsoleteTiles() 304 … << " -- data last modified: " << m_maxMapIdTimestamps[p->mapType().mapId()] << ". Clearing."; in clearObsoleteTiles() 305 clearMapId(p->mapType().mapId()); in clearObsoleteTiles() 306 m_maxMapIdTimestamps[p->mapType().mapId()] = p->timestamp(); // don't do it again. in clearObsoleteTiles()
|
| H A D | qgeotiledmaposm.cpp | 86 if (!provider->isResolved() || provider->mapType().mapId() != m_mapId) in onProviderDataUpdated() 109 if (copyRights.isEmpty() && provider->mapType().style() == QGeoMapType::CustomMap) in onProviderDataUpdated()
|
| H A D | qgeotileproviderosm.h | 145 const QGeoMapType &mapType, 158 const QGeoMapType &mapType() const;
|
| H A D | qgeotiledmappingmanagerengineosm.cpp | 382 mapTypes << provider->mapType(); in updateMapTypes()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativemaps/ |
| H A D | qdeclarativegeomaptype.cpp | 58 QDeclarativeGeoMapType::QDeclarativeGeoMapType(const QGeoMapType mapType, QObject *parent) in QDeclarativeGeoMapType() argument 60 mapType_(mapType), in QDeclarativeGeoMapType() 61 … cameraCapabilities_(new QDeclarativeGeoCameraCapabilities(mapType.cameraCapabilities(), this)) {} in QDeclarativeGeoMapType()
|
| H A D | qdeclarativegeomap.cpp | 289 if (types[i]->mapType() == type) in findMapType() 311 if (declarativeType->mapType() == m_map->activeMapType()) in onSupportedMapTypesChanged() 317 m_map->setActiveMapType(type->mapType()); in onSupportedMapTypesChanged() 653 if (m_activeMapType && m_plugin->name().toLatin1() == m_activeMapType->mapType().pluginName()) { in mappingManagerInitialized() 654 m_map->setActiveMapType(m_activeMapType->mapType()); in mappingManagerInitialized() 661 m_map->setActiveMapType(m_activeMapType->mapType()); in mappingManagerInitialized() 2249 void QDeclarativeGeoMap::setActiveMapType(QDeclarativeGeoMapType *mapType) in setActiveMapType() argument 2251 if (m_activeMapType->mapType() != mapType->mapType()) { in setActiveMapType() 2253 if (mapType->mapType().pluginName() == m_plugin->name().toLatin1()) { in setActiveMapType() 2254 m_map->setActiveMapType(mapType->mapType()); in setActiveMapType() [all …]
|
| H A D | qdeclarativegeomaptype_p.h | 113 QDeclarativeGeoMapType(const QGeoMapType mapType, QObject *parent = 0); 124 const QGeoMapType mapType() { return mapType_; } in mapType() function
|
| H A D | qdeclarativegeomap_p.h | 115 void setActiveMapType(QDeclarativeGeoMapType *mapType);
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/labs/ |
| H A D | qgeotiledmaplabs.cpp | 70 void changeActiveMapType(const QGeoMapType mapType) override; 151 void QGeoTiledMapLabsPrivate::changeActiveMapType(const QGeoMapType mapType) in changeActiveMapType() argument 154 QGeoTiledMapPrivate::changeActiveMapType(mapType); in changeActiveMapType()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/mapviewer/menus/ |
| H A D | MainMenu.qml | 63 signal selectMapType(variant mapType) 100 function createMapTypeMenuItem(mapType) 102 var item = addItem(mapType.name); 104 item.triggered.connect(function(){selectMapType(mapType)})
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/ |
| H A D | qgeotiledmap.cpp | 382 void QGeoTiledMapPrivate::changeActiveMapType(const QGeoMapType mapType) in changeActiveMapType() argument 387 m_visibleTiles->setMapType(mapType); in changeActiveMapType() 388 m_prefetchTiles->setMapType(mapType); in changeActiveMapType()
|
| H A D | qgeocameratiles_p.h | 75 void setMapType(const QGeoMapType &mapType);
|
| H A D | qgeotiledmap_p_p.h | 88 void changeActiveMapType(const QGeoMapType mapType) override;
|
| H A D | qgeomap_p_p.h | 98 …virtual void changeActiveMapType(const QGeoMapType mapType) = 0; // called by QGeoMap::setActiveMa…
|
| H A D | qgeomap_p.h | 117 void setActiveMapType(const QGeoMapType mapType);
|
| H A D | qgeocameratiles.cpp | 117 void QGeoCameraTiles::setMapType(const QGeoMapType &mapType) in setMapType() argument 119 if (d_ptr->m_mapType == mapType) in setMapType() 123 d_ptr->m_mapType = mapType; in setMapType()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/nokia/ |
| H A D | qgeotiledmappingmanagerengine_nokia.h | 69 QString evaluateCopyrightsText(const QGeoMapType mapType,
|
| H A D | qgeotiledmappingmanagerengine_nokia.cpp | 367 QString QGeoTiledMappingManagerEngineNokia::evaluateCopyrightsText(const QGeoMapType mapType, in evaluateCopyrightsText() argument 413 QList<CopyrightDesc> descriptorList = m_copyrights[ getBaseScheme(mapType.mapId()) ]; in evaluateCopyrightsText()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/mapboxgl/ |
| H A D | qgeomapmapboxgl_p.h | 99 void changeActiveMapType(const QGeoMapType mapType) override;
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/itemsoverlay/ |
| H A D | qgeomapitemsoverlay.cpp | 81 void changeActiveMapType(const QGeoMapType mapType) override;
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/mapviewer/ |
| H A D | mapviewer.qml | 213 mapTypeMenu.items[i].checked = mapTypeMenu.items[i].text === mapType.name 215 map.activeMapType = mapType
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723bs/hal/btc/ |
| H A D | halbtcoutsrc.h | 807 IN u1Byte mapType,
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723ds/hal/btc/ |
| H A D | halbtcoutsrc.h | 1594 IN u1Byte mapType,
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8822bs/hal/btc/ |
| H A D | halbtcoutsrc.h | 1566 IN u1Byte mapType,
|