Home | History | Annotate | Download | only in aapt

Lines Matching refs:storageName

298     String8 storageName(group->getPath());
299 storageName.convertToResPath();
317 int fileNameLen = storageName.length();
320 && (0 == strcmp(storageName.string() + (fileNameLen - excludeExtensionLen),
322 fprintf(stderr, "warning: '%s' not added to Zip\n", storageName.string());
326 if (strcasecmp(storageName.getPathExtension().string(), ".gz") == 0) {
328 storageName = storageName.getBasePath();
332 entry = zip->getEntryByName(storageName.string());
352 printf(" (removing old '%s')\n", storageName.string());
359 printf(" (not updating '%s')\n", storageName.string());
374 result = zip->addGzip(file->getSourceFile().string(), storageName.string(), &entry);
378 if (!okayToCompress(bundle, storageName)) {
381 result = zip->add(file->getSourceFile().string(), storageName.string(), compressionMethod,
384 result = zip->add(file->getData(), file->getSize(), storageName.string(),
389 printf(" '%s'%s", storageName.string(), fromGzip ? " (from .gz)" : "");
460 const char* storageName = entry->getFileName();
461 if (endsWith(storageName, ".class")) {
467 storageName);
470 out->add(data, size, storageName, compressionMethod, NULL);