Home
last modified time | relevance | path

Searched refs:_typeCache (Results 1 – 2 of 2) sorted by relevance

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/
DTypeFactory.java127 protected final LRUMap<Object,JavaType> _typeCache; field in TypeFactory
165 _typeCache = typeCache; in TypeFactory()
177 _typeCache = typeCache; in TypeFactory()
191 LRUMap<Object,JavaType> typeCache = _typeCache; in withModifier()
215 return new TypeFactory(_typeCache, _parser, _modifiers, classLoader); in withClassLoader()
247 _typeCache.clear(); in clearCache()
1395 result = _typeCache.get(key); // ok, cache object is synced in _fromClass()
1460 _typeCache.putIfAbsent(key, result); // cache object syncs in _fromClass()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/type/
DTestTypeFactory.java641 assertEquals(0, tf._typeCache.size()); in testCacheClearing()
644 assertEquals(6, tf._typeCache.size()); in testCacheClearing()
646 assertEquals(0, tf._typeCache.size()); in testCacheClearing()