Home
last modified time | relevance | path

Searched defs:twice (Results 1 – 10 of 10) sorted by relevance

/libcore/luni/src/test/java/libcore/java/util/function/
DIntUnaryOperatorTest.java32 IntUnaryOperator twice = x -> 2 *x; in testCompose() local
46 IntUnaryOperator twice = x -> 2 *x; in testAndThen() local
DDoubleUnaryOperatorTest.java38 DoubleUnaryOperator twice = x -> 2 *x; in testCompose() local
52 DoubleUnaryOperator twice = x -> 2 *x; in testAndThen() local
DLongUnaryOperatorTest.java32 LongUnaryOperator twice = x -> 2L *x; in testCompose() local
46 LongUnaryOperator twice = x -> 2L *x; in testAndThen() local
DFunctionTest.java33 Function<Double, Double> twice = x -> 2 *x; in testCompose() local
47 Function<Double, Double> twice = x -> 2 *x; in testAndThen() local
/libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
DDoubleStreamTestDataProvider.java42 private static final double[] twice = new double[200]; field in DoubleStreamTestDataProvider
63 System.arraycopy(to100, 0, twice, 0, to100.length); in System.arraycopy() argument
64 System.arraycopy(to100, 0, twice, to100.length, to100.length); in System.arraycopy() argument
DLongStreamTestDataProvider.java42 private static final long[] twice = new long[200]; field in LongStreamTestDataProvider
62 System.arraycopy(to100, 0, twice, 0, to100.length); in System.arraycopy() argument
63 System.arraycopy(to100, 0, twice, to100.length, to100.length); in System.arraycopy() argument
DStreamTestDataProvider.java49 private static final Integer[] twice = new Integer[200]; field in StreamTestDataProvider
70 System.arraycopy(to100, 0, twice, 0, to100.length); in System.arraycopy() argument
71 System.arraycopy(to100, 0, twice, to100.length, to100.length); in System.arraycopy() argument
/libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
DIntStreamTestDataProvider.java40 private static final int[] twice = new int[200]; field in IntStreamTestDataProvider
59 System.arraycopy(to100, 0, twice, 0, to100.length); in System.arraycopy() argument
60 System.arraycopy(to100, 0, twice, to100.length, to100.length); in System.arraycopy() argument
DLongStreamTestDataProvider.java40 private static final long[] twice = new long[200]; field in LongStreamTestDataProvider
59 System.arraycopy(to100, 0, twice, 0, to100.length); in System.arraycopy() argument
60 System.arraycopy(to100, 0, twice, to100.length, to100.length); in System.arraycopy() argument
DStreamTestDataProvider.java45 private static final Integer[] twice = new Integer[200]; field in StreamTestDataProvider
65 System.arraycopy(to100, 0, twice, 0, to100.length); in System.arraycopy() argument
66 System.arraycopy(to100, 0, twice, to100.length, to100.length); in System.arraycopy() argument