Searched refs:ZipFileIndex (Results 1 - 5 of 5) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DZipFileIndexCache.java39 /** A cache for ZipFileIndex objects. */
42 private final Map<File, ZipFileIndex> map =
43 new HashMap<File, ZipFileIndex>();
62 * Returns a list of all ZipFileIndex entries
64 * @return A list of ZipFileIndex entries, or an empty list
66 public List<ZipFileIndex> getZipFileIndexes() {
71 * Returns a list of all ZipFileIndex entries
73 * @param openedOnly If true it returns a list of only opened ZipFileIndex entries, otherwise
75 * @return A list of ZipFileIndex entries, or an empty list
77 public synchronized List<ZipFileIndex> getZipFileIndexe
[all...]
H A DZipFileIndexArchive.java56 private final ZipFileIndex zfIndex;
59 public ZipFileIndexArchive(JavacFileManager fileManager, ZipFileIndex zdir) throws IOException {
75 ZipFileIndex.Entry entry = zfIndex.getZipIndexEntry(fullZipFileName);
94 * A subclass of JavaFileObject representing zip entries using the com.sun.tools.javac.file.ZipFileIndex implementation.
104 ZipFileIndex zfIndex;
108 ZipFileIndex.Entry entry;
119 ZipFileIndexFileObject(JavacFileManager fileManager, ZipFileIndex zfIndex, ZipFileIndex.Entry entry, File zipFileName) {
H A DZipFileIndex.java80 public class ZipFileIndex { class
94 // ZipFileIndex data entries
122 ZipFileIndex(File zipFile, RelativeDirectory symbolFilePrefix, boolean writeIndex, method in class:ZipFileIndex
142 return "ZipFileIndex[" + zipFile + "]";
163 * Here we need to make sure that the ZipFileIndex is valid. Check the timestamp of the file and
247 * Returns a javac List of filenames within a directory in the ZipFileIndex.
491 ZipFileIndex zipFileIndex = null;
493 public ZipDirectory(RandomAccessFile zipRandomFile, long start, long end, ZipFileIndex index) throws IOException {
717 private ZipFileIndex zipFileIndex;
721 DirectoryEntry(RelativeDirectory dirName, ZipFileIndex inde
[all...]
H A DJavacFileManager.java484 if (ioe instanceof ZipFileIndex.ZipFormatException) {
569 } catch (ZipFileIndex.ZipFormatException zfe) {
/openjdk7/langtools/test/tools/javac/
H A DT6725036.java39 import com.sun.tools.javac.file.ZipFileIndex;
62 ZipFileIndex zfi = zfic.getZipFileIndex(rt_jar, null, false, null, false);

Completed in 1060 milliseconds