Home
last modified time | relevance | path

Searched refs:idIndex (Results 1 – 16 of 16) 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/Exchange/src/com/android/exchange/provider/
DExchangeDirectoryProvider.java401 int idIndex = -1; in buildGalResultCursor() local
417 idIndex = i; in buildGalResultCursor()
529 if (idIndex != -1) { in buildGalResultCursor()
530 row[idIndex] = id; in buildGalResultCursor()
551 if (idIndex != -1) { in buildGalResultCursor()
552 row[idIndex] = id; in buildGalResultCursor()
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
DHtmlSanitizer.java98 final int idIndex = attrs.indexOf("id");
99 if (idIndex >= 0) {
101 final String value = attrs.remove(idIndex + 1);
102 attrs.remove(idIndex);
/packages/apps/Launcher3/src/com/android/launcher3/
DLauncherProvider.java606 final int idIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites._ID); in copyFromCursor() local
625 values.put(LauncherSettings.Favorites._ID, c.getLong(idIndex)); in copyFromCursor()
925 final int idIndex = c.getColumnIndex(Favorites._ID); in updateContactsShortcuts() local
929 long favoriteId = c.getLong(idIndex); in updateContactsShortcuts()
1003 final int idIndex = c.getColumnIndexOrThrow(Favorites._ID); in normalizeIcons() local
1007 long id = c.getLong(idIndex); in normalizeIcons()
1363 final int idIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites._ID); in migrateLauncher2Shortcuts() local
1496 values.put(LauncherSettings.Favorites._ID, c.getInt(idIndex)); in migrateLauncher2Shortcuts()
DUninstallShortcutReceiver.java100 final int idIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites._ID); in removeShortcut() local
108 final long id = c.getLong(idIndex); in removeShortcut()
DLauncherModel.java1425 final int idIndex = sc.getColumnIndexOrThrow( in loadWorkspaceScreensDb() local
1431 long screenId = sc.getLong(idIndex); in loadWorkspaceScreensDb()
1889 final int idIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites._ID); in loadWorkspace() local
1944 id = c.getLong(idIndex); in loadWorkspace()
2141 id = c.getLong(idIndex); in loadWorkspace()
2180 id = c.getLong(idIndex); in loadWorkspace()
/packages/apps/Launcher2/src/com/android/launcher2/
DLauncherProvider.java382 final int idIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites._ID); in copyFromCursor() local
401 values.put(LauncherSettings.Favorites._ID, c.getLong(idIndex)); in copyFromCursor()
587 final int idIndex = c.getColumnIndex(Favorites._ID); in updateContactsShortcuts() local
591 long favoriteId = c.getLong(idIndex); in updateContactsShortcuts()
665 final int idIndex = c.getColumnIndexOrThrow(Favorites._ID); in normalizeIcons() local
669 long id = c.getLong(idIndex); in normalizeIcons()
DUninstallShortcutReceiver.java108 final int idIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites._ID); in removeShortcut() local
116 final long id = c.getLong(idIndex); in removeShortcut()
DLauncherModel.java1297 final int idIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites._ID); in loadWorkspace() local
1351 itemsToRemove.add(c.getLong(idIndex)); in loadWorkspace()
1384 info.id = c.getLong(idIndex); in loadWorkspace()
1419 id = c.getLong(idIndex); in loadWorkspace()
1427 id = c.getLong(idIndex); in loadWorkspace()
1456 id = c.getLong(idIndex); in loadWorkspace()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DMetadataHandler.java52 final int idIndex = results.getColumnIndex(MetadataDbHelper.WORDLISTID_COLUMN); in makeMetadataObject() local
66 buildingMetadata.add(new WordListMetadata(results.getString(idIndex), in makeMetadataObject()
DDictionarySettingsFragment.java295 final int idIndex = cursor.getColumnIndex(MetadataDbHelper.WORDLISTID_COLUMN); in createInstalledDictSettingsCollection() local
303 final String wordlistId = cursor.getString(idIndex); in createInstalledDictSettingsCollection()
DDictionaryProvider.java361 final int idIndex = results.getColumnIndex(MetadataDbHelper.WORDLISTID_COLUMN); in getDictionaryWordListsForLocale() local
370 final String wordListId = results.getString(idIndex); in getDictionaryWordListsForLocale()
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppNotification.java231 final int idIndex = cursor.getColumnIndexOrThrow(BluetoothShare._ID); in updateActiveNotification() local
243 int id = cursor.getInt(idIndex); in updateActiveNotification()
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
DPublicApiFunctionalTest.java325 int idIndex = cursor.getColumnIndexOrThrow(DownloadManager.COLUMN_ID); in checkAndCloseCursor() local
329 assertEquals(download.mId, cursor.getLong(idIndex)); in checkAndCloseCursor()
/packages/apps/Browser/src/com/android/browser/
DAddBookmarkPage.java525 void moveCursorToFolder(Cursor cursor, long folderToFind, int idIndex) in moveCursorToFolder() argument
532 folder = cursor.getLong(idIndex); in moveCursorToFolder()
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
DCalendarProvider2.java3522 final int idIndex = c.getColumnIndex(GENERIC_ID); in updateEventRelatedTable() local
3524 if (idIndex < 0 || eventIdIndex < 0) { in updateEventRelatedTable()
3541 long id = c.getLong(idIndex); in updateEventRelatedTable()