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

/dalvik/libcore/xml/src/main/java/org/xmlpull/v1/
H A DXmlPullParserException.java13 protected int row = -1; field in class:XmlPullParserException
29 public XmlPullParserException(String s, int row, int column) {
31 this.row = row;
42 this.row = parser.getLineNumber();
50 public int getLineNumber() { return row; }
/dalvik/libcore/sql/src/main/java/SQLite/JDBC2y/
H A DJDBCDatabaseMetaData.java557 String row[] = { "" };
558 tr.newrow(row);
567 String row[] = { "" };
568 tr.newrow(row);
577 String row[] = new String[1];
578 row[0] = "TABLE";
579 tr.newrow(row);
580 row = new String[1];
581 row[0] = "VIEW";
582 tr.newrow(row);
[all...]
H A DJDBCResultSet.java9 * Current row to be retrieved.
11 private int row; field in class:JDBCResultSet
39 this.row = -1;
46 row++;
47 return row < tr.nrows;
59 return row + 1;
66 if (row >= 0) {
67 row--;
69 return row >= 0;
72 public boolean absolute(int row) throw argument
87 relative(int row) argument
[all...]
/dalvik/libcore/sql/src/main/java/SQLite/
H A DTableResult.java57 * Rows of the result set. Each row is stored as a String array.
124 String row[] = (String[]) rows.elementAt(i);
126 sb.append(row[k] == null ? "NULL" : row[k]);
H A DDatabase.java80 * for each row of the result set.<P>
101 * for each row of the result set. Each '%q' or %Q in the
133 * Return the row identifier of the last inserted
134 * row.
500 * @param row row identifier
506 long row, boolean rw) throws SQLite.Exception {
509 _open_blob(db, table, column, row, rw, blob);
554 * @param row row identifie
505 open_blob(String db, String table, String column, long row, boolean rw) argument
559 _open_blob(String db, String table, String column, long row, boolean rw, Blob blob) argument
[all...]
/dalvik/libcore/nio_char/src/test/java/tests/api/java/nio/charset/
H A DCharset_TestGenerator.java110 int row = 0, col = 0; field in class:Charset_TestGenerator.CodesGenerator
127 row++;
148 row++;
166 row++;
196 int row = 0, col = 0; field in class:Charset_TestGenerator.Dumper
218 row++;
H A DCharset_AbstractTest.java334 int row = 0, col = 0; field in class:Charset_AbstractTest.CodesGenerator
/dalvik/libcore/luni/src/test/java/com/google/coretests/
H A DStatsStore.java84 ResultSet row = selectStmt.executeQuery();
85 row.first();
87 a.id = row.getInt(pos); pos++;
88 a.bestRes = row.getInt(pos); pos++;
89 a.lastBestAt = row.getLong(pos); pos++;
90 a.lastRes = row.getInt(pos); pos++;
91 a.lastDuration = row.getLong(pos); pos++;
92 a.statCount = row.getInt(pos); pos++;
93 a.statAvgDuration = row.getDouble(pos); pos++;
94 a.statMinDuration = row
[all...]
/dalvik/libcore/sql/src/test/java/tests/SQLite/
H A DFunctionContextTest.java80 String row[] = (String[]) res.rows.elementAt(0);
81 String val = row[0];
103 String row[] = (String[]) res.rows.elementAt(0);
104 String val = row[0];
126 String row[] = (String[]) res.rows.elementAt(0);
127 String val = row[0];
192 String row[] = (String[]) res.rows.elementAt(0);
193 String val = row[0];
239 String row[] = (String[]) res.rows.elementAt(0);
240 String val = row[
[all...]
H A DDatabaseTest.java336 String row[] = (String[]) res.rows.elementAt(0);
337 assertEquals(Integer.parseInt(row[0]), 1);
338 assertEquals(Integer.parseInt(row[1]), 10);
339 assertEquals(Integer.parseInt(row[2]), 20);
790 String row[] = (String[]) res.rows.elementAt(0);
791 assertEquals(Integer.parseInt(row[0]), 1);
792 assertEquals(Integer.parseInt(row[1]), 10);
793 assertEquals(Integer.parseInt(row[2]), 20);
1012 String row[] = (String[]) res.rows.elementAt(0);
1013 String val = row[
[all...]
H A DStmtTest.java529 String[] row = (String[]) r.rows.elementAt(0);
535 assertTrue(stringInHex.equalsIgnoreCase(row[1]));
574 String[] row = (String[]) r.rows.elementAt(0);
575 assertEquals(name,row[1]);
/dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/util/
H A DResources.java173 for (String[] row : zoneStrings) {
174 if (row[0].equals(id)) {
176 return (style == TimeZone.LONG) ? row[3] : row[4];
178 return (style == TimeZone.LONG) ? row[1] : row[2];
257 * @return An array of time zone strings. Each row represents one time zone.
259 * "Europe/Berlin". The other columns then hold for each row the
/dalvik/libcore/sql/src/main/java/java/sql/
H A DResultSet.java31 * {@code ResultSet}s have a cursor which points to the current data table row.
33 * ahead of the first row. To move the cursor to the first and consecutive rows,
54 * data from columns in the current row, such as {@code getDate} and {@code
72 * either to modify the data of an existing row or to insert new data rows into
74 * cursor to the row which needs modification and then using the update methods
76 * method. For insertion of new rows, the cursor is first moved to a special row
147 * Moves the cursor to a specified row number in the {@code ResultSet}.
149 * @param row
150 * the index of the row starting at index 1. Index {@code -1}
151 * returns the last row
157 absolute(int row) argument
[all...]
/dalvik/libcore/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
H A DImpl_RowSet.java248 public boolean absolute(int row) throws SQLException { argument
/dalvik/dx/etc/
H A Djasmin.jarMETA-INF/ META-INF/MANIFEST.MF jas/ jas/AnnotDefAttr.class AnnotDefAttr.java package jas ...
/dalvik/libcore/sql/src/main/native/
H A Dsqlite_jni.c62 int row1; /* true while processing first row */
4129 jstring column, jlong row,
4169 row, rw, &blob);
4127 Java_SQLite_Database__1open_1blob(JNIEnv *env, jobject obj, jstring dbname, jstring table, jstring column, jlong row, jboolean rw, jobject blobj) argument

Completed in 163 milliseconds