Searched refs:colName (Results 1 – 3 of 3) sorted by relevance
218 for (String colName : values.keySet()) {220 sql.append(colName);221 bindArgs[i++] = values.get(colName);
245 private static Float getNullableFloat(Cursor cursor, String colName) { in getNullableFloat() argument247 int colIndex = cursor.getColumnIndexOrThrow(colName); in getNullableFloat()
1531 for (String colName : initialValues.keySet()) { in insertWithOnConflict()1533 sql.append(colName); in insertWithOnConflict()1534 bindArgs[i++] = initialValues.get(colName); in insertWithOnConflict()1635 for (String colName : values.keySet()) { in updateWithOnConflict()1637 sql.append(colName); in updateWithOnConflict()1638 bindArgs[i++] = values.get(colName); in updateWithOnConflict()