Searched defs:col (Results 1 - 25 of 55) sorted by relevance

123

/openjdk7/langtools/test/tools/javac/
H A DT6366196.java46 public static void positiveTest(int line, int col) { argument
47 if (Position.encodePosition(line, col) == Position.NOPOS) {
48 throw new Error("test failed at line = " + line + ", column = " + col);
50 System.out.println("test passed at line = " + line + ", column = " + col);
54 public static void negativeTest(int line, int col) { argument
55 if (Position.encodePosition(line, col) != Position.NOPOS) {
56 throw new Error("test failed at line = " + line + ", column = " + col);
58 System.out.println("test passed at line = " + line + ", column = " + col);
/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
44 fCol = col;
H A DElementImpl.java41 int col; field in class:ElementImpl
52 col = -1;
70 col = -1;
134 if (col == 1) {
137 return schemaDOM.relations[row][col-1];
142 if (col == schemaDOM.relations[row].length-1) {
145 return schemaDOM.relations[row][col+1];
/openjdk7/jdk/src/share/classes/java/text/
H A DBreakDictionary.java269 int col;
271 col = columnMap.elementAt((char)ch);
273 col = supplementaryCharColumnMap.getValue(ch);
275 return getNextState(row, col);
285 * @param col The column number of the input character (0 means "not a
289 public final short getNextState(int row, int col) { argument
290 if (cellIsPopulated(row, col)) {
297 return internalAt(rowIndex[row], col + rowIndexShifts[row]);
308 private final boolean cellIsPopulated(int row, int col) { argument
313 return col
335 internalAt(int row, int col) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DInsertRow.java84 * @param col the number of the column to be marked as inserted;
87 protected void markColInserted(int col) { argument
88 colsInserted.set(col);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/
H A DEventLocation.java95 public void setColumnNumber(int col) { argument
96 _column = col;
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/DES/
H A DPerformanceTest.java46 StringBuffer col; field in class:PerformanceTest
89 col = new StringBuffer();
97 col.append(crypts[i]+"/"+modes[j]+"/"+paddings[k]);
98 int len = 32 - col.length();
100 col.append(" "); {
116 col.append(dataSizes[l]);
117 len = 40 - col.length();
119 col.append(" ");
123 col.append(rounds[m]);
124 len = 50 - col
[all...]
/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
228 for (col = 0; col < DCTSIZE; col++) {
231 aanscalefactor[row] * aanscalefactor[col]);
/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/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/util/
H A DSimpleLocator.java95 public void setColumnNumber(int col) { argument
96 this.column = col;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DObjectListPanel.java152 public String getColumnName(int col) { argument
153 switch (col) {
175 throw new RuntimeException("Index " + col + " out of bounds");
178 public Object getValueAt(int row, int col) { argument
180 return getValueForColumn(oop, col);
183 public Object getValueForColumn(Oop oop, int col) { argument
186 switch (col) {
226 throw new RuntimeException("Column " + col + " out of bounds");
H A DJavaThreadsPanel.java271 public String getColumnName(int col) { argument
272 return columnNames[col];
275 public Object getValueAt(int row, int col) { argument
277 switch (col) {
283 throw new RuntimeException("Index (" + col + ", " + row + ") out of bounds");
H A DObjectHistogramPanel.java182 public String getColumnName(int col) { argument
183 return columnNames[col];
186 public Class getColumnClass(int col) { argument
187 return columnClasses[col];
190 public Object getValueAt(int row, int col) { argument
191 return getValueForColumn(getElement(row), col);
194 public Object getValueForColumn(Object obj, int col) { argument
196 switch (col) {
204 throw new RuntimeException("Index (" + col + ") out of bounds");
/openjdk7/jdk/src/share/classes/javax/swing/
H A DTablePrintable.java127 private int col = 0; field in class:TablePrintable
296 if (row >= table.getRowCount() && col == 0) {
454 if (col == 0) {
502 int colWidth = colModel.getColumn(col).getWidth();
509 if (++col >= colCount) {
510 // reset col to 0 to indicate we're finished all columns
511 col = 0;
516 colWidth = colModel.getColumn(col).getWidth();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/
H A DDocCommentScanner.java76 private int col; field in class:DocCommentScanner
124 bp++; ch = buf[bp]; col++;
127 bp++; ch = buf[bp]; col++;
134 bp++; ch = buf[bp]; col++;
148 col--;
161 col = 0;
165 col = 0;
169 col = (col / TabInc * TabInc) + TabInc;
172 col
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DPosition.java86 * @param col number of character on line (first is 1)
90 * @throws IllegalArgumentException if line or col is less than 1
92 public static int encodePosition(int line, int col) { argument
95 if (col < 1)
98 if (line > MAXLINE || col > MAXCOLUMN) {
101 return (line << LINESHIFT) + col;
271 int col = 0;
272 while (col < column) {
275 col = (col / TabIn
[all...]
/openjdk7/jdk/src/share/demo/management/JTop/
H A DJTop.java156 public String getColumnName(int col) { argument
157 return columnNames[col];
161 public Object getValueAt(int row, int col) { argument
163 switch (col) {
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXTable.java98 public abstract boolean isCellError(int row, int col); argument
99 public abstract boolean isAttributeViewable(int row, int col); argument
113 public boolean isCellEditable(int row, int col) { argument
114 return ((isTableEditable() && isColumnEditable(col)
120 public boolean isCellDroppable(int row, int col) { argument
121 return (isTableEditable() && isColumnEditable(col)
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DTableView.java118 int getColumnSpan(int col) { argument
119 return columnSpans[col];
241 int col = 0;
242 for (int cell = 0; cell < rv.getViewCount(); cell++, col++) {
245 for (; rv.isFilled(col); col++);
251 int colLimit = col + colSpan;
253 for (int j = col; j < colLimit; j++) {
254 if (i != row || j != col) {
260 col
281 addFill(int row, int col) argument
461 checkSingleColumnCell(int axis, int col, View v) argument
472 checkMultiColumnCell(int axis, int col, int ncols, View v) argument
604 fillColumn(int col) argument
608 isFilled(int col) argument
839 setGridLocation(int row, int col) argument
859 int col; field in class:TableView.TableCell
877 setGridLocation(int row, int col) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelByteBuffer.java254 public static void loadAll(Collection<ModelByteBuffer> col) argument
259 for (ModelByteBuffer mbuff : col) {
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/c14n/implementations/
H A DCanonicalizer11.java101 void getXmlnsAttr(Collection col) { argument
119 col.addAll(cur.nodes);
171 col.add(baseAttr);
176 col.addAll(loa.values());
H A DCanonicalizer20010315.java96 void getXmlnsAttr(Collection col) { argument
115 col.addAll(cur.nodes);
136 col.addAll(loa.values());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DCElementPropertyInfo.java88 super(name, collection.col, source, customizations, locator);
194 private final boolean col,val; field in class:CElementPropertyInfo.CollectionMode
196 CollectionMode(boolean col,boolean val) { argument
197 this.col = col;
201 public boolean isRepeated() { return col; }
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DBGMBuilder.java333 private void populate( Map<String,? extends XSComponent> col, XSSchema schema ) { argument
335 for( XSComponent sc : col.values() )
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageConvClearEdge.c478 color1 = color[1] & 0xFF, color2 = color[2] & 0xFF, col; local
491 col = (color0 << 16) | (color1 << 8) | color2;
492 color0 = (col << 8) | color0;

Completed in 99 milliseconds

123