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

12345

/openjdk7/jdk/test/javax/swing/JTree/6505523/
H A Dbug6505523.java75 private static Point getRowPointToClick(final int row) throws Exception { argument
83 Rectangle rect = tree.getRowBounds(row);
/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/javax/swing/table/
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
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
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
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/test/javax/swing/JTable/7055065/
H A Dbug7055065.java82 private static void clickCell(Robot robot, final int row, final int column) argument
87 Rectangle rect = table.getCellRect(row, column, false);
146 public Object getValueAt(int row, int col) {
147 return data[row][col];
158 public boolean isCellEditable(int row, int col) {
162 public void setValueAt(Object aValue, int row, int column) {
163 data[row][column] = aValue;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/table/
H A DLongCellRenderer.java42 int row, int column) {
40 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
H A DSortHeaderCellRenderer.java73 int row, int column) {
71 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) 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/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/sun/tools/jconsole/inspector/
H A DXTreeRenderer.java39 boolean leaf, int row, boolean hasFocus) {
41 tree, value, selected, expanded, leaf, row, hasFocus);
37 getTreeCellRendererComponent( JTree tree, Object value, boolean selected, boolean expanded, boolean leaf, int row, boolean hasFocus) argument
/openjdk7/jdk/src/share/demo/jfc/SampleTree/
H A DSampleTreeCellRenderer.java98 boolean leaf, int row,
101 expanded, leaf, row, hasFocus);
96 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/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DSPARCV8Disassembler.java129 protected InstructionDecoder getFormat3Decoder(int row, int column) { argument
130 return format3Decoders[row][column];
202 protected InstructionDecoder getFormat3ADecoder(int row, int column) { argument
203 return format3ADecoders[row][column];
H A DSPARCV9Disassembler.java126 protected InstructionDecoder getFormat3Decoder(int row, int column) { argument
127 return format3Decoders[row][column];
200 protected InstructionDecoder getFormat3ADecoder(int row, int column) { argument
201 return format3ADecoders[row][column];
/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/javax/swing/event/
H A DTableModelEvent.java77 /** Identifies the header row. */
80 /** Specifies all columns in a row or rows. */
97 * All row data in the table has changed, listeners should discard any state
99 * to get the new row count and all the appropriate values.
111 * This row of data has been updated.
113 * use <code>HEADER_ROW</code> as the value for the <code>row</code>.
120 public TableModelEvent(TableModel source, int row) { argument
121 this(source, row, row, ALL_COLUMNS, UPDATE);
159 /** Returns the first row tha
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DTreeUI.java48 * Returns the path for passed in row. If row is not visible
51 public abstract TreePath getPathForRow(JTree tree, int row); argument
54 * Returns the row that the last item identified in path is visible
/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/demo/jfc/TableExample/
H A DTableMap.java102 public boolean isCellEditable(int row, int column) { argument
103 return model.isCellEditable(row, column);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DTextImpl.java40 public TextImpl(StringBuffer str, SchemaDOM sDOM, int row, int col) { argument
43 fRow = row;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
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...]

Completed in 2808 milliseconds

12345