/libcore/ojluni/src/test/java/lang/invoke/VarHandles/ |
D | VarHandleTestByteArrayAsLong.java | 883 checkISE(() -> { in testArrayMisalignedAccess() method 887 checkISE(() -> { in testArrayMisalignedAccess() method 891 checkISE(() -> { in testArrayMisalignedAccess() method 895 checkISE(() -> { in testArrayMisalignedAccess() method 899 checkISE(() -> { in testArrayMisalignedAccess() method 903 checkISE(() -> { in testArrayMisalignedAccess() method 907 checkISE(() -> { in testArrayMisalignedAccess() method 911 checkISE(() -> { in testArrayMisalignedAccess() method 915 checkISE(() -> { in testArrayMisalignedAccess() method 919 checkISE(() -> { in testArrayMisalignedAccess() method [all …]
|
D | VarHandleTestByteArrayAsInt.java | 883 checkISE(() -> { in testArrayMisalignedAccess() method 887 checkISE(() -> { in testArrayMisalignedAccess() method 891 checkISE(() -> { in testArrayMisalignedAccess() method 895 checkISE(() -> { in testArrayMisalignedAccess() method 899 checkISE(() -> { in testArrayMisalignedAccess() method 903 checkISE(() -> { in testArrayMisalignedAccess() method 907 checkISE(() -> { in testArrayMisalignedAccess() method 911 checkISE(() -> { in testArrayMisalignedAccess() method 915 checkISE(() -> { in testArrayMisalignedAccess() method 919 checkISE(() -> { in testArrayMisalignedAccess() method [all …]
|
D | VarHandleTestByteArrayAsFloat.java | 791 checkISE(() -> { in testArrayMisalignedAccess() method 795 checkISE(() -> { in testArrayMisalignedAccess() method 799 checkISE(() -> { in testArrayMisalignedAccess() method 803 checkISE(() -> { in testArrayMisalignedAccess() method 807 checkISE(() -> { in testArrayMisalignedAccess() method 811 checkISE(() -> { in testArrayMisalignedAccess() method 815 checkISE(() -> { in testArrayMisalignedAccess() method 819 checkISE(() -> { in testArrayMisalignedAccess() method 823 checkISE(() -> { in testArrayMisalignedAccess() method 827 checkISE(() -> { in testArrayMisalignedAccess() method [all …]
|
D | VarHandleTestByteArrayAsDouble.java | 791 checkISE(() -> { in testArrayMisalignedAccess() method 795 checkISE(() -> { in testArrayMisalignedAccess() method 799 checkISE(() -> { in testArrayMisalignedAccess() method 803 checkISE(() -> { in testArrayMisalignedAccess() method 807 checkISE(() -> { in testArrayMisalignedAccess() method 811 checkISE(() -> { in testArrayMisalignedAccess() method 815 checkISE(() -> { in testArrayMisalignedAccess() method 819 checkISE(() -> { in testArrayMisalignedAccess() method 823 checkISE(() -> { in testArrayMisalignedAccess() method 827 checkISE(() -> { in testArrayMisalignedAccess() method [all …]
|
D | X-VarHandleTestByteArrayView.java.template | 1227 checkISE(() -> { 1231 checkISE(() -> { 1235 checkISE(() -> { 1239 checkISE(() -> { 1243 checkISE(() -> { 1247 checkISE(() -> { 1252 checkISE(() -> { 1256 checkISE(() -> { 1260 checkISE(() -> { 1264 checkISE(() -> { [all …]
|
D | VarHandleTestByteArrayAsShort.java | 702 checkISE(() -> { in testArrayMisalignedAccess() method 706 checkISE(() -> { in testArrayMisalignedAccess() method 710 checkISE(() -> { in testArrayMisalignedAccess() method 714 checkISE(() -> { in testArrayMisalignedAccess() method 718 checkISE(() -> { in testArrayMisalignedAccess() method 722 checkISE(() -> { in testArrayMisalignedAccess() method 744 checkISE(() -> { in testArrayMisalignedAccess() method 748 checkISE(() -> { in testArrayMisalignedAccess() method 752 checkISE(() -> { in testArrayMisalignedAccess() method 757 checkISE(() -> { in testArrayMisalignedAccess() method [all …]
|
D | VarHandleTestByteArrayAsChar.java | 702 checkISE(() -> { in testArrayMisalignedAccess() method 706 checkISE(() -> { in testArrayMisalignedAccess() method 710 checkISE(() -> { in testArrayMisalignedAccess() method 714 checkISE(() -> { in testArrayMisalignedAccess() method 718 checkISE(() -> { in testArrayMisalignedAccess() method 722 checkISE(() -> { in testArrayMisalignedAccess() method 744 checkISE(() -> { in testArrayMisalignedAccess() method 748 checkISE(() -> { in testArrayMisalignedAccess() method 752 checkISE(() -> { in testArrayMisalignedAccess() method 757 checkISE(() -> { in testArrayMisalignedAccess() method [all …]
|
D | VarHandleBaseTest.java | 86 static void checkISE(ThrowingRunnable r) { in checkISE() method in VarHandleBaseTest 90 static void checkISE(Object message, ThrowingRunnable r) { in checkISE() method in VarHandleBaseTest
|
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/ |
D | StreamBuilderTest.java | 43 import static org.openjdk.testlib.java.util.stream.ThrowableHelper.checkISE; 104 checkISE(() -> sb.accept(1)); in testAfterBuilding() 105 checkISE(() -> sb.add(1)); in testAfterBuilding() 106 checkISE(() -> sb.build()); in testAfterBuilding() 167 checkISE(() -> sb.accept(1)); in testIntAfterBuilding() 168 checkISE(() -> sb.add(1)); in testIntAfterBuilding() 169 checkISE(() -> sb.build()); in testIntAfterBuilding() 230 checkISE(() -> sb.accept(1)); in testLongAfterBuilding() 231 checkISE(() -> sb.add(1)); in testLongAfterBuilding() 232 checkISE(() -> sb.build()); in testLongAfterBuilding() [all …]
|
D | StreamCloseTest.java | 37 import static org.openjdk.testlib.java.util.stream.ThrowableHelper.checkISE; 181 checkISE(() -> s.onClose(() -> fail("1"))); in testConsumed() 189 checkISE(() -> s.onClose(() -> fail("3"))); in testConsumed()
|
/libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/ |
D | ThrowableHelper.java | 46 public static void checkISE(Runnable r) { in checkISE() method in ThrowableHelper
|