OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getPossiblyExpired
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Dialer/tests/src/com/android/dialer/util/
ExpirableCacheTest.java
50
assertEquals(1, mCache.
getPossiblyExpired
("a").intValue());
51
assertEquals(2, mCache.
getPossiblyExpired
("b").intValue());
53
assertEquals(3, mCache.
getPossiblyExpired
("a").intValue());
57
assertNull(mCache.
getPossiblyExpired
("a"));
59
assertNull(mCache.
getPossiblyExpired
("a"));
64
assertEquals(1, mCache.
getPossiblyExpired
("a").intValue());
66
assertEquals(1, mCache.
getPossiblyExpired
("a").intValue());
/packages/apps/Dialer/src/com/android/dialer/util/
ExpirableCache.java
71
* {@link #
getPossiblyExpired
(Object)} method. If interested only in non-expired values, one should
166
* If not interested in whether the value is expired, use {@link #
getPossiblyExpired
(Object)}
183
* within the {@link CachedValue} and not call {@link #
getPossiblyExpired
(Object)} to get the
189
public V
getPossiblyExpired
(K key) {
/packages/apps/Dialer/src/com/android/dialer/contactinfo/
ContactInfoCache.java
203
ContactInfo existingInfo = mCache.
getPossiblyExpired
(numberCountryIso);
Completed in 937 milliseconds