Home
last modified time | relevance | path

Searched refs:idIndex (Results 1 – 15 of 15) sorted by relevance

/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
DPicasaSource.java125 int idIndex = data.cursor.getColumnIndex(PICASA_ID); in findPosition() local
128 String id = data.cursor.getString(idIndex); in findPosition()
146 int idIndex = cursor.getColumnIndex(PICASA_ID); in unpackImageData() local
150 data.id = cursor.getString(idIndex); in unpackImageData()
228 int idIndex = cursor.getColumnIndex(PICASA_ID); in findImages() local
230 if (idIndex < 0) { in findImages()
234 if (idIndex >= 0) { in findImages()
304 int idIndex = cursor.getColumnIndex(PICASA_ID); in resolveAlbumIds() local
306 if (idIndex < 0) { in resolveAlbumIds()
310 albumIds.add(cursor.getString(idIndex)); in resolveAlbumIds()
[all …]
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/map/
DBluetoothMapAccountLoader.java224 int idIndex = c.getColumnIndex(BluetoothMapContract.AccountColumns._ID); in parseAccounts() local
237 + String.valueOf(c.getInt(idIndex))); in parseAccounts()
248 String.valueOf((c.getInt(idIndex))), in parseAccounts()
DBluetoothMapContentObserver.java1537 int idIndex = c.getColumnIndexOrThrow(Sms._ID); in handleMsgListChangesSms() local
1538 if (c.isNull(idIndex)) { in handleMsgListChangesSms()
1548 long id = c.getLong(idIndex); in handleMsgListChangesSms()
1779 int idIndex = c.getColumnIndexOrThrow(Mms._ID); in handleMsgListChangesMms() local
1780 if (c.isNull(idIndex)) { in handleMsgListChangesMms()
1790 long id = c.getLong(idIndex); in handleMsgListChangesMms()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DMetadataHandler.java54 final int idIndex = results.getColumnIndex(MetadataDbHelper.WORDLISTID_COLUMN); in makeMetadataObject() local
69 buildingMetadata.add(new WordListMetadata(results.getString(idIndex), in makeMetadataObject()
DDictionarySettingsFragment.java309 final int idIndex = cursor.getColumnIndex(MetadataDbHelper.WORDLISTID_COLUMN); in createInstalledDictSettingsCollection() local
316 final String wordlistId = cursor.getString(idIndex); in createInstalledDictSettingsCollection()
DDictionaryProvider.java353 final int idIndex = results.getColumnIndex(MetadataDbHelper.WORDLISTID_COLUMN); in getDictionaryWordListsForLocale() local
362 final String wordListId = results.getString(idIndex); in getDictionaryWordListsForLocale()
/packages/apps/Launcher3/src/com/android/launcher3/model/
DDatabaseHelper.java378 final int idIndex = c.getColumnIndexOrThrow(Favorites._ID); in convertShortcutsToLauncherActivities() local
395 int id = c.getInt(idIndex); in convertShortcutsToLauncherActivities()
/packages/providers/MediaProvider/src/com/android/providers/media/photopicker/data/
DPickerDbFacade.java589 final int idIndex = cursor.getColumnIndex( in executeInternal() local
591 final String[] deleteArgs = {cursor.getString(idIndex)}; in executeInternal()
645 final int idIndex = inputCursor in updateFirstDateTakenMillis() local
647 if (idIndex < 0) { in updateFirstDateTakenMillis()
652 final String id = inputCursor.getString(idIndex); in updateFirstDateTakenMillis()
/packages/apps/Dialer/java/com/android/incallui/
DCallerInfoAsyncQuery.java236 int idIndex = cursor.getColumnIndex(Directory._ID); in addDirectoryIdsFromCursor() local
238 long id = cursor.getLong(idIndex); in addDirectoryIdsFromCursor()
/packages/providers/MediaProvider/tests/src/com/android/providers/media/photopicker/data/
DExternalDbFacadeTest.java1220 int idIndex = cursor.getColumnIndex(CloudMediaProviderContract.MediaColumns.ID); in assertMediaColumns() local
1236 .that(cursor.getLong(idIndex)) in assertMediaColumns()
1281 int idIndex = cursor.getColumnIndex(CloudMediaProviderContract.AlbumColumns.MEDIA_COVER_ID); in assertAlbumColumns() local
1289 .that(cursor.getString(idIndex)).isNotNull(); in assertAlbumColumns()
/packages/apps/Dialer/java/com/android/dialer/phonenumbercache/
DContactInfoHelper.java287 int idIndex = cursor.getColumnIndex(Directory._ID); in getRemoteDirectories() local
290 long directoryId = cursor.getLong(idIndex); in getRemoteDirectories()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/opp/
DBluetoothOppNotification.java307 final int idIndex = cursor.getColumnIndexOrThrow(BluetoothShare._ID); in updateActiveNotification() local
319 int id = cursor.getInt(idIndex); in updateActiveNotification()
/packages/apps/Launcher3/src/com/android/launcher3/provider/
DRestoreDbTask.java588 final int idIndex = c.getColumnIndexOrThrow(Favorites._ID); in maybeOverrideShortcuts() local
599 new String[]{String.valueOf(c.getInt(idIndex))}); in maybeOverrideShortcuts()
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
DPublicApiFunctionalTest.java330 int idIndex = cursor.getColumnIndexOrThrow(DownloadManager.COLUMN_ID); in checkAndCloseCursor() local
334 assertEquals(download.mId, cursor.getLong(idIndex)); in checkAndCloseCursor()
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
DCalendarProvider2.java3800 final int idIndex = c.getColumnIndex(GENERIC_ID); in updateEventRelatedTable() local
3802 if (idIndex < 0 || eventIdIndex < 0) { in updateEventRelatedTable()
3819 long id = c.getLong(idIndex); in updateEventRelatedTable()