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

12345

/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...]
/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DTableRowSorter.java46 * <code>JTable</code>'s row-based methods and <code>JTable</code>'s
57 * Similarly to select a row in <code>JTable</code> based on
60 * table.setRowSelectionInterval(table.convertRowIndexToView(row),
61 * table.convertRowIndexToView(row));
268 public Object getValueAt(int row, int column) { argument
269 return tableModel.getValueAt(row, column);
272 public String getStringValueAt(int row, int column) { argument
277 tableModel, row, column);
285 Object o = getValueAt(row, column);
H A DAbstractTableModel.java45 * public Object getValueAt(int row, int column);
121 * @param rowIndex the row being queried
134 * @param rowIndex row of cell
223 * @param firstRow the first row
224 * @param lastRow the last row
239 * @param firstRow the first row
240 * @param lastRow the last row
254 * @param firstRow the first row
255 * @param lastRow the last row
267 * <code>[row, colum
274 fireTableCellUpdated(int row, int column) argument
[all...]
H A DDefaultTableCellRenderer.java179 * <code>[row, column]</code>
182 * @param row the row of the cell to render
188 boolean isSelected, boolean hasFocus, int row, int column) {
200 && dropLocation.getRow() == row
220 if (alternateColor != null && row % 2 != 0) {
242 if (!isSelected && table.isCellEditable(row, column)) {
187 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
/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/test/compiler/5091921/
H A DTest6890943.java137 private int fall(int row, int column) { argument
139 for ( int p = row+1 ; p < r ; p++) {
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djddctmgr.c181 * coefficients scaled by scalefactor[row]*scalefactor[col], where
215 * coefficients scaled by scalefactor[row]*scalefactor[col], where
220 int row, col; local
227 for (row = 0; row < DCTSIZE; row++) {
231 aanscalefactor[row] * aanscalefactor[col]);
H A Djutils.c130 register int row; local
135 for (row = num_rows; row > 0; row--) {
151 /* Copy a row of coefficient blocks from one place to another. */
H A Djcprepct.c37 * For the simple (no-context-row) case, we just need to buffer one
38 * row group's worth of pixels for the downsampling step. At the bottom of
39 * the image, we pad to a full row group by replicating the last pixel row.
40 * The downsampler's last output row is then replicated if needed to pad
41 * out to a full iMCU row.
43 * When providing context rows, we must buffer three row groups' worth of
44 * pixels. Three row groups are physically allocated, but the row pointer
45 * arrays are made five row group
113 register int row; local
223 int row; local
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXTextFieldEditor.java139 int row,
144 className = mytable.getClassName(row);
136 getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column) argument
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...]
/openjdk7/jdk/src/share/demo/jfc/TableExample/
H A DJDBCAdapter.java188 public boolean isCellEditable(int row, int column) { argument
206 List<Object> row = rows.get(aRow);
207 return row.get(aColumn);
239 public void setValueAt(Object value, int row, int column) { argument
262 getValueAt(row, col));
271 List<Object> dataRow = rows.get(row);
/openjdk7/jdk/test/javax/swing/JSlider/6348946/
H A Dbug6348946.java127 int row, int col) {
139 int row, int col) {
123 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int col) argument
137 getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int col) argument
/openjdk7/jdk/test/javax/swing/JTree/4330357/
H A Dbug4330357.java93 private static Point getTreeRowClickPoint(final int row) throws Exception { argument
101 Rectangle rect = tree.getRowBounds(row);
181 boolean leaf, int row) {
182 if (row % 2 == 0) {
178 getTreeCellEditorComponent(JTree tree, Object value, boolean isSelected, boolean expanded, boolean leaf, int row) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DSPARCDisassembler.java65 // op3 opcodes is broken up into column and row. MSB 2 bits form column.
66 // LSB 4 bits form row number.
76 protected abstract InstructionDecoder getFormat3Decoder(int row, int column); argument
81 int row = getOp3Row(op3);
83 return getFormat3Decoder(row, column).decode(instruction, factory);
86 protected abstract InstructionDecoder getFormat3ADecoder(int row, int column); argument
91 int row = getOp3Row(op3);
93 return getFormat3ADecoder(row, column).decode(instruction, factory);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DObjectListPanel.java178 public Object getValueAt(int row, int col) { argument
179 Oop oop = (Oop) elements.get(row);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultCellEditor.java253 boolean leaf, int row) {
255 expanded, leaf, row, false);
267 int row, int column) {
276 TableCellRenderer renderer = table.getCellRenderer(row, column);
278 isSelected, true, row, column);
250 getTreeCellEditorComponent(JTree tree, Object value, boolean isSelected, boolean expanded, boolean leaf, int row) argument
265 getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column) argument
H A DTablePrintable.java69 * <li>In any mode, when a row is too tall to fit in the
70 * printable area. The upper most portion of the row
123 /** The next row to print. */
124 private int row = 0; field in class:TablePrintable
296 if (row >= table.getRowCount() && col == 0) {
300 // rather than multiplying every row and column by the scale factor
472 int rowHeight = table.getRowHeight(row);
476 if (++row >= rowCount) {
480 rowHeight = table.getRowHeight(row);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTableHeaderUI.java229 int row, int column) {
265 hasFocus, row, column);
226 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsTreeUI.java211 boolean leaf, int row,
214 expanded, leaf, row,
208 getTreeCellRendererComponent(JTree tree, Object value, boolean sel, boolean expanded, boolean leaf, int row, boolean hasFocus) argument
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTableHeaderUI.java115 public Component getTableCellRendererComponent(final JTable localTable, final Object value, final boolean isSelected, final boolean hasFocus, final int row, final int column) { argument
/openjdk7/jdk/src/share/demo/management/JTop/
H A DJTop.java161 public Object getValueAt(int row, int col) { argument
162 Map.Entry<Long, ThreadInfo> me = threadList.get(row);
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dzcrc32.c400 unsigned long row; local
410 row = 1;
412 odd[n] = row;
413 row <<= 1;
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngwtran.c25 /* pngwtran.c - transforms the data in a row for PNG writers
65 /* png_uint_32 width; width of row */
66 /* png_size_t rowbytes; number of bytes in row */
71 png_ptr->row_buf + 1); /* start of pixel data for row */
129 png_do_pack(png_row_infop row_info, png_bytep row, png_uint_32 bit_depth) argument
145 sp = row;
146 dp = row;
182 sp = row;
183 dp = row;
221 sp = row;
274 png_do_shift(png_row_infop row_info, png_bytep row, png_const_color_8p bit_depth) argument
409 png_do_write_swap_alpha(png_row_infop row_info, png_bytep row) argument
503 png_do_write_invert_alpha(png_row_infop row_info, png_bytep row) argument
600 png_do_write_intrapixel(png_row_infop row_info, png_bytep row) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/swing/table/
H A DDefaultTableCellHeaderRenderer.java58 boolean isSelected, boolean hasFocus, int row, int column) {
88 // There is a row sorter, and the developer hasn't
57 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument

Completed in 54 milliseconds

12345