Lines Matching refs:i

174 		for (int i = 0; i < cellNum; i++) {  in testCharOverline()
175 cells[i] = sheet.getCellByPosition(cInfo.getCol(), cInfo.getRow() + i); in testCharOverline()
183 for (int i = 0; i < cellNum; i++) { in testCharOverline()
184 SCUtil.setCellProperties(cells[i], inputType[0], inputStyle); in testCharOverline()
186 SCUtil.setCellProperties(cells[i], inputType[1], true); in testCharOverline()
187 SCUtil.setCellProperties(cells[i], inputType[2], inputColor); in testCharOverline()
195 for (int i = 0; i < cellNum; i++) { in testCharOverline()
196 cells[i] = sheet.getCellByPosition(cInfo.getCol(), cInfo.getRow() + i); in testCharOverline()
197 styleResults[i] = ((Short) SCUtil.getCellProperties(cells[i], inputType[0])).shortValue(); in testCharOverline()
200 hasColor[i] = ((Boolean) SCUtil.getCellProperties(cells[i], inputType[1])).booleanValue(); in testCharOverline()
201 colorResults[i] = ((Integer) SCUtil.getCellProperties(cells[i], inputType[2])).intValue(); in testCharOverline()
207 for (int i = 0; i < cellNum; i++) { in testCharOverline()
208 …yle(" + inputType[0] + ") value got in ." + fileType + " file.", expectedLine, styleResults[i], 0); in testCharOverline()
213 …erline has color setting(" + inputType[1] + ") value got in ." + fileType + " file.", hasColor[i]); in testCharOverline()
217 …erline has color setting(" + inputType[1] + ") value got in ." + fileType + " file.", hasColor[i]); in testCharOverline()
218 …or(" + inputType[2] + ") value got in ." + fileType + " file.", expectedColor, colorResults[i], 0); in testCharOverline()