Searched refs:cachedValue (Results 1 – 7 of 7) 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()
100 final V cachedValue = get(key); in getOrCompute() local101 if (cachedValue != null) { in getOrCompute()102 return cachedValue; in getOrCompute()
526 List<WindowBounds> cachedValue = getCurrentBounds(); in Info() local529 if (cachedValue == null) { in Info()536 cachedValue = getCurrentBounds(); in Info()537 if (cachedValue == null) { in Info()544 if (cachedValue != null) { in Info()546 WindowBounds expectedBounds = cachedValue.get(displayInfo.rotation); in Info()548 List<WindowBounds> clone = new ArrayList<>(cachedValue); in Info()
122 String cachedValue = in logAdServicesFlagsUpdateEvent() local124 if (!changedValue.equals(cachedValue)) { in logAdServicesFlagsUpdateEvent()
1186 final StatsResult cachedValue = cache.putIfAbsent(key, stats); in fetchStatsWithCache() local1187 if (cachedValue != null) { in fetchStatsWithCache()1191 return cachedValue; in fetchStatsWithCache()
647 final Boolean cachedValue = mValidSpellingWordReadCache.get(word); in isValidSpellingWord() local648 if (cachedValue != null) { in isValidSpellingWord()649 return cachedValue; in isValidSpellingWord()