Searched defs:Cache (Results 1 - 5 of 5) sorted by relevance

/libcore/ojluni/src/main/java/sun/nio/cs/
H A DThreadLocalCoders.java41 private static abstract class Cache { class in class:ThreadLocalCoders
47 Cache(int size) { method in class:ThreadLocalCoders.Cache
89 private static Cache decoderCache = new Cache(CACHE_SIZE) {
113 private static Cache encoderCache = new Cache(CACHE_SIZE) {
/libcore/ojluni/src/main/java/java/nio/charset/
H A DCoderResult.java195 private static abstract class Cache { class in class:CoderResult
221 private static Cache malformedCache
222 = new Cache() {
237 private static Cache unmappableCache
238 = new Cache() {
/libcore/ojluni/src/main/java/sun/util/locale/
H A DBaseLocale.java40 private static final Cache CACHE = new Cache();
290 private static class Cache extends LocaleObjectCache<Key, BaseLocale> { class in class:BaseLocale
292 public Cache() { method in class:BaseLocale.Cache
/libcore/ojluni/src/main/java/sun/security/util/
H A DCache.java60 * Cache sizing: the memory cache is implemented on top of a LinkedHashMap.
72 public abstract class Cache<K,V> { class
74 protected Cache() { method in class:Cache
122 public static <K,V> Cache<K,V> newSoftMemoryCache(int size) {
131 public static <K,V> Cache<K,V> newSoftMemoryCache(int size, int timeout) {
139 public static <K,V> Cache<K,V> newHardMemoryCache(int size) {
147 public static <K,V> Cache<K,V> newNullCache() {
148 return (Cache<K,V>) NullCache.INSTANCE;
156 public static <K,V> Cache<K,V> newHardMemoryCache(int size, int timeout) {
203 class NullCache<K,V> extends Cache<
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DLocale.java485 static private final Cache LOCALECACHE = new Cache();
754 private static class Cache extends LocaleObjectCache<LocaleKey, Locale> { class in class:Locale
755 private Cache() { method in class:Locale.Cache

Completed in 980 milliseconds