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

/frameworks/base/core/java/android/database/
H A DMatrixCursor.java97 * @throws IllegalArgumentException if {@code columnValues.length !=
99 * @param columnValues in the same order as the the column names specified
102 public void addRow(Object[] columnValues) { argument
103 if (columnValues.length != columnCount) {
105 + columnCount + ", columnValues.length = "
106 + columnValues.length);
111 System.arraycopy(columnValues, 0, data, start, columnCount);
118 * @throws IllegalArgumentException if {@code columnValues.size() !=
120 * @param columnValues in the same order as the the column names specified
123 public void addRow(Iterable<?> columnValues) { argument
155 addRow(ArrayList<?> columnValues, int start) argument
[all...]

Completed in 35 milliseconds