Searched refs:formatList (Results 1 - 3 of 3) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/impl/
H A DReadOnlyCatalog.java29 private List<Format> formatList; field in class:ReadOnlyCatalog
32 ReadOnlyCatalog(List<Format> formatList, Map<String,Format> formatMap) { argument
33 this.formatList = formatList;
43 Format format = formatList.get(formatId);
H A DPersistCatalog.java59 * version the formatList record is stored under this key and is converted
91 List<Format> formatList; field in class:PersistCatalog.Data
105 private volatile List<Format> formatList; field in class:PersistCatalog
108 * A map of the current/live formats in formatList, indexed by class name.
110 * <p>This field, like formatList, is volatile because it is reassigned
116 * A map of the latest formats (includes deleted formats) in formatList,
214 formatList = catalogData.formatList;
215 if (formatList == null) {
216 formatList
[all...]
H A DSimpleCatalog.java120 return new ArrayList<Format>(instance.formatList);
126 Format thisFormat = instance.formatList.get(i);
136 private List<SimpleFormat> formatList; field in class:SimpleCatalog
146 formatList = new ArrayList<SimpleFormat>(initCapacity);
150 formatList.add(null);
189 * Sets a format for which space in the formatList has been preallocated,
195 formatList.set(id, format);
204 SimpleFormat primitiveFormat = formatList.get(primitiveId);
205 SimpleFormat wrapperFormat = formatList.get(wrapperId);
216 format = formatList
[all...]

Completed in 49 milliseconds