Searched refs:SIMPLE_PROJECTION (Results 1 – 1 of 1) sorted by relevance
/packages/apps/Email/tests/src/com/android/email/provider/ |
D | ContentCacheTests.java | 199 private static final String[] SIMPLE_PROJECTION = new String[] {"Foo"}; field in ContentCacheTests 202 MatrixCursor cursor = new MatrixCursorWithCachedColumns(SIMPLE_PROJECTION, 1); in getOneRowCursor() 209 ContentCache cache = new ContentCache("Name", SIMPLE_PROJECTION, 2); in testContentCacheRemoveEldestEntry() 215 cache.putCursor(cursor1, "1", SIMPLE_PROJECTION, token); in testContentCacheRemoveEldestEntry() 223 cache.putCursor(cursor1, "2", SIMPLE_PROJECTION, token); in testContentCacheRemoveEldestEntry() 227 Cursor cachedCursor = cache.getCachedCursor("1", SIMPLE_PROJECTION); in testContentCacheRemoveEldestEntry() 230 cachedCursor = cache.getCachedCursor("2", SIMPLE_PROJECTION); in testContentCacheRemoveEldestEntry() 243 cache.putCursor(cursor1, "3", SIMPLE_PROJECTION, token); in testContentCacheRemoveEldestEntry() 248 cachedCursor = cache.getCachedCursor("1", SIMPLE_PROJECTION); in testContentCacheRemoveEldestEntry() 251 cachedCursor = cache.getCachedCursor("2", SIMPLE_PROJECTION); in testContentCacheRemoveEldestEntry() [all …]
|