Searched refs:cachedValue (Results 1 – 6 of 6) sorted by relevance
166 CachedValue<V> cachedValue = getCachedValue(key); in getPossiblyExpired() local167 return cachedValue == null ? null : cachedValue.getValue(); in getPossiblyExpired()180 CachedValue<V> cachedValue = getCachedValue(key); in get() local181 return cachedValue == null || cachedValue.isExpired() ? null : cachedValue.getValue(); in get()
40 final Float cachedValue = sTextHeightCache.get(key); in getCharHeight() local41 if (cachedValue != null) { in getCharHeight()42 return cachedValue; in getCharHeight()60 final Float cachedValue = sTextWidthCache.get(key); in getCharWidth() local61 if (cachedValue != null) { in getCharWidth()62 return cachedValue; in getCharWidth()
95 Drawable cachedValue = mCache.get(cacheKey); in loadIcon() local96 if (cachedValue != null) { in loadIcon()97 return immediateFuture(cachedValue != MISSING ? cachedValue : null); in loadIcon()
126 final NetworkStats.Entry cachedValue = get(iface, uid); in getOrCompute() local127 if (cachedValue != null) { in getOrCompute()128 return cachedValue; in getOrCompute()
410 List<WindowBounds> cachedValue = getCurrentBounds(); in Info() local413 if (cachedValue == null) { in Info()420 cachedValue = getCurrentBounds(); in Info()421 if (cachedValue == null) { in Info()428 if (cachedValue != null) { in Info()430 WindowBounds expectedBounds = cachedValue.get(displayInfo.rotation); in Info()432 List<WindowBounds> clone = new ArrayList<>(cachedValue); in Info()
647 final Boolean cachedValue = mValidSpellingWordReadCache.get(word); in isValidSpellingWord() local648 if (cachedValue != null) { in isValidSpellingWord()649 return cachedValue; in isValidSpellingWord()