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

1234567

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DRetData.java66 static int bciCellIndex(int row) { argument
67 return bci0Offset + row * retRowCellCount;
69 static int bciCountCellIndex(int row) { argument
70 return count0Offset + row * retRowCellCount;
72 static int bciDisplacementCellIndex(int row) { argument
73 return displacement0Offset + row * retRowCellCount;
77 int bci(int row) { argument
78 return intAt(bciCellIndex(row));
80 int bciCount(int row) { argument
81 return uintAt(bciCountCellIndex(row));
83 bciDisplacement(int row) argument
88 bciOffset(int row) argument
91 bciCountOffset(int row) argument
94 bciDisplacementOffset(int row) argument
[all...]
H A DReceiverTypeData.java65 public static int receiverCellIndex(int row) { argument
66 return receiver0Offset + row * receiverTypeRowCellCount;
68 public static int receiverCountCellIndex(int row) { argument
69 return count0Offset + row * receiverTypeRowCellCount;
72 // Get the receiver at row. The 'unchecked' version is needed by parallel old
76 Klass receiverUnchecked(int row) { argument
77 //assert(row < rowLimit(), "oob");
78 Oop recv = oopAt(receiverCellIndex(row));
82 public Klass receiver(int row) { argument
83 Klass recv = receiverUnchecked(row);
88 receiverCount(int row) argument
94 receiverOffset(int row) argument
97 receiverCountOffset(int row) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DTableStringConverter.java40 * @param row the row the string is being requested for
47 public abstract String toString(TableModel model, int row, int column); argument
H A DTableCellRenderer.java48 * see if the given row and column represent the drop location:
54 * && dropLocation.getRow() == row
85 * @param row the row index of the cell being drawn. When
87 * <code>row</code> is -1
93 int row, int column);
91 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
H A DDefaultTableModel.java167 * the row index and the second is the column index.
182 * each a single row of values. In other words, to get to the cell
183 * at row 1, column 5: <p>
204 * Each row is represented in <code>dataVector</code> as a
208 * mapped to column 0 in <code>dataVector</code>. Each row in
232 * array is the row index and the second is the column index.
343 * Adds a row to the end of the model. The new row will contain
345 * Notification of the row being added will be generated.
347 * @param rowData optional data of the row bein
373 insertRow(int row, Vector rowData) argument
388 insertRow(int row, Object[] rowData) argument
462 removeRow(int row) argument
634 isCellEditable(int row, int column) argument
648 getValueAt(int row, int column) argument
664 setValueAt(Object aValue, int row, int column) argument
[all...]
H A DTableCellEditor.java65 * @param row the row of the cell being edited
71 int row, int column);
69 getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column) argument
/openjdk7/jdk/src/share/classes/java/awt/
H A DGridBagLayoutInfo.java46 int minHeight[]; /* largest minHeight in each row */
48 double weightY[]; /* largest weight in each row */
53 // row.
55 * row. A mix of the BaselineResizeBehavior
73 * Returns true if the specified row has any component aligned on the
76 boolean hasConstantDescent(int row) { argument
77 return ((baselineType[row] & (1 << Component.BaselineResizeBehavior.
82 * Returns true if there is a baseline for the specified row.
84 boolean hasBaseline(int row) { argument
85 return (hasBaseline && baselineType[row] !
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXTable.java77 * Converts the row into index (before sorting)
79 public int convertRowToIndex(int row) { argument
80 if (row == -1) return row;
82 return ((TableSorter) getModel()).getIndexOfRow(row);
84 return row;
96 public abstract boolean isReadable(int row); argument
97 public abstract boolean isWritable(int row); argument
98 public abstract boolean isCellError(int row, int col); argument
99 public abstract boolean isAttributeViewable(int row, in argument
100 setTableValue(Object value,int row) argument
101 getValue(int row) argument
102 getClassName(int row) argument
103 getValueName(int row) argument
105 isReadWrite(int row) argument
113 isCellEditable(int row, int col) argument
120 isCellDroppable(int row, int col) argument
126 getToolTip(int row, int column) argument
135 getCellRenderer(int row, int column) argument
163 prepareRenderer(TableCellRenderer renderer, int row, int column) argument
[all...]
H A DXMBeanAttributes.java123 int row, int column) {
127 if(row >= getRowCount())
130 return super.prepareRenderer(renderer, row, column);
133 void updateRowHeight(Object obj, int row) { argument
138 setRowHeight(row, cell.getHeight());
141 setRowHeight(row, rowMinHeight);
144 setRowHeight(row, rowMinHeight);
148 public synchronized TableCellRenderer getCellRenderer(int row, argument
153 if (row >= getRowCount()) {
157 Object obj = getModel().getValueAt(row, colum
122 prepareRenderer(TableCellRenderer renderer, int row, int column) argument
213 editCellAt(final int row, final int column, EventObject e) argument
233 isCellEditable(int row, int col) argument
248 setValueAt(Object value, int row, int column) argument
265 setTableValue(Object value, int row) argument
277 getClassName(int row) argument
288 getValueName(int row) argument
298 getValue(int row) argument
306 getToolTip(int row, int column) argument
332 isWritable(int row) argument
351 isReadable(int row) argument
361 isCellError(int row, int col) argument
366 isAttributeViewable(int row, int col) argument
571 updateZoomedCell(int row, int col) argument
817 getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column) argument
878 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/
H A DSmartGridLayout.java66 for (int row = 0; row < rows; row++) {
67 rowHeights[row] = computeRowHeight(row);
82 for (int row = 0; row < rows; row++) {
83 Component current = layoutGrid[column][row];
85 current.setBounds(horizLoc, vertLoc, columnWidths[column], rowHeights[row]);
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DVariableGridLayout.java87 for (int row = 0; row < nrows; row++) {
88 // Find largest minimum height for this row
91 if (row * ncols + col < nComps) {
92 Component c = parent.getComponent(row * ncols + col);
96 // Set heights for this row
99 if (row * ncols + col < nComps) {
100 JComponent c = (JComponent)parent.getComponent(row * ncols + col);
105 fills[row]
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ci/
H A DciReceiverTypeData.java39 public Klass receiver(int row) { argument
43 public ciKlass receiverAt(int row) { argument
44 //assert((uint)row < rowLimit(), "oob");
45 ciObject recv = ciObjectFactory.get(addressAt(receiverCellIndex(row)));
H A DciVirtualCallData.java39 public Klass receiver(int row) { argument
43 public ciKlass receiverAt(int row) { argument
44 //assert((uint)row < rowLimit(), "oob");
45 ciObject recv = ciObjectFactory.get(addressAt(receiverCellIndex(row)));
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DPiscesCache.java39 // rowAARLE[i] holds the encoding of the pixel row with y = bboxY0+i.
41 // where x0 is the first x in row i with nonzero alpha, and n is the
42 // number of RLE entries in this row. rowAARLE[i][j,j+1] for j>1 is
49 // the row terminated). x0,y0 is this (x,y)-(bboxX0,bboxY0). They
85 // the x and y of the current row, minus bboxX0, bboxY0
135 // this should be a new, uninitialized row.
162 private void addTupleToRow(int row, int a, int b) { argument
163 int end = rowAARLE[row][1];
164 rowAARLE[row] = Helpers.widenArray(rowAARLE[row], en
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/treetable/
H A DTreeTableModelAdapter.java107 protected Object nodeForRow(int row) { argument
108 TreePath treePath = tree.getPathForRow(row);
112 public Object getValueAt(int row, int column) { argument
113 return treeTableModel.getValueAt(nodeForRow(row), column);
116 public boolean isCellEditable(int row, int column) { argument
117 return treeTableModel.isCellEditable(nodeForRow(row), column);
120 public void setValueAt(Object value, int row, int column) { argument
121 treeTableModel.setValueAt(value, nodeForRow(row), column);
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DRawOutputFormatter.java61 StringBuilder row = new StringBuilder();
66 row.append(" ");
69 row.append("\"").append(m.getValue()).append("\"");
71 row.append(m.getValue());
74 return row.toString();
H A DRowClosure.java34 * data representing a row of output for the form.
41 private StringBuilder row = new StringBuilder(); field in class:RowClosure
70 row.append(s);
72 row.append(" ");
77 return row.toString();
/openjdk7/jdk/src/share/classes/java/text/
H A DBreakDictionary.java92 * The actual compressed state table. Each conceptual row represents
93 * a state, and the cells in it contain the row numbers of the states
98 * physical row by sliding them up and possibly shifting them to one
105 * This index maps logical row numbers to physical row numbers
113 * successive entries in this array are used for a single row.
118 * This index maps from a logical row number into the bitmap table above.
128 * For each logical row, this index contains a constant that is added to
209 // read in the row-number index
231 // load in the row
268 getNextStateFromCharacter(int row, int ch) argument
289 getNextState(int row, int col) argument
308 cellIsPopulated(int row, int col) argument
335 internalAt(int row, int col) argument
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodDataOop.cpp188 for (uint row = 0; row < row_limit(); row++) {
189 if (receiver(row) != NULL) {
190 oop* adr = adr_receiver(row);
210 for (uint row = 0; row < row_limit(); row++) {
211 if (receiver(row) != NULL) {
212 oop* adr = adr_receiver(row);
278 uint row; local
356 uint row; local
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpTableCallbackHandler.java58 public void addEntryCb(int pos, SnmpOid row, ObjectName name, argument
73 public void removeEntryCb(int pos, SnmpOid row, ObjectName name, argument
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DTreeCellEditor.java59 * @param row the row index of the node being edited
64 boolean leaf, int row);
62 getTreeCellEditorComponent(JTree tree, Object value, boolean isSelected, boolean expanded, boolean leaf, int row) argument
H A DTreeCellRenderer.java58 * see if the given row represents the drop location:
63 * && tree.getRowForPath(dropLocation.getPath()) == row) {
65 * // this row represents the current drop location
74 boolean leaf, int row, boolean hasFocus);
72 getTreeCellRendererComponent(JTree tree, Object value, boolean selected, boolean expanded, boolean leaf, int row, boolean hasFocus) argument
/openjdk7/jdk/test/javax/swing/JTable/4220171/
H A Dbug4220171.java84 static void checkCell(final int row, final int column) throws Exception { argument
88 if (table.getValueAt(row, column) != null) {
90 String.format("Cell (%d, %d) is editable", row, column));
96 static void clickMouse(Robot robot, int row, int column) throws Exception { argument
97 Point point = getCellClickPoint(row, column);
103 private static Point getCellClickPoint(final int row, final int column) throws Exception { argument
109 Rectangle rect = table.getCellRect(row, column, false);
/openjdk7/jdk/test/java/awt/Focus/NonFocusableWindowTest/
H A DNoEventsTest.java178 public NoEventsTest(int row, int col, boolean focusable, boolean resizable) { argument
179 super("Frame" + row + "" + col);
180 TestPanel panel = new TestPanel(row, col);
182 row = NoEventsTest.DEF_ROW;
191 setBounds(NoEventsTest.DEF_LEFT + DEF_WIDTH*col, DEF_TOP + DEF_HEIGHT*row, DEF_WIDTH, DEF_HEIGHT);
202 public TestWindow(int row, int col, boolean focusable, Frame owner) { argument
204 setName("Window" + row + "" + col);
205 TestPanel panel = new TestPanel(row, col);
207 row = NoEventsTest.DEF_ROW;
217 setBounds(NoEventsTest.DEF_LEFT + NoEventsTest.DEF_WIDTH*col, NoEventsTest.DEF_TOP + NoEventsTest.DEF_HEIGHT*row, NoEventsTes
225 TestDialog(int row, int col, boolean focusable, boolean resizable, Frame owner) argument
280 TestPanel(int row, int col) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DTableView.java40 * elements of the row elements are cells. The cell elements can
84 * Creates a new table row.
87 * @return the row
130 * Fetches the span (height) of the given row.
132 int getRowSpan(int row) { argument
133 View rv = getRow(row);
140 TableRow getRow(int row) { argument
141 if (row < rows.size()) {
142 return rows.elementAt(row);
180 // fall through to one row
281 addFill(int row, int col) argument
621 setRow(int row) argument
791 int row; field in class:TableView.TableRow
839 setGridLocation(int row, int col) argument
858 int row; field in class:TableView.TableCell
877 setGridLocation(int row, int col) argument
[all...]

Completed in 564 milliseconds

1234567