Lines Matching refs:sArrL
51 private static Object[] sArrL; field in Main
179 for (int i = 0; i < sArrL.length; i++) { in InvLoopL()
180 sArrL[i] = sL; in InvLoopL()
254 for (int i = 0; i < sArrL.length; i++) { in VarLoopL()
255 sArrL[i] = sL; in VarLoopL()
414 sArrL[20] = anotherObject; in CrossOverLoopL()
415 for (int i = 0; i < sArrL.length; i++) { in CrossOverLoopL()
416 sArrL[i] = (sArrL[20] == anObject) ? anotherObject : anObject; in CrossOverLoopL()
626 sArrL = new Object[100]; in DoStaticTests()
628 for (int i = 0; i < sArrL.length; i++) { in DoStaticTests()
629 expectEquals(anObject, sArrL[i]); in DoStaticTests()
632 for (int i = 0; i < sArrL.length; i++) { in DoStaticTests()
633 expectEquals(i <= 10 ? anObject : anotherObject, sArrL[i]); in DoStaticTests()
636 for (int i = 0; i < sArrL.length; i++) { in DoStaticTests()
637 expectEquals(i <= 20 ? anObject : anotherObject, sArrL[i]); in DoStaticTests()