Home
last modified time | relevance | path

Searched refs:childCursor (Results 1 – 2 of 2) sorted by relevance

/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/archives/
DReadableArchiveTest.java150 final Cursor childCursor = mArchive.queryChildDocuments( in testQueryChildDocument() local
153 assertTrue(childCursor.moveToFirst()); in testQueryChildDocument()
156 childCursor.getString(childCursor.getColumnIndexOrThrow( in testQueryChildDocument()
159 childCursor.getString(childCursor.getColumnIndexOrThrow( in testQueryChildDocument()
162 childCursor.getString(childCursor.getColumnIndexOrThrow( in testQueryChildDocument()
165 childCursor.getInt(childCursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); in testQueryChildDocument()
187 final Cursor childCursor = mArchive.queryChildDocuments( in testQueryChildDocument_NoDirs() local
190 assertTrue(childCursor.moveToFirst()); in testQueryChildDocument_NoDirs()
193 childCursor.getString(childCursor.getColumnIndexOrThrow( in testQueryChildDocument_NoDirs()
196 childCursor.getString(childCursor.getColumnIndexOrThrow( in testQueryChildDocument_NoDirs()
[all …]
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
DMailboxUtilities.java74 Cursor childCursor = resolver.query(Mailbox.CONTENT_URI, in setFlagsAndChildrensParentKey() local
77 if (childCursor == null) return; in setFlagsAndChildrensParentKey()
79 while (childCursor.moveToNext()) { in setFlagsAndChildrensParentKey()
83 long childId = childCursor.getLong(Mailbox.ID_PROJECTION_COLUMN); in setFlagsAndChildrensParentKey()
88 childCursor.close(); in setFlagsAndChildrensParentKey()