OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getCachedValue
(Results
1 - 6
of
6
) 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/UnifiedEmail/src/com/android/mail/browse/
ConversationCursor.java
[
all
...]
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
AccountTypeManager.java
665
return mInvitableAccountTypeCache.
getCachedValue
();
[
all
...]
/packages/apps/UnifiedEmail/assets/
script.js
76
function
getCachedValue
(div, property, attrName) {
782
initialH:
getCachedValue
(msgBodyDiv, "offsetHeight", "data-initial-height"),
/packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogAdapter.java
575
mContactInfoCache.
getCachedValue
(numberCountryIso);
[
all
...]
Completed in 265 milliseconds