Searched refs:column (Results 101 - 120 of 120) sorted by relevance

12345

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DListingErrorHandler.java386 int column = locator.getColumnNumber();
389 for (int i = 1; i < column; i++)
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DObjectListPanel.java239 * column.
242 * @param column the column to retrieve
244 public Object getValueForColumn(Object obj, int column) { argument
246 return omodel.getValueForColumn((Oop) obj, column);
H A DMemoryPanel.java52 // Multi-row (and multi-column) selection. Have to duplicate state
103 public Object getValueAt(int row, int column) {
104 switch (column) {
117 default: throw new RuntimeException("Column " + column + " out of bounds");
/openjdk7/hotspot/test/compiler/5091921/
H A DTest6890943.java137 private int fall(int row, int column) { argument
140 if (grid[p][column] == AIR) res++;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLDocumentFragmentScannerImpl.java1068 short column = storePointerForADepth(fElementPointer);
1069 if(column > 0){
1070 short pointer = getElementPointer((short)fElementStack.fDepth, (short)(column - 1) );
1077 resetPointer((short)fElementStack.fDepth , column) ;
1090 void resetPointer(short depth, short column){ argument
1091 fPointerInfo[depth] [column] = (short)0;
1094 //returns column information at which pointer was stored.
1109 sb.append(" column = " + i ) ;
1120 boolean canStore(short depth, short column){ argument
1122 //column
1128 getElementPointer(short depth, short column) argument
1191 skipElement(short column) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXOpenTypeViewer.java138 public TableCellRenderer getCellRenderer(int row, int column) { argument
140 (DefaultTableCellRenderer)super.getCellRenderer(row,column);
141 tcr.setToolTipText(getToolTip(row,column));
150 int row, int column) {
151 Component comp = super.prepareRenderer(renderer, row, column);
158 Object o = ((DefaultTableModel) getModel()).getValueAt(row, column);
159 if (column == 0) {
411 // Update column width
149 prepareRenderer(TableCellRenderer renderer, int row, int column) argument
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DConnectDialog.java416 public TableCellRenderer getCellRenderer(int row, int column) { argument
423 int column) {
426 hasFocus, row, column);
673 public Class<?> getColumnClass(int column) { argument
674 switch (column) {
677 default: return super.getColumnClass(column);
/openjdk7/jdk/make/tools/src/build/tools/generatebreakiteratordata/
H A DRuleBasedBreakIteratorBuilder.java171 * A bit mask used to indicate a bit in the table's flags column that marks
177 * A bit mask used to indicate a bit in the table's flags column that marks
183 * A bit mask used to indicate a bit in the table's flags column that marks
1255 // The temporary state table has an extra "flag column" at the end where this
1257 // flag column.
1351 // the last column of each row is the flag column. Take care to merge the
1649 // If there's a column position where the state being tested transitions to a
1840 // Look down each column in the state table. For each nonzero cell in
1841 // that column, loo
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DTableColumn.java39 * A <code>TableColumn</code> represents all the attributes of a column in a
42 * an editor that can be used to display and edit the values in this column.
45 * rather than a per column basis - see the
52 * The <code>modelIndex</code> is the column in the
54 * cells in this column. As the column moves around in the view this
61 * To show <code>TableColumn</code>s with the same column of
120 * The index of the column in the model which is to be displayed by
138 /** The width of the column. */
141 /** The minimum width of the column
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A DShellFolder2.cpp1043 * Helper function for creating Java column info object
1104 // Fill column details list
1115 jobject column = CreateColumnInfo(env, local
1118 env->SetObjectArrayElement(columns, (jsize) colNum, column);
1149 // Fill column details list
1155 jobject column = CreateColumnInfo(env, local
1158 env->SetObjectArrayElement(columns, (jsize) colNum++, column);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/model/nav/
H A DAPTNavigator.java539 diff = Long.signum((long) p1.column() - (long) p2.column());
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DJoinRowSetImpl.java90 * An <code>int</code> that indicates the column index of the match column.
95 * A <code>String</code> object that stores the name of the match column.
148 * already has a match column set.
154 * <code>JoinRowSet</code>; if a match column is not set; or if an
200 // Either column id or column name will be set
238 // Set the match column here because join will be
246 // to the same column
260 * and sets the designated column a
4262 toCollection(int column) argument
4284 toCollection(String column) argument
[all...]
H A DCachedRowSetImpl.java157 * methods to insert column values into the insert row.
190 * Used to track match column for JoinRowSet consumption
195 * Used to track match column for JoinRowSet consumption
1297 * Returns the specified column of this <code>CachedRowSetImpl</code> object
1299 * column's data and utilitizes the <code>Vector</code> to establish the
1305 * stored in the specified column of this
1309 * an invalid column is provided.
1314 public Collection<?> toCollection(int column) throws SQLException { argument
1325 vec.add(crsTemp.getObject(column));
1333 * Returns the specified column o
1350 toCollection(String column) argument
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFileChooserUI.java1350 // One sort state for each column. Both are ascending by default
1364 // Need to repaint the highlighted column.
1369 // This stops mouseDrags from moving the column
1381 public Component getTableCellRendererComponent(final JTable localTable, final Object value, final boolean isSelected, final boolean hasFocus, final int row, final int column) { argument
1396 cellBorder.setSelected(column == fSortColumn);
1397 final int horizontalShift = (column == 0 ? 35 : 10);
1400 if (column == fSortColumn) {
1401 cellBorder.setSortOrder(fSortAscending[column] ? AquaTableHeaderBorder.SORT_ASCENDING : AquaTableHeaderBorder.SORT_DECENDING);
1678 final int column = fFileList.columnAtPoint(p);
1681 if ((column
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A Dnmethod.cpp2668 void nmethod::print_code_comment_on(outputStream* st, int column, u_char* begin, u_char* end) { argument
2680 st->move_to(column);
2692 st->move_to(column);
2735 st->move_to(column);
2756 st->move_to(column);
2761 st->move_to(column);
H A Dnmethod.hpp644 void print_code_comment_on(outputStream* st, int column, address begin, address end);
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DSyncResolverImpl.java139 * 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 of this
158 * @param columnName a <code>String</code> object designating the column in this row of this
171 * Sets <i>obj</i> as the value in column <i>index</i> in the current row of the
175 * @param index an <code>int</code> giving the number of the column into which to
184 * inside crsRes for that column.
387 * Sets <i>obj</i> as the value in column <i>columnName</i> in the current row of the
391 * @param columnName a <code>String</code> object giving the name of the column
864 * Returns the specified column o
881 toCollection(int column) argument
903 toCollection(String column) argument
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/opengl/J2D_GL/
H A Dgl.h1738 GLenum type, const GLvoid *row, const GLvoid *column );
1741 GLenum type, GLvoid *row, GLvoid *column, GLvoid *span );
1765 typedef void (APIENTRY * PFNGLGETSEPARABLEFILTERPROC) (GLenum target, GLenum format, GLenum type, GLvoid *row, GLvoid *column, GLvoid *span);
1766 typedef void (APIENTRY * PFNGLSEPARABLEFILTER2DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *row, const GLvoid *column);
H A Dglext.h3161 typedef void (APIENTRYP PFNGLGETSEPARABLEFILTERPROC) (GLenum target, GLenum format, GLenum type, GLvoid *row, GLvoid *column, GLvoid *span);
3162 typedef void (APIENTRYP PFNGLSEPARABLEFILTER2DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *row, const GLvoid *column);
4311 typedef void (APIENTRYP PFNGLGETSEPARABLEFILTEREXTPROC) (GLenum target, GLenum format, GLenum type, GLvoid *row, GLvoid *column, GLvoid *span);
4312 typedef void (APIENTRYP PFNGLSEPARABLEFILTER2DEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *row, const GLvoid *column);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDHandler.java799 // if the caller/expected NS is not absent, we use the first column
837 // if the caller/expected NS is absent, we use the second column
4102 // line/column numbers are stored in the element node
4104 int column = ele.getColumnNumber();
4105 l.setValues(sid, sid, line, column, ele.getCharacterOffset());

Completed in 889 milliseconds

12345