Home
last modified time | relevance | path

Searched refs:idIndex (Results 1 – 14 of 14) 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/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapAccountLoader.java194 int idIndex = c.getColumnIndex(BluetoothMapContract.AccountColumns._ID); in parseAccounts() local
204 .valueOf(c.getInt(idIndex))); in parseAccounts()
217 BluetoothMapAccountItem.create(String.valueOf((c.getInt(idIndex))), in parseAccounts()
DBluetoothMapContentObserver.java1413 int idIndex = c.getColumnIndexOrThrow(Sms._ID); in handleMsgListChangesSms() local
1414 if (c.isNull(idIndex)) { in handleMsgListChangesSms()
1418 long id = c.getLong(idIndex); in handleMsgListChangesSms()
1574 int idIndex = c.getColumnIndexOrThrow(Mms._ID); in handleMsgListChangesMms() local
1575 if (c.isNull(idIndex)) { in handleMsgListChangesMms()
1579 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/
DLoaderCursor.java88 private final int idIndex; field in LoaderCursor
126 idIndex = getColumnIndexOrThrow(LauncherSettings.Favorites._ID); in LoaderCursor()
146 id = getInt(idIndex); in moveToNext()
/packages/apps/Launcher3/src/com/android/launcher3/provider/
DImportDataTask.java139 final int idIndex = c.getColumnIndexOrThrow(Favorites._ID); in importWorkspaceItems() local
161 int id = c.getInt(idIndex); in importWorkspaceItems()
/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/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppNotification.java269 final int idIndex = cursor.getColumnIndexOrThrow(BluetoothShare._ID); in updateActiveNotification() local
281 int id = cursor.getInt(idIndex); in updateActiveNotification()
/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/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/apps/Launcher3/src/com/android/launcher3/
DLauncherProvider.java972 final int idIndex = c.getColumnIndexOrThrow(Favorites._ID); in convertShortcutsToLauncherActivities() local
989 int id = c.getInt(idIndex); in convertShortcutsToLauncherActivities()
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
DCalendarProvider2.java3801 final int idIndex = c.getColumnIndex(GENERIC_ID); in updateEventRelatedTable() local
3803 if (idIndex < 0 || eventIdIndex < 0) { in updateEventRelatedTable()
3820 long id = c.getLong(idIndex); in updateEventRelatedTable()