Searched refs:rows (Results 26 - 50 of 58) sorted by relevance

123

/openjdk7/jdk/src/share/classes/java/sql/
H A DStatement.java153 * Retrieves the maximum number of rows that a
156 * the excess rows are silently dropped.
158 * @return the current maximum number of rows for a <code>ResultSet</code>
168 * Sets the limit for the maximum number of rows that any
172 * rows are silently dropped.
174 * @param max the new max rows limit; zero means there is no limit
400 * rows will be processed in <code>ResultSet</code>
409 * @param direction the initial direction for processing rows
421 * Retrieves the direction for fetching rows from
438 * Gives the JDBC driver a hint as to the number of rows tha
451 setFetchSize(int rows) argument
[all...]
H A DResultSet.java41 * when there are no more rows in the <code>ResultSet</code> object,
172 * <code>false</code> if there are no more rows
1033 * result set contains no rows
1052 * result set contains no rows
1103 * first row. This method has no effect if the result set contains no rows.
1117 * last row. This method has no effect if the result set contains no rows.
1132 * <code>false</code> if there are no rows in the result set
1147 * <code>false</code> if there are no rows in the result set
1220 * Moves the cursor a relative number of rows, either positive or negative.
1231 * @param rows a
1351 setFetchSize(int rows) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DCachedRowSetWriter.java329 // We need to see rows marked for deletion.
333 // Look at all the rows.
336 int rows =1;
341 status.add(rows, Integer.valueOf(SyncResolver.DELETE_ROW_CONFLICT));
345 status.add(rows, Integer.valueOf(SyncResolver.NO_ROW_CONFLICT));
353 status.add(rows, Integer.valueOf(SyncResolver.INSERT_ROW_CONFLICT));
357 status.add(rows, Integer.valueOf(SyncResolver.NO_ROW_CONFLICT));
362 status.add(rows, Integer.valueOf(SyncResolver.UPDATE_ROW_CONFLICT));
366 status.add(rows, Integer.valueOf(SyncResolver.NO_ROW_CONFLICT));
372 * as nothing is to be done for such rows
[all...]
/openjdk7/langtools/test/tools/javac/types/
H A DGenericTypeWellFormednessTest.java50 InstantiableType[] rows; field in class:GenericTypeWellFormednessTest
87 /*is a type in 'rows' a valid instantiation for the generic class in 'col' ? */
187 rows = join(InstantiableType.class, invariantTypes, covariantTypes, contravariantTypes, bivariantTypes);
221 for (int i = 0; i < rows.length ; i++) {
224 Type inst = rows[i].inst(decl);
H A DBoxingConversionTest.java221 Type[] rows = testKind.getFromTypes(this);
223 for (int i = 0; i < rows.length ; i++) {
225 convKind.check(this, rows[i], cols[j], testKind.getResults(this)[i][j]);
H A DPrimitiveConversionTest.java243 Type[] rows = testKind.getFromTypes(this);
245 for (int i = 0; i < rows.length ; i++) {
247 convKind.check(this, rows[i], cols[j], testKind.getResults(this)[i][j]);
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DVariableGridLayout.java37 public VariableGridLayout(int rows, int cols, argument
40 super(rows, cols, hgap, vgap);
H A DJConsole.java397 int rows = (int)Math.ceil(Math.sqrt(n));
398 int cols = n / rows;
399 if (rows * cols < n) cols++;
403 h /= rows;
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DTableView.java51 rows = new Vector<RowView>();
94 * The number of rows in the table.
97 return rows.size();
101 * Fetch the span of multiple rows. This includes
129 if (row < rows.size()) {
130 return rows.elementAt(row);
176 * Determines the number of rows occupied by
268 // determine which views are table rows and clear out
271 rows.removeAllElements();
276 rows
993 Vector<RowView> rows; field in class:TableView
[all...]
H A DAccessibleHTML.java1406 * Any time one of the rows or columns becomes invalid the table is
1455 // children are table rows.
1468 int rows;
1480 rows = getChildCount() + delta;
1483 grid = new TableCellElementInfo[rows][];
1484 for (int counter = 0; counter < rows; counter++) {
1488 for (int counter = 0; counter < rows; counter++) {
1518 int rows = cell.getRowCount();
1524 return rows - delta + 1;
1548 * Returns the number of rows i
[all...]
H A DFormView.java185 int rows = HTML.getIntegerAttributeValue(attr,
188 area.setRows(rows);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTree.java248 * Number of rows to make visible at one time. This value is used for
1694 int[] rows = { row };
1696 setSelectionRows(rows);
1700 * Selects the nodes corresponding to each of the specified rows
1701 * in the display. If a particular element of <code>rows</code> is
1704 * in <code>rows</code> are valid rows, the selection will
1708 * @param rows an array of ints specifying the rows to select,
1711 public void setSelectionRows(int[] rows) { argument
1776 addSelectionRows(int[] rows) argument
2642 removeSelectionRows(int[] rows) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DBaseRowSet.java268 * <LI>Does not show rows that have been deleted.
271 * <LI>Has no limit for the number of rows it may contain.
286 * of rows for the <code>CachedRowSet</code> object <i>crs</i> to 500.
412 * A <code>boolean</code> indicating whether deleted rows are visible in this
429 * The maximum number of rows the reader should read.
494 * A hint to the driver that indicates the expected number of rows
630 * one of its rows has changed.
1183 * Retrieves the maximum number of rows that this <code>RowSet</code> object may contain. If
1184 * this limit is exceeded, the excess rows are silently dropped.
1187 * rows; zer
1433 setFetchSize(int rows) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXTextAreaPeer.java238 public Dimension getPreferredSize(int rows, int cols) { argument
239 return getMinimumSize(rows, cols);
246 public Dimension getMinimumSize(int rows, int cols) { argument
249 d = jtext.getMinimumSize(rows,cols);
271 fm.getHeight() * rows + /*2*YMARGIN +*/ hsbheight);
554 public Dimension minimumSize(int rows, int cols) { argument
555 return getMinimumSize(rows, cols);
562 public Dimension preferredSize(int rows, int cols) { argument
563 return getPreferredSize(rows, cols);
H A DXListPeer.java232 public Dimension getPreferredSize(int rows) { argument
233 return preferredSize(rows);
237 public Dimension getMinimumSize(int rows) { argument
238 return minimumSize(rows);
1658 * Fixed 5010944: List's rows overlap one another
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicFileChooserUI.java1306 int[] rows = table.getSelectedRows();
1307 if (rows != null) {
1308 values = new Object[rows.length];
1309 for (int i=0; i<rows.length; i++) {
1310 values[i] = table.getValueAt(rows[i], 0);
H A DBasicTableUI.java1708 * row height times the number of rows.
1723 * row height times the number of rows.
1738 * row heighttimes the number of rows.
1788 // If the table does not have enough rows to fill the view we'll get -1.
2151 int[] rows;
2161 rows = new int[rowCount];
2163 rows[counter] = counter;
2166 rows = table.getSelectedRows();
2180 if (rows == null || cols == null || rows
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/
H A DHtmlTree.java282 * @param rows the size of rows in the frameset
287 public static HtmlTree FRAMESET(String cols, String rows, String title, String onload) { argument
291 if (rows != null)
292 htmltree.addAttr(HtmlAttr.ROWS, rows);
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Font.h186 * of rows and columns. 'font' can be a temporary object.
188 static SIZE TextSize(AwtFont* font, int columns, int rows);
/openjdk7/jdk/make/tools/src/build/tools/generatebreakiteratordata/
H A DRuleBasedBreakIteratorBuilder.java1277 * @param rows The list of rows that need updating (the decision point list)
1282 private void updateStateTable(Vector rows, argument
1292 // go through the list of rows to update, and update them by calling
1294 for (int i = 0; i < rows.size(); i++) {
1295 mergeStates(((Integer)rows.elementAt(i)).intValue(), newValues, rows);
1315 * @param rowsBeingUpdated A copy of the list of rows passed to updateStateTable()
1325 // for each of the cells in the rows we're reconciling, do...
1392 // if the decision point list contains either of the parent rows,
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFileChooserUI.java570 final int[] rows = fFileList.getSelectedRows();
574 if (rows.length > 0) {
575 for (final int element : rows) {
581 for (int i = 0, si = 0; i < rows.length; i++) {
582 f = (File)fFileList.getValueAt(rows[i], 0);
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DCachedRowSetImpl.java130 * object not counting rows that have been deleted, if any.
133 * that started with five rows and subsequently had the second and third
134 * rows deleted. The <code>absolutePos</code> would be <code>3</code>,
141 * The number of deleted rows currently in this <code>CachedRowSetImpl</code>
148 * The total number of rows currently in this <code>CachedRowSetImpl</code>
222 * up of rows for populating a CachedRowSet object was left off.
228 * up of rows for populating a CachedRowSet object was left off.
250 * The integer value indicating number of rows that have been processed so far.
276 * The integer value indicating the total number of rows to be processed in the
322 * the capacity to hold 100 rows
3603 relative(int rows) argument
[all...]
H A DJdbcRowSetImpl.java115 * <LI>Does not show deleted rows
118 * <LI>Has no limit for the number of rows it may contain
237 * <LI>Does not show deleted rows
240 * <LI>Has no limit for the number of rows it may contain
311 * <LI>Does not show deleted rows
314 * <LI>Has no limit for the number of rows it may contain
399 * <LI>Does not show deleted rows
402 * <LI>Has no limit for the number of rows it may contain
548 * size, maximum number of rows, and query timeout limit) to be those
816 * <code>false</code> if there are no more rows
2002 relative(int rows) argument
2090 setFetchSize(int rows) argument
[all...]
/openjdk7/jdk/test/java/awt/Graphics2D/RenderClipTest/
H A DRenderClipTest.java1425 int rows; field in class:RenderClipTest.SmartGridLayout
1431 this.rows = r;
1445 int nrows = rows;
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DDefaultMXBeanMappingFactory.java775 final Collection<CompositeData> rows = cast(table.values());
778 for (CompositeData row : rows) {

Completed in 382 milliseconds

123