Home
last modified time | relevance | path

Searched refs:SetApkAssets (Results 1 – 15 of 15) sorted by relevance

/frameworks/base/libs/androidfw/tests/
DAssetManager2_test.cpp117 assetmanager.SetApkAssets({basic_assets_}); in TEST_F()
141 assetmanager.SetApkAssets({basic_assets_, basic_de_fr_assets_}); in TEST_F()
162 assetmanager.SetApkAssets({lib_two_assets_, lib_one_assets_, libclient_assets_}); in TEST_F()
197 assetmanager.SetApkAssets({appaslib_assets_}); in TEST_F()
208 assetmanager.SetApkAssets({overlayable_assets_, overlay_assets_, lib_one_assets_}); in TEST_F()
227 assetmanager.SetApkAssets({lib_one_assets_}); in TEST_F()
236 assetmanager.SetApkAssets({basic_de_fr_assets_}); in TEST_F()
245 assetmanager.SetApkAssets({basic_de_fr_assets_}); in TEST_F()
254 assetmanager.SetApkAssets({basic_assets_}); in TEST_F()
281 assetmanager.SetApkAssets({lib_two_assets_, lib_one_assets_, libclient_assets_}); in TEST_F()
[all …]
DIdmap_test.cpp79 asset_manager.SetApkAssets({system_assets_, overlayable_assets_, overlay_assets_}); in TEST_F()
90 asset_manager.SetApkAssets({system_assets_, overlayable_assets_, overlay_assets_}); in TEST_F()
101 asset_manager.SetApkAssets({system_assets_, overlayable_assets_, overlay_assets_}); in TEST_F()
112 asset_manager.SetApkAssets({system_assets_, overlayable_assets_, overlay_assets_}); in TEST_F()
123 asset_manager.SetApkAssets({system_assets_, overlayable_assets_, overlay_assets_}); in TEST_F()
134 asset_manager.SetApkAssets({system_assets_, overlayable_assets_, overlay_assets_}); in TEST_F()
145 asset_manager.SetApkAssets({system_assets_, overlayable_assets_, overlay_assets_}); in TEST_F()
183 asset_manager.SetApkAssets({system_assets_, overlayable_assets_, overlay_assets_}); in TEST_F()
199 asset_manager.SetApkAssets({overlayable_assets_, loader_assets, overlay_assets_}); in TEST_F()
DTheme_test.cpp65 assetmanager.SetApkAssets({style_assets_}); in TEST_F()
75 assetmanager.SetApkAssets({style_assets_}); in TEST_F()
95 assetmanager.SetApkAssets({style_assets_}); in TEST_F()
124 assetmanager.SetApkAssets({style_assets_}); in TEST_F()
133 assetmanager.SetApkAssets({style_assets_}); in TEST_F()
163 assetmanager.SetApkAssets({style_assets_}); in TEST_F()
193 assetmanager.SetApkAssets({lib_two_assets_, lib_one_assets_, libclient_assets_}); in TEST_F()
218 assetmanager.SetApkAssets({style_assets_}); in TEST_F()
255 am.SetApkAssets({style_assets_}); in TEST_F()
258 am_night.SetApkAssets({style_assets_}); in TEST_F()
[all …]
DAssetManager2_bench.cpp43 assets.SetApkAssets({apk}); in BM_AssetManagerLoadAssets()
66 assets.SetApkAssets({apk}); in BM_AssetManagerLoadFrameworkAssets()
139 assets.SetApkAssets({apk}); in BM_AssetManagerGetBag()
191 assets.SetApkAssets({apk}); in BM_AssetManagerGetResourceLocales()
227 assets.SetApkAssets({apk}); in BM_AssetManagerSetConfigurationFramework()
DTheme_bench.cpp38 assets.SetApkAssets({apk}); in BM_ThemeApplyStyleFramework()
68 assets.SetApkAssets({apk}); in BM_ThemeGetAttribute()
DAttributeResolution_bench.cpp46 assetmanager.SetApkAssets({styles_apk}); in BM_ApplyStyle()
95 assetmanager.SetApkAssets({framework_apk, basic_apk}); in BM_ApplyStyleFramework()
DBenchmarkHelpers.cpp67 assetmanager.SetApkAssets(apk_assets); in GetResourceBenchmark()
DAttributeResolution_test.cpp39 assetmanager_.SetApkAssets({styles_assets_}); in SetUp()
72 assetmanager.SetApkAssets({apk_assets}); in TEST()
/frameworks/base/cmds/idmap2/tests/
DResourceUtilsTests.cpp41 am_.SetApkAssets({apk_assets_}); in SetUp()
/frameworks/base/libs/androidfw/include/androidfw/
DAssetManager2.h125 bool SetApkAssets(ApkAssetsList apk_assets, bool invalidate_caches = true);
126 bool SetApkAssets(std::initializer_list<ApkAssetsPtr> apk_assets, bool invalidate_caches = true);
/frameworks/base/startop/view_compiler/
Dapk_layout_compiler.cc86 resources.SetApkAssets({assets}); in CompileApkAssetsLayouts()
/frameworks/base/libs/androidfw/
DAssetManager2.cpp97 SetApkAssets(apk_assets, false); in AssetManager2()
100 bool AssetManager2::SetApkAssets(ApkAssetsList apk_assets, bool invalidate_caches) { in SetApkAssets() function in android::AssetManager2
109 bool AssetManager2::SetApkAssets(std::initializer_list<ApkAssetsPtr> apk_assets, in SetApkAssets() function in android::AssetManager2
111 return SetApkAssets(ApkAssetsList(apk_assets.begin(), apk_assets.size()), invalidate_caches); in SetApkAssets()
/frameworks/base/tools/aapt2/process/
DSymbolTable.cpp225 asset_manager_.SetApkAssets(apk_assets_); in AddAssetPath()
/frameworks/base/cmds/idmap2/libidmap2/
DResourceContainer.cpp287 if (!state.am->SetApkAssets({state.apk_assets})) { in Initialize()
/frameworks/base/core/jni/
Dandroid_util_AssetManager.cpp346 assetmanager->SetApkAssets(apk_assets, invalidate_caches); in NativeSetApkAssets()