Searched refs:columnValues (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/database/
H A DMatrixCursor.java96 * @throws IllegalArgumentException if {@code columnValues.length !=
98 * @param columnValues in the same order as the the column names specified
101 public void addRow(Object[] columnValues) { argument
102 if (columnValues.length != columnCount) {
104 + columnCount + ", columnValues.length = "
105 + columnValues.length);
110 System.arraycopy(columnValues, 0, data, start, columnCount);
117 * @throws IllegalArgumentException if {@code columnValues.size() !=
119 * @param columnValues in the same order as the the column names specified
122 public void addRow(Iterable<?> columnValues) { argument
154 addRow(ArrayList<?> columnValues, int start) argument
[all...]

Completed in 48 milliseconds