Home
last modified time | relevance | path

Searched refs:colIndex (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
DTrackerEntry.java247 int colIndex = cursor.getColumnIndexOrThrow(colName); in getNullableFloat() local
248 if (!cursor.isNull(colIndex)) { in getNullableFloat()
249 retValue = cursor.getFloat(colIndex); in getNullableFloat()
/frameworks/base/core/java/android/database/
DDatabaseUtils.java635 int colIndex = cursor.getColumnIndex(field); in cursorIntToContentValues() local
636 if (!cursor.isNull(colIndex)) { in cursorIntToContentValues()
637 values.put(key, cursor.getInt(colIndex)); in cursorIntToContentValues()
665 int colIndex = cursor.getColumnIndex(field); in cursorLongToContentValues() local
666 if (!cursor.isNull(colIndex)) { in cursorLongToContentValues()
667 Long value = Long.valueOf(cursor.getLong(colIndex)); in cursorLongToContentValues()
696 int colIndex = cursor.getColumnIndex(field); in cursorDoubleToContentValues() local
697 if (!cursor.isNull(colIndex)) { in cursorDoubleToContentValues()
698 values.put(key, cursor.getDouble(colIndex)); in cursorDoubleToContentValues()
/frameworks/base/core/tests/coretests/src/android/app/
DDownloadManagerFunctionalTest.java136 int colIndex = cursor.getColumnIndex(DownloadManager.COLUMN_LOCAL_FILENAME); in verifyDownload() local
137 String fileName = cursor.getString(colIndex); in verifyDownload()