Home
last modified time | relevance | path

Searched refs:getCachedValue (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Dialer/tests/src/com/android/dialer/util/
DExpirableCacheTest.java83 assertNull(mCache.getCachedValue("a")); in testGetCachedValue_NotExisting()
85 assertNull(mCache.getCachedValue("a")); in testGetCachedValue_NotExisting()
90 assertFalse("Should not be expired", mCache.getCachedValue("a").isExpired()); in testGetCachedValue_Expired()
92 assertTrue("Should be expired", mCache.getCachedValue("a").isExpired()); in testGetCachedValue_Expired()
99 assertFalse("Should not be expired", mCache.getCachedValue("a").isExpired()); in testGetChangedValue_PutAfterExpired()
113 CachedValue<Integer> cachedValue = mCache.getCachedValue("a"); in testComputingCache()
120 CachedValue<Integer> expiredCachedValue = mCache.getCachedValue("a"); in testComputingCache()
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
DConversationCursor.java968 private Object getCachedValue(int columnIndex) { in getCachedValue() method in ConversationCursor
970 return getCachedValue(uri, columnIndex); in getCachedValue()
973 private Object getCachedValue(String uri, int columnIndex) { in getCachedValue() method in ConversationCursor
1149 if (getCachedValue(DELETED_COLUMN_INDEX) instanceof Integer) continue; in moveToNext()
1167 if (getCachedValue(DELETED_COLUMN_INDEX) instanceof Integer) continue; in moveToPrevious()
1273 Object obj = getCachedValue(columnIndex); in getDouble()
1280 Object obj = getCachedValue(columnIndex); in getFloat()
1287 Object obj = getCachedValue(columnIndex); in getInt()
1294 Object obj = getCachedValue(columnIndex); in getLong()
1301 Object obj = getCachedValue(columnIndex); in getShort()
[all …]
/packages/apps/Dialer/src/com/android/dialer/util/
DExpirableCache.java173 public CachedValue<V> getCachedValue(K key) { in getCachedValue() method in ExpirableCache
190 CachedValue<V> cachedValue = getCachedValue(key); in getPossiblyExpired()
205 CachedValue<V> cachedValue = getCachedValue(key); in get()
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
DAccountTypeManager.java663 return mInvitableAccountTypeCache.getCachedValue(); in getUsableInvitableAccountTypes()
805 public Map<AccountTypeWithDataSet, AccountType> getCachedValue() { in getCachedValue() method in AccountTypeManagerImpl.InvitableAccountTypeCache
/packages/apps/UnifiedEmail/assets/
Dscript.js76 function getCachedValue(div, property, attrName) { function
/packages/apps/Dialer/src/com/android/dialer/calllog/
DCallLogAdapter.java722 mContactInfoCache.getCachedValue(numberCountryIso); in bindView()