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

/libcore/luni/src/test/java/libcore/java/text/
H A DDateFormatSymbolsTest.java89 // Kill a row.
110 for (String[] row : DateFormatSymbols.getInstance(Locale.US).getZoneStrings()) {
111 zoneStrings.put(row[0], row);
124 private static void assertUtc(String[] row) { argument
127 assertEquals(Arrays.toString(row), "UTC", row[2]);
128 assertEquals(Arrays.toString(row), "UTC", row[4]);
138 for (String[] row
[all...]
/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; }
/libcore/luni/src/test/java/libcore/java/nio/charset/
H A DCharset_TestGenerator.java104 int row = 0, col = 0; field in class:Charset_TestGenerator.CodesGenerator
121 row++;
142 row++;
160 row++;
190 int row = 0, col = 0; field in class:Charset_TestGenerator.Dumper
211 row++;
H A DOldCharset_AbstractTest.java266 int row = 0, col = 0; field in class:OldCharset_AbstractTest.CodesGenerator
/libcore/luni/src/main/java/libcore/icu/
H A DTimeZoneNames.java117 String[] row = zoneStrings[index];
119 return (style == TimeZone.LONG) ? row[LONG_NAME_DST] : row[SHORT_NAME_DST];
121 return (style == TimeZone.LONG) ? row[LONG_NAME] : row[SHORT_NAME];
/libcore/luni/src/main/java/java/text/
H A DDateFormatSymbols.java308 * Each row is an array of five strings:
476 * @throws IllegalArgumentException if any row has fewer than 5 elements.
483 for (String[] row : zoneStrings) {
484 if (row.length < 5) {
485 throw new IllegalArgumentException(Arrays.toString(row) + ".length < 5");
H A DSimpleDateFormat.java1225 for (String[] row : formatData.internalZoneStrings()) {
1227 if (row[i] == null) {
1233 if (string.regionMatches(true, offset, row[i], 0, row[i].length())) {
1234 TimeZone zone = TimeZone.getTimeZone(row[TimeZoneNames.OLSON_NAME]);
1254 return offset + row[i].length();
/libcore/luni/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...]

Completed in 398 milliseconds