Lines Matching defs:files
4 // Build resource files from raw assets.
224 fprintf(stderr, "warning: Multiple AndroidManifest.xml files found, using %s\n",
401 const DefaultKeyedVector<AaptGroupEntry, sp<AaptFile> >& files
404 if (files.size() == 0) {
408 String8 resType = files.valueAt(0)->getResourceType();
435 for (size_t j=0; j<files.size(); j++) {
438 files.valueAt(j)->getSourceFile().string(),
439 files.keyAt(j).toDirName(String8()).string(),
442 existingGroup->addFile(files.valueAt(j));
602 // Replace any base level files in this category with any found from the overlay
1157 fprintf(stdout, "Crunched %d PNG files to update cache\n", (int)numFiles);
1318 // now go through any resource overlays and collect their files
1327 // apply the overlay files to the base set
1481 // Finally, we can now we can compile XML files, which may reference
2993 fprintf(stderr, "warning: Multiple AndroidManifest.xml files found, using %s\n",
3200 // tag:attribute pairs that should be checked in layout files.
3206 // tag:attribute pairs that should be checked in xml files.
3211 // tag:attribute pairs that should be checked in transition files.
3243 const DefaultKeyedVector<AaptGroupEntry, sp<AaptFile> >& files = group->getFiles();
3244 const size_t M = files.size();
3246 err = writeProguardForXml(keep, files.valueAt(j), startTags, tagAttrPairs);
3332 status_t writePathsToFile(const sp<FilePathStore>& files, FILE* fp)
3335 for (size_t file_i = 0; file_i < files->size(); ++file_i) {
3337 fprintf(fp, "%s \\\n", files->itemAt(file_i).string());