Searched defs:row (Results 101 - 124 of 124) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DVariableHeightLayoutCache.java147 * queried for each row's height.
225 * Returns the path for <code>row</code>. If <code>row</code>
228 * @param row the location of interest
229 * @return the path for <code>row</code>, or <code>null</code>
230 * if <code>row</code> is not visible
232 public TreePath getPathForRow(int row) { argument
233 if(row >= 0 && row < getRowCount()) {
234 return getNode(row)
715 getBounds(int row, Rectangle placeIn) argument
992 getNode(int row) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DJoinRowSetImpl.java449 * contain modification data, such as whether a row has been updated or what the
945 * Moves the cursor down one row from its current position and
947 * valid row.
949 * positioned before the first row. The first call to the method
950 * <code>next</code> moves the cursor to the first row, making it
951 * the current row; the second call makes the second row the
952 * current row, and so on.
954 * <P>If an input stream from the previous row is open, it is
956 * chain is cleared when a new row i
2040 absolute(int row) argument
[all...]
H A DJdbcRowSetImpl.java804 * object down one row from its current position.
806 * before the first row; the first call to the method
807 * <code>next</code> makes the first row the current row; the
808 * second call makes the second row the current row, and so on.
810 * <P>If an input stream is open for the current row, a call
813 * warning chain is cleared when a new row is read.
815 * @return <code>true</code> if the new current row is valid;
878 * Gets the value of the designated column in the current row
1972 absolute(int row) argument
[all...]
H A DCachedRowSetImpl.java99 * object that form a unique identifier for a row. This array
132 * For example, suppose that the cursor is on the last row of a rowset
155 * A special row used for constructing a new row. A new
156 * row is constructed by using <code>ResultSet.updateXXX</code>
157 * methods to insert column values into the insert row.
164 * currently on the insert row.
171 * cursor before it moved to the insert row, thus preserving
172 * the number of the current row to which the cursor may return.
377 // insert row setu
6364 makeRowOriginal(Row row) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/swing/
H A DSwingUtilities2.java688 * item at the given row of the table. (Column must be 0).
693 public static boolean pointOutsidePrefSize(JTable table, int row, int column, Point p) { argument
694 if (table.convertColumnIndexToModel(column) != 0 || row == -1) {
697 TableCellRenderer tcr = table.getCellRenderer(row, column);
698 Object value = table.getValueAt(row, column);
700 false, row, column);
702 Rectangle cellBounds = table.getCellRect(row, column, false);
H A DFilePane.java759 public Object getValueAt(int row, int col) { argument
765 return getFileColumnValue((File)directoryModel.getElementAt(row), col);
774 public void setValueAt(Object value, int row, int col) { argument
777 File f = (File)getValueAt(row, col);
828 public boolean isCellEditable(int row, int column) { argument
950 public Object getValueAt(int row, int column) { argument
951 return FilePane.this.getModel().getElementAt(row);
954 public Integer getIdentifier(int row) { argument
955 return row;
1017 boolean isSelected, int row, in
1016 getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column) argument
1059 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
1253 getTableCellRendererComponent( JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicListUI.java106 * Number of rows per column. This is only used if the row height is
197 int row,
204 Object value = dataModel.getElementAt(row);
205 boolean cellHasFocus = list.hasFocus() && (row == leadIndex);
206 boolean isSelected = selModel.isSelectedIndex(row);
209 cellRenderer.getListCellRendererComponent(list, value, row, isSelected, cellHasFocus);
301 int row = convertLocationToRowInColumn(paintBounds.y, colCounter);
303 int index = getModelIndex(colCounter, row);
310 while (row < rowCount && rowBounds.y < maxY &&
312 rowBounds.height = getHeight(colCounter, row);
195 paintCell( Graphics g, int row, Rectangle rowBounds, ListCellRenderer cellRenderer, ListModel dataModel, ListSelectionModel selModel, int leadIndex) argument
1049 getRowHeight(int row) argument
1078 convertRowToY(int row) argument
1090 getHeight(int column, int row) argument
1219 getModelIndex(int column, int row) argument
[all...]
H A DBasicTableUI.java242 * row or column selection is allowed). When performing modifications,
261 // both column and row selection
268 // row selection only
344 * Find the next lead row and column based on the given
958 // The row and column where the press occurred and the
1245 int row = table.rowAtPoint(p);
1249 if ((column == -1) || (row == -1)) {
1253 table.changeSelection(row, column,
1330 * item at the given row of the table. (Column must be 0).
1333 private boolean pointOutsidePrefSize(int row, in argument
2105 paintCell(Graphics g, Rectangle cellRect, int row, int column) argument
2120 getAdjustedLead(JTable table, boolean row, ListSelectionModel model) argument
2129 getAdjustedLead(JTable table, boolean row) argument
[all...]
H A DBasicTreeUI.java88 /** Index of the row that was last selected. */
362 * Sets the row height, this is forwarded to the treeState.
542 * Returns the path for passed in row. If row is not visible
545 public TreePath getPathForRow(JTree tree, int row) { argument
546 return (treeState != null) ? treeState.getPathForRow(row) : null;
550 * Returns the row that the last item identified in path is visible
703 // JTree's original row height is 16. To correctly display the
706 // be backward compatable and try to update the row height, we're
707 // therefor NOT going to adjust the row heigh
1346 paintHorizontalPartOfLeg(Graphics g, Rectangle clipBounds, Insets insets, Rectangle bounds, TreePath path, int row, boolean isExpanded, boolean hasBeenExpanded, boolean isLeaf) argument
1477 paintExpandControl(Graphics g, Rectangle clipBounds, Insets insets, Rectangle bounds, TreePath path, int row, boolean isExpanded, boolean hasBeenExpanded, boolean isLeaf) argument
1516 paintRow(Graphics g, Rectangle clipBounds, Insets insets, Rectangle bounds, TreePath path, int row, boolean isExpanded, boolean hasBeenExpanded, boolean isLeaf) argument
1547 shouldPaintExpandControl(TreePath path, int row, boolean isExpanded, boolean hasBeenExpanded, boolean isLeaf) argument
1663 getRowX(int row, int depth) argument
2406 isLeaf(int row) argument
2782 getNodeDimensions(Object value, int row, int depth, boolean expanded, Rectangle size) argument
2837 getRowX(int row, int depth) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DAccessibleHTML.java711 // only table child that is not a table row.
1404 * allow for access by row, column. TableElementInfo will contain
1416 * Allocation of the table by row x column. There may be holes (eg
1465 // Determine the max row/col count.
1470 TableRowElementInfo row = getRow(counter);
1476 delta = Math.max(row.getRowCount(), delta);
1478 maxCols = Math.max(maxCols, row.getColumnCount() + prev);
1501 * Returns the TableCellElementInfo by row and column.
1753 * Returns the Accessible at a specified row and column
1756 * @param r zero-based row o
2489 updateGrid(int row) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DSyncResolverImpl.java65 * This ArrayList will contain the status of a row
95 * a row at any time. This will be built from CachedRowSet and
96 * SyncResolver values. Synchronization takes place on a row by
97 * row basis encapsulated as a CahedRowSet.
99 private CachedRowSet row; field in class:SyncResolverImpl
111 row = new CachedRowSetImpl();
125 * Retrieves the conflict status of the current row of this
139 * Retrieves the value in the designated column in the current row of this
142 * @param index <code>int</code> designating the column in this row of this
155 * Retrieves the value in the designated column in the current row o
300 writeData(CachedRowSet row) argument
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dinterp_masm_x86_32.cpp1108 // Test this row for both the receiver and for null.
1114 for (int row = start_row; row <= last_row; row++) {
1116 bool test_for_null_also = (row == start_row);
1119 int recvr_offset = in_bytes(VirtualCallData::receiver_offset(row));
1126 int count_offset = in_bytes(VirtualCallData::receiver_count_offset(row));
1131 if (row == start_row) {
1139 // Receiver did not match any saved receiver and there is no empty row for it.
1189 uint row; local
[all...]
H A Dinterp_masm_x86_64.cpp1118 // This routine creates a state machine for updating the multi-row
1120 // The machine visits each row (of receiver/count) until the receiver type
1122 // the location of the first empty row. (An empty row records null for its
1142 // Test this row for both the receiver and for null.
1148 for (int row = start_row; row <= last_row; row++) {
1150 bool test_for_null_also = (row == start_row);
1153 int recvr_offset = in_bytes(VirtualCallData::receiver_offset(row));
1248 uint row; local
[all...]
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djquant2.c124 * of a true 3-D array, we use a row of pointers to 2-D arrays. Each
127 * on 80x86 machines, the pointer row is in near memory but the actual
169 * We can get away with a single array (holding one row's worth of errors)
170 * by using it to store the current row's errors at pixel columns not yet
171 * processed, but the next row's errors at columns already processed. We
211 boolean on_odd_row; /* flag to remember which row we are on */
235 int row; local
239 for (row = 0; row < num_rows; row
928 int row; local
968 int row; local
[all...]
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpng.c512 int row; local
513 for (row = 0; row < (int)info_ptr->height; row++)
515 png_free(png_ptr, info_ptr->row_pointers[row]);
516 info_ptr->row_pointers[row] = NULL;
H A Dpngrtran.c25 /* pngrtran.c - transforms the data in a row for PNG readers
1337 * row loop.
1464 * earlier and the palette stuff is actually handled on the first row. This
2036 /* Transform the row. The order of transformations is significant,
2047 /* Prior to 1.5.4 this output row/pass where the NULL pointer is, but this
2051 png_error(png_ptr, "NULL row buffer");
2066 png_error(png_ptr, "Uninitialized row");
2293 /* png_uint_32 width; width of row */
2294 /* png_size_t rowbytes; number of bytes in row */
2299 png_ptr->row_buf + 1); /* start of pixel data for row */
2324 png_do_unpack(png_row_infop row_info, png_bytep row) argument
2422 png_do_unshift(png_row_infop row_info, png_bytep row, png_const_color_8p sig_bits) argument
2538 png_do_scale_16_to_8(png_row_infop row_info, png_bytep row) argument
2599 png_do_chop(png_row_infop row_info, png_bytep row) argument
2624 png_do_read_swap_alpha(png_row_infop row_info, png_bytep row) argument
2721 png_do_read_invert_alpha(png_row_infop row_info, png_bytep row) argument
2823 png_do_read_filler(png_row_infop row_info, png_bytep row, png_uint_32 filler, png_uint_32 flags) argument
3010 png_do_gray_to_rgb(png_row_infop row_info, png_bytep row) argument
3118 png_do_rgb_to_gray(png_structp png_ptr, png_row_infop row_info, png_bytep row) argument
3435 png_do_compose(png_row_infop row_info, png_bytep row, png_structp png_ptr) argument
4147 png_do_gamma(png_row_infop row_info, png_bytep row, png_structp png_ptr) argument
4348 png_do_encode_alpha(png_row_infop row_info, png_bytep row, png_structp png_ptr) argument
4414 png_do_expand_palette(png_row_infop row_info, png_bytep row, png_const_colorp palette, png_const_bytep trans_alpha, int num_trans) argument
4567 png_do_expand(png_row_infop row_info, png_bytep row, png_const_color_16p trans_color) argument
4797 png_do_expand_16(png_row_infop row_info, png_bytep row) argument
4825 png_do_quantize(png_row_infop row_info, png_bytep row, png_const_bytep palette_lookup, png_const_bytep quantize_lookup) argument
4921 png_do_read_intrapixel(png_row_infop row_info, png_bytep row) argument
[all...]
H A Dpngrutil.c2698 /* Combines the row recently read in with the existing pixels in the
2699 * row. This routine takes care of alpha and transparency if requested.
2703 * the row. The pattern always repeats every 8 pixels, so just 8
2711 png_combine_row(png_structp png_ptr, png_bytep row, int mask) argument
2721 png_error(png_ptr, "internal row size calculation error");
2725 png_memcpy(row, png_ptr->row_buf + 1,
2736 png_bytep dp = row;
2794 png_bytep dp = row;
2851 png_bytep dp = row;
2907 png_bytep dp = row;
2940 png_bytep row = png_ptr->row_buf + 1; local
3179 png_read_filter_row(png_structp png_ptr, png_row_infop row_info, png_bytep row, png_const_bytep prev_row, int filter) argument
[all...]
H A Dpngwutil.c998 /* Number of pixels, plus for each row a filter byte
2030 /* Initializes the row writing capability of libpng */
2057 /* Set up row buffer */
2072 /* We only need to keep the previous row if we are using one of these. */
2075 /* Set up previous row buffer */
2137 /* Internal use only. Called when finished processing a row of data. */
2161 /* Next row */
2205 /* Reset the row above the image for the next pass */
2218 /* If we get here, we've just written the last row, so we need
2260 * The basic idea here is to go through the row wit
2267 png_do_write_interlace(png_row_infop row_info, png_bytep row, int pass) argument
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dinterp_masm_sparc.cpp1653 // Test this row for both the receiver and for null.
1659 for (int row = start_row; row <= last_row; row++) {
1661 bool test_for_null_also = (row == start_row);
1664 int recvr_offset = in_bytes(VirtualCallData::receiver_offset(row));
1669 int count_offset = in_bytes(VirtualCallData::receiver_count_offset(row));
1682 // Receiver did not match any saved receiver and there is no empty row for it.
1738 uint row; local
1746 for (row
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFileChooserUI.java1381 public Component getTableCellRendererComponent(final JTable localTable, final Object value, final boolean isSelected, final boolean hasFocus, final int row, final int column) { argument
1677 final int row = fFileList.rowAtPoint(p);
1681 if ((column == -1) || (row == -1)) { return; }
1683 final File clickedFile = (File)(fFileList.getValueAt(row, 0));
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmscgats.c147 char SheetType[MAXSTR]; // The first row of the IT8 (the type)
2551 const char* CMSEXPORT cmsIT8GetDataRowCol(cmsHANDLE hIT8, int row, int col) argument
2557 return GetData(it8, row, col);
2561 cmsFloat64Number CMSEXPORT cmsIT8GetDataRowColDbl(cmsHANDLE hIT8, int row, int col) argument
2565 Buffer = cmsIT8GetDataRowCol(hIT8, row, col);
2571 cmsBool CMSEXPORT cmsIT8SetDataRowCol(cmsHANDLE hIT8, int row, int col, const char* Val) argument
2577 return SetData(it8, row, col, Val);
2581 cmsBool CMSEXPORT cmsIT8SetDataRowColDbl(cmsHANDLE hIT8, int row, int col, cmsFloat64Number Val) argument
2590 return SetData(it8, row, col, Buff);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTree.java53 * display row, where each row in the display area displays one node.
109 * NOTE: This example obtains both the path and row, but you only need to
176 * Height to use for each display row. If this is <= 0 the renderer
177 * determines the height for each row.
420 * The row to expand during DnD.
963 * queried for each row's height.
983 * Returns the height of each row. If the returned value is less than
984 * or equal to 0 the height for each row is determined by the
994 * Returns true if the height of each display row i
1589 convertValueToText(Object value, boolean selected, boolean expanded, boolean leaf, int row, boolean hasFocus) argument
1693 setSelectionRow(int row) argument
1764 addSelectionRow(int row) argument
1922 isRowSelected(int row) argument
2013 isExpanded(int row) argument
2048 isCollapsed(int row) argument
2115 getRowBounds(int row) argument
2152 scrollRowToVisible(int row) argument
2166 getPathForRow(int row) argument
2218 expandRow(int row) argument
2241 collapseRow(int row) argument
2629 removeSelectionRow(int row) argument
[all...]
H A DJTable.java80 * public Object getValueAt(int row, int col) { return new Integer(row*col); }
97 * You can set up a row sorter in either of two ways:
133 * the column and row indexes returned by various <code>JTable</code> methods
154 * conversions will be necessary when using the row based methods of
156 * All of <code>JTable</code>s row based methods are in terms of the
174 * selection and variable row heights in terms of the model on
175 * sorting. For example if row 0, in terms of the underlying model,
176 * is currently selected, after the sort row 0, in terms of the
180 * visible or was removed. For example, if row
458 private final int row; field in class:JTable.DropLocation
463 DropLocation(Point p, int row, int col, boolean isInsertRow, boolean isInsertCol) argument
975 setRowHeight(int row, int rowHeight) argument
992 getRowHeight(int row) argument
2135 getAdjustedIndex(int index, boolean row) argument
2140 boundRow(int row) argument
2324 isRowSelected(int row) argument
2350 isCellSelected(int row, int column) argument
2715 getValueAt(int row, int column) argument
2739 setValueAt(Object aValue, int row, int column) argument
2763 isCellEditable(int row, int column) argument
2924 getCellRect(int row, int column, boolean includeSpacing) argument
3468 editCellAt(int row, int column) argument
3489 editCellAt(int row, int column, EventObject e) argument
5398 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
5480 getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column) argument
5678 getCellRenderer(int row, int column) argument
5713 prepareRenderer(TableCellRenderer renderer, int row, int column) argument
5757 getCellEditor(int row, int column) argument
5783 prepareEditor(TableCellEditor editor, int row, int column) argument
7549 getAccessibleAt(int row, int column) argument
7909 private int row; field in class:JTable.AccessibleJTable.AccessibleJTableCell
8737 private int row; field in class:JTable.AccessibleJTable.AccessibleJTableHeaderCell
8750 AccessibleJTableHeaderCell(int row, int column, JTableHeader parent, Component rendererComponent) argument
[all...]
/openjdk7/jdk/src/share/native/common/
H A Dcheck_code.c171 * row (256 buckets) at a time to minimize fragmentation. Rows are
484 int row = i / HASH_ROW_SIZE; local
487 if (class_hash->buckets[row] == 0) {
488 class_hash->buckets[row] = (hash_bucket_type*)
490 if (class_hash->buckets[row] == 0)

Completed in 194 milliseconds

12345