Home
last modified time | relevance | path

Searched refs:LoadingMethod (Results 1 – 4 of 4) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/storage/
H A Dresource.hpp35 enum class LoadingMethod : uint8_t { enum in mbgl::Resource
48 LoadingMethod loadingMethod_ = LoadingMethod::All)
55 bool hasLoadingMethod(LoadingMethod method);
65 LoadingMethod = LoadingMethod::All);
74 LoadingMethod loadingMethod;
87 MBGL_CONSTEXPR Resource::LoadingMethod operator|(Resource::LoadingMethod a, Resource::LoadingMethod in operator |()
88 return Resource::LoadingMethod(mbgl::underlying_type(a) | mbgl::underlying_type(b)); in operator |()
91 MBGL_CONSTEXPR Resource::LoadingMethod& operator|=(Resource::LoadingMethod& a, Resource::LoadingMet… in operator |=()
95 MBGL_CONSTEXPR Resource::LoadingMethod operator&(Resource::LoadingMethod a, Resource::LoadingMethod in operator &()
96 return Resource::LoadingMethod(mbgl::underlying_type(a) & mbgl::underlying_type(b)); in operator &()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/tile/
H A Dtile_loader_impl.hpp26 Resource::LoadingMethod::CacheOnly)), in TileLoader()
53 resource.loadingMethod = Resource::LoadingMethod::CacheOnly; in loadFromCache()
88 if (resource.loadingMethod == Resource::LoadingMethod::NetworkOnly && request) { in makeOptional()
119 resource.loadingMethod = Resource::LoadingMethod::NetworkOnly; in loadFromNetwork()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/
H A Ddefault_file_source.cpp115 if (resource.hasLoadingMethod(Resource::LoadingMethod::Cache)) { in request()
118 if (resource.loadingMethod == Resource::LoadingMethod::CacheOnly) { in request()
149 if (resource.hasLoadingMethod(Resource::LoadingMethod::Network)) { in request()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/storage/
H A Dresource.cpp100 LoadingMethod loadingMethod) { in tile()