HomeSort by relevance Sort by last modified time
    Searched refs:childCursor (Results 1 - 6 of 6) sorted by null

  /developers/build/prebuilts/gradle/DirectorySelection/Application/src/main/java/com/example/android/directoryselection/
DirectorySelectionFragment.java 173 Cursor childCursor = contentResolver.query(childrenUri, new String[]{
177 while (childCursor.moveToNext()) {
178 Log.d(TAG, "found child=" + childCursor.getString(0) + ", mime=" + childCursor
181 entry.fileName = childCursor.getString(0);
182 entry.mimeType = childCursor.getString(1);
188 closeQuietly(childCursor);
  /developers/samples/android/content/documentsUi/DirectorySelection/Application/src/main/java/com/example/android/directoryselection/
DirectorySelectionFragment.java 173 Cursor childCursor = contentResolver.query(childrenUri, new String[]{
177 while (childCursor.moveToNext()) {
178 Log.d(TAG, "found child=" + childCursor.getString(0) + ", mime=" + childCursor
181 entry.fileName = childCursor.getString(0);
182 entry.mimeType = childCursor.getString(1);
188 closeQuietly(childCursor);
  /development/samples/browseable/DirectorySelection/src/com.example.android.directoryselection/
DirectorySelectionFragment.java 173 Cursor childCursor = contentResolver.query(childrenUri, new String[]{
177 while (childCursor.moveToNext()) {
178 Log.d(TAG, "found child=" + childCursor.getString(0) + ", mime=" + childCursor
181 entry.fileName = childCursor.getString(0);
182 entry.mimeType = childCursor.getString(1);
188 closeQuietly(childCursor);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
MailboxUtilities.java 74 Cursor childCursor = resolver.query(Mailbox.CONTENT_URI,
77 if (childCursor == null) return;
79 while (childCursor.moveToNext()) {
83 long childId = childCursor.getLong(Mailbox.ID_PROJECTION_COLUMN);
88 childCursor.close();
  /packages/apps/Exchange/src/com/android/exchange/adapter/
FolderSyncParser.java 678 final Cursor childCursor = mContentResolver.query(Mailbox.CONTENT_URI,
682 if (childCursor != null) {
688 while (childCursor.moveToNext()) {
689 final long childId = childCursor.getLong(FIXUP_CHILD_ID_COLUMN);
696 childCursor.close();
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectSyncedCalendarsMultiAccountAdapter.java 407 Cursor childCursor = mChildrenCursors.get(accountType + "#" + account);
409 return childCursor;

Completed in 243 milliseconds