Searched refs:colIndex (Results 1 – 3 of 3) sorted by relevance
247 int colIndex = cursor.getColumnIndexOrThrow(colName); in getNullableFloat() local248 if (!cursor.isNull(colIndex)) { in getNullableFloat()249 retValue = cursor.getFloat(colIndex); in getNullableFloat()
747 int colIndex = cursor.getColumnIndex(field); in cursorIntToContentValues() local748 if (!cursor.isNull(colIndex)) { in cursorIntToContentValues()749 values.put(key, cursor.getInt(colIndex)); in cursorIntToContentValues()777 int colIndex = cursor.getColumnIndex(field); in cursorLongToContentValues() local778 if (!cursor.isNull(colIndex)) { in cursorLongToContentValues()779 Long value = Long.valueOf(cursor.getLong(colIndex)); in cursorLongToContentValues()808 int colIndex = cursor.getColumnIndex(field); in cursorDoubleToContentValues() local809 if (!cursor.isNull(colIndex)) { in cursorDoubleToContentValues()810 values.put(key, cursor.getDouble(colIndex)); in cursorDoubleToContentValues()
308 int colIndex = line.indexOf(":"); in shouldRemoveHeaderLine() local309 if (colIndex != -1) { in shouldRemoveHeaderLine()310 String headerName = line.substring(0, colIndex).trim(); in shouldRemoveHeaderLine()