Searched refs:grid (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/test/compiler/5091921/
H A DTest6890943.java43 boolean[][] grid; field in class:Test6890943
51 grid = new boolean[r][c];
54 for (int y = 0 ; y < c ; y++) grid[x][y] = line.charAt(y) == '.';
140 if (grid[p][column] == AIR) res++;
171 if (grid[depth][left-1] == ROCK && (left-1 < airOverrideStart || left-1 > airOverrideEnd)) break;
172 if (depth < r-1 && grid[depth+1][left-1] == AIR) {
179 if (grid[depth][right+1] == ROCK && (right+1 < airOverrideStart || right+1 > airOverrideEnd)) break;
180 if (depth < r-1 && grid[depth+1][right+1] == AIR) {
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DAccessibleHTML.java1403 * To make access fast it crates a grid containing the children to
1408 * changes the size of the grid may have changed.
1418 * > 1 will be contained multiple times in the grid.
1420 private TableCellElementInfo[][] grid; field in class:AccessibleHTML.TableElementInfo
1432 * Overriden to update the grid when validating.
1462 * Updates the grid.
1483 grid = new TableCellElementInfo[rows][];
1485 grid[counter] = new TableCellElementInfo[maxCols];
1504 if (validateIfNecessary() && r < grid.length &&
1505 c < grid[
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsScrollBarUI.java383 Grid grid = (ref == null) ? null : ref.get();
384 if (grid == null) {
385 grid = new Grid(fg, bg);
386 map.put(key, new WeakReference<Grid>(grid));
388 return grid;
408 * Paints the grid into the specified Graphics at the specified
450 * Actually renders the grid into the Graphics <code>g</code>.
/openjdk7/jdk/src/share/demo/jfc/Font2DTest/
H A DFontPanel.java385 public void loadOptions( boolean grid, boolean force16, int start, int end, argument
394 setGridDisplay( grid );
543 /// Draws the grid (Used for unicode/glyph range drawing)

Completed in 31 milliseconds