Searched refs:entryName (Results 1 - 25 of 36) sorted by relevance

12

/external/proguard/src/proguard/
H A DDataEntryReaderFactory.java51 String entryName = classPathEntry.getName();
52 boolean isJar = endsWithIgnoreCase(entryName, ".jar");
53 boolean isWar = endsWithIgnoreCase(entryName, ".war");
54 boolean isEar = endsWithIgnoreCase(entryName, ".ear");
55 boolean isZip = endsWithIgnoreCase(entryName, ".zip");
H A DDataEntryWriterFactory.java68 String entryName = classPathEntry.getName();
69 boolean isJar = endsWithIgnoreCase(entryName, ".jar");
70 boolean isWar = endsWithIgnoreCase(entryName, ".war");
71 boolean isEar = endsWithIgnoreCase(entryName, ".ear");
72 boolean isZip = endsWithIgnoreCase(entryName, ".zip");
86 " [" + entryName + "]" +
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
H A DJarEntryTest.java40 private final String entryName = "foo/bar/A.class"; field in class:JarEntryTest
71 JarEntry newJarEntry = new JarEntry(jarFile.getJarEntry(entryName));
88 zipEntry = jarFile.getEntry(entryName);
92 assertEquals("Wrong entry constructed--wrong name", entryName, jarEntry
H A DJarOutputStreamTest.java47 final String entryName = "foo/bar/execjartest/MainClass.class";
69 jout.putNextEntry(new JarEntry(entryName));
H A DJarFileTest.java70 private final String entryName = "foo/bar/A.class"; field in class:JarFileTest
142 entryName).getSize());
175 entryName).getSize());
H A DJarInputStreamTest.java41 private final String entryName = "foo/bar/A.class"; field in class:JarInputStreamTest
66 if (je.getName().equals(entryName)) {
/external/icu4c/common/
H A Ducmndata.c70 const char *entryName; member in struct:__anon18146
183 if(0==strcmpAfterPrefix(s, toc[0].entryName, &startPrefixLength)) {
188 if(0==strcmpAfterPrefix(s, toc[limit].entryName, &limitPrefixLength)) {
194 int32_t cmp=strcmpAfterPrefix(s, toc[i].entryName, &prefixLength);
280 fprintf(stderr, "\tx%d: %s\n", number, toc->entry[number].entryName);
287 fprintf(stderr, "%s: Found.\n", toc->entry[number].entryName);
/external/chromium_org/third_party/icu/source/common/
H A Ducmndata.c70 const char *entryName; member in struct:__anon10833
182 fprintf(stderr, "\tx%d: %s\n", start, toc->entry[start].entryName);
198 strResult = uprv_strcmp(name, toc->entry[number].entryName);
207 fprintf(stderr, "%s: Found.\n", toc->entry[number].entryName);
/external/chromium_org/third_party/icu/source/tools/pkgdata/
H A Dpkgtypes.h113 const char *entryName; /* special entrypoint name */ member in struct:UPKGOptions_
H A Dpkgdata.cpp431 o.entryName = options[ENTRYPOINT].value;
433 o.entryName = o.cShortName;
672 writeAssemblyCode(datFileNamePath, o->tmpDir, o->entryName, NULL, gencFilePath);
696 writeObjectCode(datFileNamePath, o->tmpDir, o->entryName, NULL, NULL, gencFilePath);
1309 createCommonDataFile(o->tmpDir, o->shortName, o->entryName, NULL, o->srcDir, o->comment, o->fileListFiles->str, 0, TRUE, o->verbose, gencmnFile);
1454 uprv_strcat(staticLibFilePath, o->entryName);
1488 uprv_strcat(dllFilePath, o->entryName);
1582 sprintf(tmpbuffer, "%s%s ", o->entryName, UDATA_CMN_INTERMEDIATE_SUFFIX);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.jarprocessor_1.0.200.v20100503a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.metadata.repository_1.1.0.v20100513.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.artifact.repository_1.1.1.R36x_v20100901.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.update.configurator_3.3.100.v20100512.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/icu4c/tools/pkgdata/
H A Dpkgtypes.h113 const char *entryName; /* special entrypoint name */ member in struct:UPKGOptions_
H A Dpkgdata.cpp425 o.entryName = options[ENTRYPOINT].value;
427 o.entryName = o.cShortName;
690 writeAssemblyCode(datFileNamePath, o->tmpDir, o->entryName, NULL, gencFilePath);
722 writeObjectCode(datFileNamePath, o->tmpDir, o->entryName, NULL, NULL, gencFilePath);
1458 createCommonDataFile(o->tmpDir, o->shortName, o->entryName, NULL, o->srcDir, o->comment, o->fileListFiles->str, 0, TRUE, o->verbose, gencmnFile);
1656 uprv_strcat(dllFilePath, o->entryName);
1788 sprintf(tmpbuffer, "%s%s ", o->entryName, UDATA_CMN_INTERMEDIATE_SUFFIX);
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dpkg_genc.c60 getOutFilename(const char *inFilename, const char *destdir, char *outFilename, char *entryName, const char *newSuffix, const char *optFilename);
569 getOutFilename(const char *inFilename, const char *destdir, char *outFilename, char *entryName, const char *newSuffix, const char *optFilename) { argument
589 uprv_strcpy(entryName, inFilename);
602 *outFilename++=*entryName++='_';
606 *outFilename++=*entryName++=*inFilename++;
611 *outFilename++=*entryName++='_';
616 *outFilename++=*entryName++=*inFilename++;
619 *entryName=0;
/external/icu4c/tools/toolutil/
H A Dpkg_genc.c56 getOutFilename(const char *inFilename, const char *destdir, char *outFilename, char *entryName, const char *newSuffix, const char *optFilename);
571 getOutFilename(const char *inFilename, const char *destdir, char *outFilename, char *entryName, const char *newSuffix, const char *optFilename) { argument
591 uprv_strcpy(entryName, inFilename);
604 *outFilename++=*entryName++='_';
608 *outFilename++=*entryName++=*inFilename++;
613 *outFilename++=*entryName++='_';
618 *outFilename++=*entryName++=*inFilename++;
621 *entryName=0;
/external/chromium_org/third_party/icu/source/tools/icuswap/
H A Dicuswap.cpp488 char *entryName; local
491 entryName=(char *)inBytes+ds->readUInt32(inEntries[i].nameOffset);
493 if(0==uprv_memcmp(entryName, inPkgName, inPkgNameLength)) {
494 uprv_memcpy(entryName, outPkgName, inPkgNameLength);
/external/icu4c/tools/icuswap/
H A Dicuswap.cpp488 char *entryName; local
491 entryName=(char *)inBytes+ds->readUInt32(inEntries[i].nameOffset);
493 if(0==uprv_memcmp(entryName, inPkgName, inPkgNameLength)) {
494 uprv_memcpy(entryName, outPkgName, inPkgNameLength);
/external/kernel-headers/original/linux/
H A Dncp.h156 __u8 entryName[256]; member in struct:nw_info_struct
157 /* libncp may depend on there being nothing after entryName */
/external/llvm/lib/Analysis/
H A DRegionInfo.cpp215 std::string entryName; local
218 raw_string_ostream OS(entryName);
222 entryName = getEntry()->getName();
234 return entryName + " => " + exitName;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/lib/
H A Dpdebuild-ant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/internal/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-nodeps.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 355 milliseconds

12