Searched refs:colName (Results 1 – 2 of 2) sorted by relevance
1455 for (String colName : initialValues.keySet()) { in insertWithOnConflict()1457 sql.append(colName); in insertWithOnConflict()1458 bindArgs[i++] = initialValues.get(colName); in insertWithOnConflict()1559 for (String colName : values.keySet()) { in updateWithOnConflict()1561 sql.append(colName); in updateWithOnConflict()1562 bindArgs[i++] = values.get(colName); in updateWithOnConflict()
245 private static Float getNullableFloat(Cursor cursor, String colName) { in getNullableFloat() argument247 int colIndex = cursor.getColumnIndexOrThrow(colName); in getNullableFloat()