Searched refs:cachedValue (Results 1 – 3 of 3) 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()
647 final Boolean cachedValue = mValidSpellingWordReadCache.get(word); in isValidSpellingWord() local648 if (cachedValue != null) { in isValidSpellingWord()649 return cachedValue; in isValidSpellingWord()