Lines Matching refs:i

173 		for (int i = 0; i < cellNum; i++) {  in testCharUnderline()
174 cells[i] = sheet.getCellByPosition(cInfo.getCol(), cInfo.getRow() + i); in testCharUnderline()
182 for (int i = 0; i < cellNum; i++) { in testCharUnderline()
183 SCUtil.setCellProperties(cells[i], inputType[0], inputStyle); in testCharUnderline()
185 SCUtil.setCellProperties(cells[i], inputType[1], true); in testCharUnderline()
186 SCUtil.setCellProperties(cells[i], inputType[2], inputColor); in testCharUnderline()
194 for (int i = 0; i < cellNum; i++) { in testCharUnderline()
195 cells[i] = sheet.getCellByPosition(cInfo.getCol(), cInfo.getRow() + i); in testCharUnderline()
196 styleResults[i] = ((Short) SCUtil.getCellProperties(cells[i], inputType[0])).shortValue(); in testCharUnderline()
198 hasColor[i] = ((Boolean) SCUtil.getCellProperties(cells[i], inputType[1])).booleanValue(); in testCharUnderline()
199 colorResults[i] = ((Integer) SCUtil.getCellProperties(cells[i], inputType[2])).intValue(); in testCharUnderline()
204 for (int i = 0; i < cellNum; i++) { in testCharUnderline()
205 …yle(" + inputType[0] + ") value got in ." + fileType + " file.", expectedLine, styleResults[i], 0); in testCharUnderline()
208 …erline has color setting(" + inputType[1] + ") value got in ." + fileType + " file.", hasColor[i]); in testCharUnderline()
211 …erline has color setting(" + inputType[1] + ") value got in ." + fileType + " file.", hasColor[i]); in testCharUnderline()
212 …or(" + inputType[2] + ") value got in ." + fileType + " file.", expectedColor, colorResults[i], 0); in testCharUnderline()