Home | History | Annotate | Download | only in aapt

Lines Matching refs:assets

193         AssetManager assets;
194 if (!assets.addAssetPath(String8(zipFileName), NULL)) {
195 fprintf(stderr, "ERROR: list -a failed because assets could not be loaded\n");
199 const ResTable& res = assets.getResources(false);
209 Asset* manifestAsset = assets.openNonAsset("AndroidManifest.xml",
430 Vector<String8> getNfcAidCategories(AssetManager& assets, String8 xmlPath, bool offHost,
433 Asset* aidAsset = assets.openNonAsset(xmlPath, Asset::ACCESS_BUFFER);
507 AssetManager assets;
509 if (!assets.addAssetPath(String8(filename), &assetsCookie)) {
510 fprintf(stderr, "ERROR: dump failed because assets could not be loaded\n");
530 assets.setConfiguration(config);
532 const ResTable& res = assets.getResources(false);
556 asset = assets.openNonAsset(resname, Asset::ACCESS_BUFFER);
583 asset = assets.openNonAsset(resname, Asset::ACCESS_BUFFER);
601 asset = assets.openNonAsset("AndroidManifest.xml",
903 assets.setLocale(localeStr != NULL ? localeStr : "");
923 assets.setConfiguration(tmpConfig);
929 assets.setConfiguration(config);
1348 Vector<String8> categories = getNfcAidCategories(assets, xmlPath,
1713 AssetDir* dir = assets.openNonAssetDir(assetsCookie, "lib");
1882 sp<AaptAssets> assets;
1918 // Load the assets.
1919 assets = new AaptAssets();
1921 // Set up the resource gathering in assets if we're going to generate
1927 assets->setFullResPaths(resPathStore);
1929 assets->setFullAssetPaths(assetPathStore);
1932 err = assets->slurpFromArgs(bundle);
1938 assets->print(String8());
1943 err = buildResources(bundle, assets);
1956 assets->applyJavaSymbols();
1982 if (!assets->havePrivateSymbols()) {
1986 err = writeResourceSymbols(bundle, assets, assets->getPackage(), true);
1989 err = writeResourceSymbols(bundle, assets, customPkg, true);
2003 err = writeResourceSymbols(bundle, assets, String8(packageString), true);
2012 err = writeResourceSymbols(bundle, assets, assets->getPackage(), false);
2016 err = writeResourceSymbols(bundle, assets, assets->getSymbolsPrivatePackage(), true);
2023 err = writeProguardFile(bundle, assets);
2030 err = writeAPK(bundle, assets, String8(outputAPKFile));
2047 err = writeDependencyPreReqs(bundle, assets, fp, includeRaw);
2048 // Also manually add the AndroidManifeset since it's not under res/ or assets/