OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getCachedValue
(Results
1 - 4
of
4
) sorted by null
/packages/apps/Dialer/tests/src/com/android/dialer/util/
ExpirableCacheTest.java
83
assertNull(mCache.
getCachedValue
("a"));
85
assertNull(mCache.
getCachedValue
("a"));
90
assertFalse("Should not be expired", mCache.
getCachedValue
("a").isExpired());
92
assertTrue("Should be expired", mCache.
getCachedValue
("a").isExpired());
99
assertFalse("Should not be expired", mCache.
getCachedValue
("a").isExpired());
113
CachedValue<Integer> cachedValue = mCache.
getCachedValue
("a");
120
CachedValue<Integer> expiredCachedValue = mCache.
getCachedValue
("a");
/packages/apps/Dialer/src/com/android/dialer/util/
ExpirableCache.java
43
* CachedValue<Contact> cachedContact = mContactCache.
getCachedValue
(phoneNumber);
173
public CachedValue<V>
getCachedValue
(K key) {
181
* Use {@link #
getCachedValue
(Object)} to achieve that instead. However, if using
182
* {@link #
getCachedValue
(Object)} to determine if an item is expired, one should use the item
190
CachedValue<V> cachedValue =
getCachedValue
(key);
205
CachedValue<V> cachedValue =
getCachedValue
(key);
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
AccountTypeManager.java
675
return mInvitableAccountTypeCache.
getCachedValue
();
[
all
...]
/packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogAdapter.java
552
mContactInfoCache.
getCachedValue
(numberCountryIso);
[
all
...]
Completed in 181 milliseconds