Searched refs:aFrom (Results 1 – 2 of 2) sorted by relevance
/libcore/ojluni/src/test/java/util/Arrays/ |
D | ArraysEqCmpTest.java | 821 for (int aFrom : ranges(0, s)) { in testSignedUnsignedArray() 822 for (int aTo : ranges(aFrom, s)) { in testSignedUnsignedArray() 823 int aLength = aTo - aFrom; in testSignedUnsignedArray() 826 for (int i = aFrom; i < aTo; i++) { in testSignedUnsignedArray() 831 int sc = sat.compare(ac, aFrom, aTo, a, aFrom, aTo); in testSignedUnsignedArray() 832 int uc = uat.compare(ac, aFrom, aTo, a, aFrom, aTo); in testSignedUnsignedArray() 852 for (int aFrom : ranges(0, s)) { in testArrayType() 853 for (int aTo : ranges(aFrom, s)) { in testArrayType() 854 int aLength = aTo - aFrom; in testArrayType() 860 Object anr = at.copyOf(a, aFrom, aTo); in testArrayType() [all …]
|
/libcore/ojluni/src/test/java/nio/Buffer/ |
D | EqualsCompareTest.java | 632 for (int aFrom : ranges(0, s)) { in testBufferType() 633 for (int aTo : ranges(aFrom, s)) { in testBufferType() 634 int aLength = aTo - aFrom; in testBufferType() 637 ? bt.slice(a, aFrom, aTo, dupOtherwiseSlice) in testBufferType() 673 for (int i = aFrom; i < aTo; i++) { in testBufferType() 676 ? bt.slice(c, aFrom, aTo, dupOtherwiseSlice) in testBufferType() 692 Assert.assertEquals(cMa, i - aFrom); in testBufferType()
|