Home
last modified time | relevance | path

Searched refs:row (Results 1 – 17 of 17) sorted by relevance

/libcore/sqlite-jdbc/src/main/java/SQLite/JDBC2z/
DJDBCDatabaseMetaData.java557 String row[] = { "" }; in getSchemas() local
558 tr.newrow(row); in getSchemas()
567 String row[] = { "" }; in getCatalogs() local
568 tr.newrow(row); in getCatalogs()
577 String row[] = new String[1]; in getTableTypes() local
578 row[0] = "TABLE"; in getTableTypes()
579 tr.newrow(row); in getTableTypes()
580 row = new String[1]; in getTableTypes()
581 row[0] = "VIEW"; in getTableTypes()
582 tr.newrow(row); in getTableTypes()
[all …]
DJDBCResultSet.java11 private int row; field in JDBCResultSet
79 this.row = -1;
134 if (row < 0) {
138 System.arraycopy((String []) tr.rows.elementAt(row), 0,
147 row++;
148 return row < tr.nrows;
160 return row + 1;
167 if (row >= 0) {
168 row--;
170 return row >= 0;
[all …]
/libcore/xml/src/main/java/org/xmlpull/v1/
DXmlPullParserException.java13 protected int row = -1; field in XmlPullParserException
42 this.row = parser.getLineNumber(); in XmlPullParserException()
50 public int getLineNumber() { return row; } in getLineNumber()
/libcore/luni/src/main/java/libcore/icu/
DTimeZones.java48 for (String[] row : zoneStrings) { in lookupDisplayName()
49 if (row[0].equals(id)) { in lookupDisplayName()
51 return (style == TimeZone.LONG) ? row[3] : row[4]; in lookupDisplayName()
53 return (style == TimeZone.LONG) ? row[1] : row[2]; in lookupDisplayName()
/libcore/luni/src/test/java/tests/api/java/nio/charset/
DCharset_TestGenerator.java110 int row = 0, col = 0; field in Charset_TestGenerator.CodesGenerator
127 row++; in consume()
148 row++; in consume()
166 row++; in consume()
196 int row = 0, col = 0; field in Charset_TestGenerator.Dumper
218 row++; in consume()
DCharset_AbstractTest.java333 int row = 0, col = 0; field in Charset_AbstractTest.CodesGenerator
/libcore/luni/src/test/java/com/google/coretests/
DStatsStore.java84 ResultSet row = selectStmt.executeQuery(); in use1() local
85 row.first(); in use1()
87 a.id = row.getInt(pos); pos++; in use1()
88 a.bestRes = row.getInt(pos); pos++; in use1()
89 a.lastBestAt = row.getLong(pos); pos++; in use1()
90 a.lastRes = row.getInt(pos); pos++; in use1()
91 a.lastDuration = row.getLong(pos); pos++; in use1()
92 a.statCount = row.getInt(pos); pos++; in use1()
93 a.statAvgDuration = row.getDouble(pos); pos++; in use1()
94 a.statMinDuration = row.getLong(pos); pos++; in use1()
[all …]
/libcore/luni/src/test/java/tests/SQLite/
DFunctionContextTest.java80 String row[] = (String[]) res.rows.elementAt(0); in testSet_resultString() local
81 String val = row[0]; in testSet_resultString()
103 String row[] = (String[]) res.rows.elementAt(0); in testSet_resultInt() local
104 String val = row[0]; in testSet_resultInt()
126 String row[] = (String[]) res.rows.elementAt(0); in testSet_resultDouble() local
127 String val = row[0]; in testSet_resultDouble()
192 String row[] = (String[]) res.rows.elementAt(0); in testSet_resultByteArray() local
193 String val = row[0]; in testSet_resultByteArray()
239 String row[] = (String[]) res.rows.elementAt(0); in testSet_result_zeroblob() local
240 String val = row[0]; in testSet_result_zeroblob()
DDatabaseTest.java336 String row[] = (String[]) res.rows.elementAt(0); in testExecStringCallback() local
337 assertEquals(Integer.parseInt(row[0]), 1); in testExecStringCallback()
338 assertEquals(Integer.parseInt(row[1]), 10); in testExecStringCallback()
339 assertEquals(Integer.parseInt(row[2]), 20); in testExecStringCallback()
790 String row[] = (String[]) res.rows.elementAt(0); in testGet_tableString() local
791 assertEquals(Integer.parseInt(row[0]), 1); in testGet_tableString()
792 assertEquals(Integer.parseInt(row[1]), 10); in testGet_tableString()
793 assertEquals(Integer.parseInt(row[2]), 20); in testGet_tableString()
1012 String row[] = (String[]) res.rows.elementAt(0); in testCreate_function() local
1013 String val = row[0]; in testCreate_function()
[all …]
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]);
/libcore/sqlite-jdbc/src/main/java/SQLite/
DTableResult.java150 String row[] = (String[]) rows.elementAt(i); in toString() local
152 sb.append(row[k] == null ? "NULL" : row[k]); in toString()
DDatabase.java657 long row, boolean rw) throws SQLite.Exception { in open_blob() argument
660 _open_blob(db, table, column, row, rw, blob); in open_blob()
711 long row, boolean rw, Blob blob) in _open_blob() argument
/libcore/luni/src/main/java/java/text/
DDateFormatSymbols.java464 for (String[] row : zoneStrings) { in setZoneStrings()
465 if (row.length < 5) { in setZoneStrings()
466 throw new IllegalArgumentException(Arrays.toString(row) + ".length < 5"); in setZoneStrings()
/libcore/luni/src/main/java/java/sql/
DResultSet.java157 public boolean absolute(int row) throws SQLException; in absolute() argument
/libcore/expectations/
Dknownfailures.txt635 description: "If there is no current row 0 must be returned. res.close() does not wrap up",
795 …description: "Second block first assertion fails. Is Last should evaluate true if the row on which…
/libcore/luni/src/test/java/org/apache/harmony/sql/tests/javax/sql/
DImpl_RowSet.java251 public boolean absolute(int row) throws SQLException { in absolute() argument
/libcore/sqlite-jdbc/src/main/native/
Dsqlite_jni.c4293 jstring column, jlong row, in Java_SQLite_Database__1open_1blob() argument
4333 row, rw, &blob); in Java_SQLite_Database__1open_1blob()