/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
D | BluetoothOppService.java | 452 int idColumn = cursor.getColumnIndexOrThrow(BluetoothShare._ID); in run() 561 String uriString = cursor.getString(cursor.getColumnIndexOrThrow(BluetoothShare.URI)); in insertShare() 571 cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare._ID)), in insertShare() 573 cursor.getString(cursor.getColumnIndexOrThrow(BluetoothShare.FILENAME_HINT)), in insertShare() 574 cursor.getString(cursor.getColumnIndexOrThrow(BluetoothShare._DATA)), in insertShare() 575 cursor.getString(cursor.getColumnIndexOrThrow(BluetoothShare.MIMETYPE)), in insertShare() 576 cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare.DIRECTION)), in insertShare() 577 cursor.getString(cursor.getColumnIndexOrThrow(BluetoothShare.DESTINATION)), in insertShare() 578 cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare.VISIBILITY)), in insertShare() 579 cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare.USER_CONFIRMATION)), in insertShare() [all …]
|
D | BluetoothOppUtility.java | 86 info.mID = cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare._ID)); in fillRecord() 87 info.mStatus = cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare.STATUS)); in fillRecord() 89 .getColumnIndexOrThrow(BluetoothShare.DIRECTION)); in fillRecord() 91 .getColumnIndexOrThrow(BluetoothShare.TOTAL_BYTES)); in fillRecord() 93 .getColumnIndexOrThrow(BluetoothShare.CURRENT_BYTES)); in fillRecord() 95 .getColumnIndexOrThrow(BluetoothShare.TIMESTAMP)); in fillRecord() 97 .getColumnIndexOrThrow(BluetoothShare.DESTINATION)); in fillRecord() 100 .getColumnIndexOrThrow(BluetoothShare._DATA)); in fillRecord() 103 .getColumnIndexOrThrow(BluetoothShare.FILENAME_HINT)); in fillRecord() 109 info.mFileUri = cursor.getString(cursor.getColumnIndexOrThrow(BluetoothShare.URI)); in fillRecord() [all …]
|
D | BluetoothOppTransferAdapter.java | 71 int status = cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare.STATUS)); in bindView() 72 int dir = cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare.DIRECTION)); in bindView() 86 cursor.getColumnIndexOrThrow(BluetoothShare.FILENAME_HINT)); in bindView() 95 int destinationColumnId = cursor.getColumnIndexOrThrow(BluetoothShare.DESTINATION); in bindView() 102 long totalBytes = cursor.getLong(cursor.getColumnIndexOrThrow(BluetoothShare.TOTAL_BYTES)); in bindView() 120 int dateColumnId = cursor.getColumnIndexOrThrow(BluetoothShare.TIMESTAMP); in bindView()
|
D | BluetoothOppNotification.java | 231 final int timestampIndex = cursor.getColumnIndexOrThrow(BluetoothShare.TIMESTAMP); in updateActiveNotification() 232 final int directionIndex = cursor.getColumnIndexOrThrow(BluetoothShare.DIRECTION); in updateActiveNotification() 233 final int idIndex = cursor.getColumnIndexOrThrow(BluetoothShare._ID); in updateActiveNotification() 234 final int totalBytesIndex = cursor.getColumnIndexOrThrow(BluetoothShare.TOTAL_BYTES); in updateActiveNotification() 235 final int currentBytesIndex = cursor.getColumnIndexOrThrow(BluetoothShare.CURRENT_BYTES); in updateActiveNotification() 236 final int dataIndex = cursor.getColumnIndexOrThrow(BluetoothShare._DATA); in updateActiveNotification() 237 final int filenameHintIndex = cursor.getColumnIndexOrThrow(BluetoothShare.FILENAME_HINT); in updateActiveNotification() 238 final int confirmIndex = cursor.getColumnIndexOrThrow(BluetoothShare.USER_CONFIRMATION); in updateActiveNotification() 239 final int destinationIndex = cursor.getColumnIndexOrThrow(BluetoothShare.DESTINATION); in updateActiveNotification() 390 final int timestampIndex = cursor.getColumnIndexOrThrow(BluetoothShare.TIMESTAMP); in updateCompletedNotification() [all …]
|
D | BluetoothOppTransferHistory.java | 130 mIdColumnId = mTransferCursor.getColumnIndexOrThrow(BluetoothShare._ID); in onCreate() 200 .getColumnIndexOrThrow(BluetoothShare.FILENAME_HINT)); in onCreateContextMenu() 235 int statusColumnId = mTransferCursor.getColumnIndexOrThrow(BluetoothShare.STATUS); in getClearableCount()
|
/packages/providers/PartnerBookmarksProvider/tests/src/com/android/providers/partnerbookmarks/ |
D | PartnerBookmarksProviderTest.java | 48 cursor.getColumnIndexOrThrow(PartnerBookmarksContract.Bookmarks.ID)); in countBookmarksInFolder() 50 cursor.getColumnIndexOrThrow(PartnerBookmarksContract.Bookmarks.PARENT)); in countBookmarksInFolder() 52 cursor.getColumnIndexOrThrow(PartnerBookmarksContract.Bookmarks.TYPE)) in countBookmarksInFolder() 55 cursor.getColumnIndexOrThrow(PartnerBookmarksContract.Bookmarks.URL)); in countBookmarksInFolder() 57 cursor.getColumnIndexOrThrow(PartnerBookmarksContract.Bookmarks.TITLE)); in countBookmarksInFolder()
|
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
D | DownloadStorageProvider.java | 274 cursor.getColumnIndexOrThrow(DownloadManager.COLUMN_MEDIA_TYPE)); in queryRecentDocuments() 276 cursor.getColumnIndexOrThrow(DownloadManager.COLUMN_MEDIAPROVIDER_URI)); in queryRecentDocuments() 329 final long id = cursor.getLong(cursor.getColumnIndexOrThrow(DownloadManager.COLUMN_ID)); in includeDownloadFromCursor() 333 cursor.getColumnIndexOrThrow(DownloadManager.COLUMN_TITLE)); in includeDownloadFromCursor() 335 cursor.getColumnIndexOrThrow(DownloadManager.COLUMN_DESCRIPTION)); in includeDownloadFromCursor() 337 cursor.getColumnIndexOrThrow(DownloadManager.COLUMN_MEDIA_TYPE)); in includeDownloadFromCursor() 343 cursor.getColumnIndexOrThrow(DownloadManager.COLUMN_TOTAL_SIZE_BYTES)); in includeDownloadFromCursor() 350 cursor.getColumnIndexOrThrow(DownloadManager.COLUMN_STATUS)); in includeDownloadFromCursor() 362 final long progress = cursor.getLong(cursor.getColumnIndexOrThrow( in includeDownloadFromCursor() 388 cursor.getColumnIndexOrThrow(DownloadManager.COLUMN_LAST_MODIFIED_TIMESTAMP)); in includeDownloadFromCursor() [all …]
|
D | OpenHelper.java | 138 return cursor.getInt(cursor.getColumnIndexOrThrow(Constants.UID)); in getOriginatingUid() 148 return cursor.getString(cursor.getColumnIndexOrThrow(column)); in getCursorString() 156 return new File(cursor.getString(cursor.getColumnIndexOrThrow(column))); in getCursorFile()
|
D | DownloadInfo.java | 114 cursor.getColumnIndexOrThrow(Downloads.Impl.RequestHeaders.COLUMN_HEADER); in readRequestHeaders() 116 cursor.getColumnIndexOrThrow(Downloads.Impl.RequestHeaders.COLUMN_VALUE); in readRequestHeaders() 137 int index = mCursor.getColumnIndexOrThrow(column); in getString() 143 return mCursor.getInt(mCursor.getColumnIndexOrThrow(column)); in getInt() 147 return mCursor.getLong(mCursor.getColumnIndexOrThrow(column)); in getLong()
|
/packages/apps/Calendar/src/com/android/calendar/event/ |
D | CreateEventDialogFragment.java | 277 int calendarOwnerIndex = cursor.getColumnIndexOrThrow(Calendars.OWNER_ACCOUNT); in setDefaultCalendarView() 278 int accountNameIndex = cursor.getColumnIndexOrThrow(Calendars.ACCOUNT_NAME); in setDefaultCalendarView() 279 int accountTypeIndex = cursor.getColumnIndexOrThrow(Calendars.ACCOUNT_TYPE); in setDefaultCalendarView() 305 int calendarIdIndex = cursor.getColumnIndexOrThrow(Calendars._ID); in setCalendarFields() 306 int colorIndex = cursor.getColumnIndexOrThrow(Calendars.CALENDAR_COLOR); in setCalendarFields() 307 int calendarNameIndex = cursor.getColumnIndexOrThrow(Calendars.CALENDAR_DISPLAY_NAME); in setCalendarFields() 308 int accountNameIndex = cursor.getColumnIndexOrThrow(Calendars.ACCOUNT_NAME); in setCalendarFields() 309 int calendarOwnerIndex = cursor.getColumnIndexOrThrow(Calendars.OWNER_ACCOUNT); in setCalendarFields()
|
/packages/apps/Music/src/com/android/music/ |
D | QueryBrowserActivity.java | 282 String selectedType = mQueryCursor.getString(mQueryCursor.getColumnIndexOrThrow( in onListItemClick() 391 String mimetype = cursor.getString(cursor.getColumnIndexOrThrow( in bindView() 399 String name = cursor.getString(cursor.getColumnIndexOrThrow( in bindView() 409 int numalbums = cursor.getInt(cursor.getColumnIndexOrThrow("data1")); in bindView() 410 int numsongs = cursor.getInt(cursor.getColumnIndexOrThrow("data2")); in bindView() 419 String name = cursor.getString(cursor.getColumnIndexOrThrow( in bindView() 427 name = cursor.getString(cursor.getColumnIndexOrThrow( in bindView() 439 String name = cursor.getString(cursor.getColumnIndexOrThrow( in bindView() 443 String displayname = cursor.getString(cursor.getColumnIndexOrThrow( in bindView() 448 name = cursor.getString(cursor.getColumnIndexOrThrow( in bindView()
|
D | ArtistAlbumBrowserActivity.java | 340 …mCurrentArtistId = mArtistCursor.getString(mArtistCursor.getColumnIndexOrThrow(MediaStore.Audio.Ar… in onCreateContextMenu() 341 …mCurrentArtistName = mArtistCursor.getString(mArtistCursor.getColumnIndexOrThrow(MediaStore.Audio.… in onCreateContextMenu() 363 mCurrentAlbumName = c.getString(c.getColumnIndexOrThrow(MediaStore.Audio.Albums.ALBUM)); in onCreateContextMenu() 367 mArtistCursor.getColumnIndexOrThrow(MediaStore.Audio.Artists.ARTIST)); in onCreateContextMenu() 613 mGroupArtistIdIdx = cursor.getColumnIndexOrThrow(MediaStore.Audio.Artists._ID); in getColumnIndices() 614 mGroupArtistIdx = cursor.getColumnIndexOrThrow(MediaStore.Audio.Artists.ARTIST); in getColumnIndices() 615 … mGroupAlbumIdx = cursor.getColumnIndexOrThrow(MediaStore.Audio.Artists.NUMBER_OF_ALBUMS); in getColumnIndices() 616 … mGroupSongIdx = cursor.getColumnIndexOrThrow(MediaStore.Audio.Artists.NUMBER_OF_TRACKS); in getColumnIndices() 701 … String name = cursor.getString(cursor.getColumnIndexOrThrow(MediaStore.Audio.Albums.ALBUM)); in bindChildView() 709 …int numsongs = cursor.getInt(cursor.getColumnIndexOrThrow(MediaStore.Audio.Albums.NUMBER_OF_SONGS)… in bindChildView() [all …]
|
D | MediaPickerActivity.java | 99 String type = mCursor.getString(mCursor.getColumnIndexOrThrow( in onListItemClick() 109 mediaId = mCursor.getLong(mCursor.getColumnIndexOrThrow( in onListItemClick() 113 mediaId = mCursor.getLong(mCursor.getColumnIndexOrThrow( in onListItemClick() 235 mTitleIdx = cursor.getColumnIndexOrThrow(MediaStore.Audio.Media.TITLE); in PickListAdapter() 236 mArtistIdx = cursor.getColumnIndexOrThrow(MediaStore.Audio.Media.ARTIST); in PickListAdapter() 237 mAlbumIdx = cursor.getColumnIndexOrThrow(MediaStore.Audio.Media.ALBUM); in PickListAdapter() 238 mMimeIdx = cursor.getColumnIndexOrThrow(MediaStore.Audio.Media.MIME_TYPE); in PickListAdapter()
|
D | TrackBrowserActivity.java | 407 int keyidx = mTrackCursor.getColumnIndexOrThrow(MediaStore.Audio.Media.ARTIST_ID); in init() 447 int idx = mTrackCursor.getColumnIndexOrThrow(MediaStore.Audio.Media.ALBUM); in setTitle() 457 mTrackCursor.getLong(mTrackCursor.getColumnIndexOrThrow( in setTitle() 566 int colidx = mTrackCursor.getColumnIndexOrThrow( in removePlaylistItem() 661 int id_idx = mTrackCursor.getColumnIndexOrThrow( in onCreateContextMenu() 671 mCurrentAlbumName = mTrackCursor.getString(mTrackCursor.getColumnIndexOrThrow( in onCreateContextMenu() 673 mCurrentArtistNameForAlbum = mTrackCursor.getString(mTrackCursor.getColumnIndexOrThrow( in onCreateContextMenu() 675 mCurrentTrackName = mTrackCursor.getString(mTrackCursor.getColumnIndexOrThrow( in onCreateContextMenu() 821 int colidx = mTrackCursor.getColumnIndexOrThrow( in removeItem() 857 int colidx = mTrackCursor.getColumnIndexOrThrow( [all …]
|
D | AlbumBrowserActivity.java | 280 …mCurrentAlbumId = mAlbumCursor.getString(mAlbumCursor.getColumnIndexOrThrow(MediaStore.Audio.Album… in onCreateContextMenu() 281 …mCurrentAlbumName = mAlbumCursor.getString(mAlbumCursor.getColumnIndexOrThrow(MediaStore.Audio.Alb… in onCreateContextMenu() 283 mAlbumCursor.getColumnIndexOrThrow(MediaStore.Audio.Albums.ARTIST)); in onCreateContextMenu() 554 mAlbumIdx = cursor.getColumnIndexOrThrow(MediaStore.Audio.Albums.ALBUM); in getColumnIndices() 555 mArtistIdx = cursor.getColumnIndexOrThrow(MediaStore.Audio.Albums.ARTIST); in getColumnIndices() 556 mAlbumArtIndex = cursor.getColumnIndexOrThrow(MediaStore.Audio.Albums.ALBUM_ART); in getColumnIndices()
|
/packages/apps/Launcher3/src/com/android/launcher3/util/ |
D | CursorIconInfo.java | 39 iconTypeIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON_TYPE); in CursorIconInfo() 40 iconIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON); in CursorIconInfo() 41 iconPackageIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON_PACKAGE); in CursorIconInfo() 42 iconResourceIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON_RESOURCE); in CursorIconInfo()
|
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/ |
D | AbstractPublicApiTest.java | 66 return (int) cursor.getLong(cursor.getColumnIndexOrThrow( in getStatusIfExists() 82 return cursor.getString(cursor.getColumnIndexOrThrow(field)); in getStringField() 93 return cursor.getLong(cursor.getColumnIndexOrThrow(field)); in getLongField() 183 cursor.getColumnIndexOrThrow( in runUntilProgress() 186 cursor.getColumnIndexOrThrow(DownloadManager.COLUMN_TOTAL_SIZE_BYTES)); in runUntilProgress()
|
/packages/apps/Calendar/src/com/android/calendar/selectcalendars/ |
D | SelectCalendarsSyncAdapter.java | 112 mIdColumn = c.getColumnIndexOrThrow(Calendars._ID); in initData() 113 mNameColumn = c.getColumnIndexOrThrow(Calendars.CALENDAR_DISPLAY_NAME); in initData() 114 mColorColumn = c.getColumnIndexOrThrow(Calendars.CALENDAR_COLOR); in initData() 115 mSyncedColumn = c.getColumnIndexOrThrow(Calendars.SYNC_EVENTS); in initData() 116 mAccountNameColumn = c.getColumnIndexOrThrow(Calendars.ACCOUNT_NAME); in initData() 117 mAccountTypeColumn = c.getColumnIndexOrThrow(Calendars.ACCOUNT_TYPE); in initData()
|
D | SelectCalendarsSimpleAdapter.java | 186 mIdColumn = c.getColumnIndexOrThrow(Calendars._ID); in initData() 187 mNameColumn = c.getColumnIndexOrThrow(Calendars.CALENDAR_DISPLAY_NAME); in initData() 188 mColorColumn = c.getColumnIndexOrThrow(Calendars.CALENDAR_COLOR); in initData() 189 mVisibleColumn = c.getColumnIndexOrThrow(Calendars.VISIBLE); in initData() 190 mOwnerAccountColumn = c.getColumnIndexOrThrow(Calendars.OWNER_ACCOUNT); in initData() 191 mAccountNameColumn = c.getColumnIndexOrThrow(Calendars.ACCOUNT_NAME); in initData() 192 mAccountTypeColumn = c.getColumnIndexOrThrow(Calendars.ACCOUNT_TYPE); in initData()
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
D | LauncherModel.java | 528 final int itemTypeIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ITEM_TYPE); in getItemsInLocalCoordinates() 529 final int containerIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CONTAINER); in getItemsInLocalCoordinates() 530 final int screenIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.SCREEN); in getItemsInLocalCoordinates() 531 final int cellXIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CELLX); in getItemsInLocalCoordinates() 532 final int cellYIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CELLY); in getItemsInLocalCoordinates() 533 final int spanXIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.SPANX); in getItemsInLocalCoordinates() 534 final int spanYIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.SPANY); in getItemsInLocalCoordinates() 535 final int profileIdIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.PROFILE_ID); in getItemsInLocalCoordinates() 575 … final int itemTypeIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ITEM_TYPE); in getFolderById() 576 final int titleIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.TITLE); in getFolderById() [all …]
|
D | LauncherProvider.java | 441 final int idIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites._ID); in copyFromCursor() 442 final int intentIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.INTENT); in copyFromCursor() 443 final int titleIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.TITLE); in copyFromCursor() 444 final int iconTypeIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON_TYPE); in copyFromCursor() 445 final int iconIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON); in copyFromCursor() 446 … final int iconPackageIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON_PACKAGE); in copyFromCursor() 447 … final int iconResourceIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON_RESOURCE); in copyFromCursor() 448 … final int containerIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CONTAINER); in copyFromCursor() 449 final int itemTypeIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ITEM_TYPE); in copyFromCursor() 450 final int screenIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.SCREEN); in copyFromCursor() [all …]
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
D | LauncherProvider.java | 819 final int idIndex = c.getColumnIndexOrThrow(Favorites._ID); in convertShortcutsToLauncherActivities() 820 final int intentIndex = c.getColumnIndexOrThrow(Favorites.INTENT); in convertShortcutsToLauncherActivities() 1137 final int idIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites._ID); in migrateLauncher2Shortcuts() 1139 = c.getColumnIndexOrThrow(LauncherSettings.Favorites.INTENT); in migrateLauncher2Shortcuts() 1141 = c.getColumnIndexOrThrow(LauncherSettings.Favorites.TITLE); in migrateLauncher2Shortcuts() 1143 = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON_TYPE); in migrateLauncher2Shortcuts() 1145 = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON); in migrateLauncher2Shortcuts() 1147 = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON_PACKAGE); in migrateLauncher2Shortcuts() 1149 = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON_RESOURCE); in migrateLauncher2Shortcuts() 1151 = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CONTAINER); in migrateLauncher2Shortcuts() [all …]
|
D | LauncherModel.java | 943 … final int itemTypeIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ITEM_TYPE); in getFolderById() 944 final int titleIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.TITLE); in getFolderById() 945 … final int containerIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CONTAINER); in getFolderById() 946 final int screenIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.SCREEN); in getFolderById() 947 final int cellXIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CELLX); in getFolderById() 948 final int cellYIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CELLY); in getFolderById() 949 … final int optionsIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.OPTIONS); in getFolderById() 1409 final int idIndex = sc.getColumnIndexOrThrow(LauncherSettings.WorkspaceScreens._ID); in loadWorkspaceScreensDb() 1779 final int idIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites._ID); in loadWorkspace() 1780 final int intentIndex = c.getColumnIndexOrThrow in loadWorkspace() [all …]
|
/packages/apps/Launcher3/src/com/android/launcher3/model/ |
D | GridSizeMigrationTask.java | 630 final int indexId = c.getColumnIndexOrThrow(Favorites._ID); 631 final int indexItemType = c.getColumnIndexOrThrow(Favorites.ITEM_TYPE); 632 final int indexIntent = c.getColumnIndexOrThrow(Favorites.INTENT); 633 final int indexScreen = c.getColumnIndexOrThrow(Favorites.SCREEN); 700 final int indexId = c.getColumnIndexOrThrow(Favorites._ID); 701 final int indexItemType = c.getColumnIndexOrThrow(Favorites.ITEM_TYPE); 702 final int indexCellX = c.getColumnIndexOrThrow(Favorites.CELLX); 703 final int indexCellY = c.getColumnIndexOrThrow(Favorites.CELLY); 704 final int indexSpanX = c.getColumnIndexOrThrow(Favorites.SPANX); 705 final int indexSpanY = c.getColumnIndexOrThrow(Favorites.SPANY); [all …]
|
/packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/ |
D | TrampolineActivity.java | 68 status = cursor.getInt(cursor.getColumnIndexOrThrow(DownloadManager.COLUMN_STATUS)); in onCreate() 69 reason = cursor.getInt(cursor.getColumnIndexOrThrow(DownloadManager.COLUMN_REASON)); in onCreate() 71 cursor.getColumnIndexOrThrow(DownloadManager.COLUMN_TOTAL_SIZE_BYTES)); in onCreate()
|