Searched refs:columnIndex (Results 1 – 3 of 3) sorted by relevance
571 public String getString(int columnIndex) { in getString() argument572 Object cell = mRows[mPos].get(columnIndex); in getString()577 public short getShort(int columnIndex) { in getShort() argument578 Number num = (Number) mRows[mPos].get(columnIndex); in getShort()583 public int getInt(int columnIndex) { in getInt() argument584 Number num = (Number) mRows[mPos].get(columnIndex); in getInt()589 public long getLong(int columnIndex) { in getLong() argument590 Number num = (Number) mRows[mPos].get(columnIndex); in getLong()595 public float getFloat(int columnIndex) { in getFloat() argument596 Number num = (Number) mRows[mPos].get(columnIndex); in getFloat()[all …]
267 int columnIndex = cursor.getColumnIndex(DownloadManager.COLUMN_ID); in removeAllDownloads() local269 removeIds[i] = cursor.getLong(columnIndex); in removeAllDownloads()
308 int columnIndex = cursor.getColumnIndex(DownloadManager.COLUMN_ID); in clearDownloads() local311 removeIds[i] = cursor.getLong(columnIndex); in clearDownloads()