OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:underlyingCursor
(Results
1 - 8
of
8
) sorted by null
/packages/apps/Email/tests/src/com/android/email/provider/
ContentCacheTests.java
268
Cursor
underlyingCursor
= getOneRowCursor();
269
Cursor cachedCursor1 = new CachedCursor(
underlyingCursor
, cache, "1");
270
Cursor cachedCursor2 = new CachedCursor(
underlyingCursor
, cache, "1");
271
assertEquals(2, ContentCache.sActiveCursors.getCount(
underlyingCursor
));
275
assertFalse(
underlyingCursor
.isClosed());
278
assertEquals(0, ContentCache.sActiveCursors.getCount(
underlyingCursor
));
280
assertTrue(
underlyingCursor
.isClosed());
282
underlyingCursor
= getOneRowCursor();
284
underlyingCursor
, "2", SIMPLE_PROJECTION, cache.getCacheToken("2"));
285
cachedCursor2 = new CachedCursor(
underlyingCursor
, cache, "2")
[
all
...]
/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
EABContactManager.java
654
Cursor
underlyingCursor
= query.runQuery(mResolver, CONTACT_COLUMNS, mBaseUri);
655
if (
underlyingCursor
== null) {
659
return new CursorTranslator(
underlyingCursor
, mBaseUri);
[
all
...]
/external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar
android-all-4.2.2_r1.2-robolectric-0.jar
android-all-4.3_r2-robolectric-0.jar
/prebuilts/misc/common/robolectric/lib/
android-all-4.1.2_r1-robolectric-0.jar
android-all-4.2.2_r1.2-robolectric-0.jar
android-all-4.3_r2-robolectric-0.jar
Completed in 371 milliseconds