HomeSort by relevance Sort by last modified time
    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/calllog/
CallLogAdapter.java 369 ContactInfo existingInfo = mContactInfoCache.getPossiblyExpired(numberCountryIso);
777 ContactInfo ci = mContactInfoCache.getPossiblyExpired(numberCountryIso);
    [all...]

Completed in 2552 milliseconds