Home
last modified time | relevance | path

Searched defs:step (Results 1 – 17 of 17) sorted by relevance

/libcore/luni/src/test/java/libcore/dalvik/system/
DVMRuntimeTest.java29 private void doTestNewNonMovableArray(Class<?> componentType, int step, int maxLength) { in doTestNewNonMovableArray()
68 int step = 67; in testNewNonMovableArray() local
83 private void doTestNewUnpaddedArray(Class<?> componentType, int step, int maxLength) { in doTestNewUnpaddedArray()
122 int step = 67; in testNewUnpaddedArray() local
/libcore/ojluni/src/main/java/java/math/
DBitSieve.java109 int step = smallSieve.sieveSearch(smallSieve.length, start); in BitSieve() local
184 private void sieveSingle(int limit, int start, int step) { in sieveSingle()
/libcore/luni/src/test/java/tests/support/
DMockFunction.java42 public void step(FunctionContext fc, String args[]) { in step() method in MockFunction
/libcore/ojluni/src/test/java/lang/invoke/
DCountedLoopIterationCountsTest.java74 static int step(int stepCount, int counter) { in step() method in CountedLoopIterationCountsTest
DJavaDocExamplesTest.java803 static int step(int i, int limit) { return i + 1; } in step() method in JavaDocExamplesTest
821 static String step(String v, int counter, String start_) { return "na " + v; } //#0 in step() method in JavaDocExamplesTest
822 static String step(String v, int counter ) { return "na " + v; } //#1 in step() method in JavaDocExamplesTest
823 …static String step(String v, int counter, int iterations_, String pre, String start_) { return pre… in step() method in JavaDocExamplesTest
DMethodHandlesGeneralTest.java1579 …static void toClauseMajor(MethodHandle[][] clauses, MethodHandle[] init, MethodHandle[] step, Meth… in toClauseMajor()
1917 Class<?>[] step = { in testInterfaceCast() local
DLoopCombinatorTest.java1082 static int step(int i, int limit) { in step() method in LoopCombinatorTest.While
1186 static String step(String v, int counter) { in step() method in LoopCombinatorTest.Counted
/libcore/luni/src/test/resources/
Drecipt.dtd10 <!ELEMENT step (#PCDATA)> element
/libcore/luni/src/test/resources/systemid/
Drecipt.dtd10 <!ELEMENT step (#PCDATA)> element
/libcore/ojluni/src/test/java/util/zip/
DTestExtraTime.java252 long step = Long.MAX_VALUE / 100L; in testTimeConversions() local
260 static void testTimeConversions(long from, long to, long step) { in testTimeConversions()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/
DByteBufferTest.java2138 int nbytes = 4, bigHead, step; in bytes2int() local
2157 int nbytes = 8, bigHead, step; in bytes2long() local
2176 int nbytes = 2, bigHead, step; in bytes2short() local
2207 int nbytes = 4, smallHead, step; in int2bytes() local
2226 int nbytes = 8, smallHead, step; in long2bytes() local
2245 int nbytes = 2, smallHead, step; in short2bytes() local
/libcore/luni/src/test/java/libcore/java/util/zip/
DOldAndroidDeflateTest.java74 private void bigTest(int step, int expectedAdler) in bigTest()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
DMatcherTest.java668 int step = 16; // Ideally 1, but devices are still too slow. in testAllCodePoints_p() local
687 int step = 16; // Ideally 1, but devices are still too slow. in testAllCodePoints_P() local
/libcore/ojluni/src/main/java/java/util/
DDualPivotQuicksort.java220 int step = (size >> 3) * 3 + 3; in sort() local
974 int step = (size >> 3) * 3 + 3; local
2106 int step = (size >> 3) * 3 + 3; in sort() local
2515 int step = (size >> 3) * 3 + 3; in sort() local
3321 int step = (size >> 3) * 3 + 3; in sort() local
/libcore/ojluni/src/main/java/java/lang/invoke/
DMethodHandles.java4494 List<MethodHandle> step = new ArrayList<>(); in loop() local
4616 …static List<Class<?>> buildCommonSuffix(List<MethodHandle> init, List<MethodHandle> step, List<Met… in buildCommonSuffix()
4646 …private static void loopChecks2(List<MethodHandle> step, List<MethodHandle> pred, List<MethodHandl… in loopChecks2()
5433 MethodHandle retv = null, step = body; in iteratedLoop() local
DTransformers.java3084 private void doStep(final MethodHandle step, in doStep()
/libcore/ojluni/src/main/java/java/time/
DLocalDate.java1753 public Stream<LocalDate> datesUntil(LocalDate endExclusive, Period step) { in datesUntil()