Lines Matching defs:files

4 // Build resource files from raw assets.
219 fprintf(stderr, "warning: Multiple AndroidManifest.xml files found, using %s\n",
391 const DefaultKeyedVector<AaptGroupEntry, sp<AaptFile> >& files
394 if (files.size() == 0) {
398 String8 resType = files.valueAt(0)->getResourceType();
419 for (size_t j=0; j<files.size(); j++) {
421 files.valueAt(j)->getSourceFile().string(),
422 files.keyAt(j).toDirName(String8()).string(),
424 status_t err = existingGroup->addFile(files.valueAt(j));
580 // Replace any base level files in this category with any found from the overlay
1047 fprintf(stdout, "Crunched %d PNG files to update cache\n", (int)numFiles);
1197 // now go through any resource overlays and collect their files
1206 // apply the overlay files to the base set
1348 // Finally, we can now we can compile XML files, which may reference
2824 fprintf(stderr, "warning: Multiple AndroidManifest.xml files found, using %s\n",
3006 // tag:attribute pairs that should be checked in layout files.
3012 // tag:attribute pairs that should be checked in xml files.
3017 // tag:attribute pairs that should be checked in transition files.
3050 const DefaultKeyedVector<AaptGroupEntry, sp<AaptFile> >& files = group->getFiles();
3051 const size_t M = files.size();
3053 err = writeProguardForXml(keep, files.valueAt(j), startTags, tagAttrPairs);
3114 status_t writePathsToFile(const sp<FilePathStore>& files, FILE* fp)
3117 for (size_t file_i = 0; file_i < files->size(); ++file_i) {
3119 fprintf(fp, "%s \\\n", files->itemAt(file_i).string());