Lines Matching defs:cols
49 int cols;
56 * @param cols the columns
58 public VariableGridLayout(int rows, int cols) {
59 this(rows, cols, 0, 0);
66 if (cols != 0) {
67 colsSet = new BitSet(cols);
68 stdColFractions(cols);
76 * @param cols the columns
81 public VariableGridLayout(int rows, int cols, int hgap, int vgap) {
82 super(rows, cols, hgap, vgap);
85 this.cols = cols;
94 if (cols != 0) {
95 colsSet = new BitSet(cols);
96 stdColFractions(cols);
172 int ncols = cols;
183 if (cols == 0) {
225 ",rows=" + rows + ",cols=" + cols +