Searched refs:fileCache (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicDirectoryModel.java47 private Vector<File> fileCache = new Vector<File>(50); field in class:BasicDirectoryModel
96 synchronized(fileCache) {
106 synchronized(fileCache) {
117 File f = fileCache.get(i);
156 synchronized(fileCache) {
172 return fileCache.size();
176 return fileCache.contains(o);
180 return fileCache.indexOf(o);
184 return fileCache.get(index);
248 // run through the file list, add directories and selectable files to fileCache
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFileSystemModel.java48 Vector<SortableFile> fileCache = null; field in class:AquaFileSystemModel
107 if (fileCache != null) {
108 final int lastRow = fileCache.size();
109 fileCache = null;
127 for (int i = 0; i < fileCache.size(); i++) {
128 final SortableFile sf = fileCache.elementAt(i);
172 fileCache = new Vector<SortableFile>(50);
194 if (fileCache != null) {
195 return fileCache.size();
201 // SAK: Part of fix for 3168263. The fileCache contain
[all...]
/openjdk7/jdk/src/solaris/classes/sun/net/www/protocol/jar/
H A DJarFileFactory.java46 private static final HashMap<String, JarFile> fileCache = new HashMap<>(); field in class:JarFileFactory
88 fileCache.put(URLUtil.urlNoFragString(url), local_result);
116 fileCache.remove(URLUtil.urlNoFragString(urlRemoved));
122 JarFile result = fileCache.get(URLUtil.urlNoFragString(url));
/openjdk7/jdk/src/windows/classes/sun/net/www/protocol/jar/
H A DJarFileFactory.java46 private static final HashMap<String, JarFile> fileCache = new HashMap<>(); field in class:JarFileFactory
98 fileCache.put(URLUtil.urlNoFragString(url), local_result);
126 fileCache.remove(URLUtil.urlNoFragString(urlRemoved));
132 JarFile result = fileCache.get(URLUtil.urlNoFragString(url));

Completed in 53 milliseconds