Lines Matching refs:cellValues
82 double[] cellValues = new double[3]; in _setTableOperation() local
93 cellValues = new double[] { 5, 10, 15 }; in _setTableOperation()
94 res &= checkValues(cellCoords, cellValues); in _setTableOperation()
106 cellValues = new double[] { 12, 24, 36 }; in _setTableOperation()
107 res &= checkValues(cellCoords, cellValues); in _setTableOperation()
120 cellValues = new double[] { 17, 34, 51 }; in _setTableOperation()
121 res &= checkValues(cellCoords, cellValues); in _setTableOperation()
142 protected boolean checkValues(Point[] cellCoords, double[] cellValues) { in checkValues() argument
145 for (int i = 0; i < cellValues.length; i++) { in checkValues()
149 .getValue() == cellValues[i]; in checkValues()
156 log.println("Expected: " + cellValues[i]); in checkValues()