Searched refs:unchecked (Results 1 - 12 of 12) sorted by relevance

/openjdk9/langtools/test/tools/javac/generics/
H A DUncheckedArray.java10 package unchecked.array;
H A DSilentUnchecked.java27 * @summary unchecked conversion from raw to reifiable generic requires no warning
30 * @compile -Xlint:unchecked -Werror SilentUnchecked.java
33 package silent.unchecked;
/openjdk9/hotspot/test/compiler/intrinsics/mathexact/
H A DSubExactIRepeatTest.java47 int result = method.unchecked(x, y);
48 result += method.unchecked(x, y);
49 result += method.unchecked(x, y);
50 result += method.unchecked(x, y);
H A DMulExactIRepeatTest.java47 int result = method.unchecked(x, y);
48 result += method.unchecked(x, y);
49 result += method.unchecked(x, y);
50 result += method.unchecked(x, y);
H A DAddExactIRepeatTest.java47 int result = method.unchecked(x, y);
48 result += method.unchecked(x, y);
49 result += method.unchecked(x, y);
50 result += method.unchecked(x, y);
H A DVerify.java263 int unchecked(int a, int b); method in interface:Verify.BinaryMethod
270 int unchecked(int value); method in interface:Verify.UnaryMethod
277 long unchecked(long a, long b); method in interface:Verify.BinaryLongMethod
284 long unchecked(long value); method in interface:Verify.UnaryLongMethod
305 public int unchecked(int a, int b) { method in class:Verify.UnaryToBinary
306 return method.unchecked(a);
333 public long unchecked(long a, long b) { method in class:Verify.UnaryToBinaryLong
334 return method.unchecked(a);
368 public int unchecked(int a, int b) { method in class:Verify.AddExactI
396 public long unchecked(lon method in class:Verify.AddExactL
418 public int unchecked(int a, int b) { method in class:Verify.MulExactI
452 public long unchecked(long a, long b) { method in class:Verify.MulExactL
479 public long unchecked(long value) { method in class:Verify.NegExactL
506 public int unchecked(int value) { method in class:Verify.NegExactI
534 public int unchecked(int a, int b) { method in class:Verify.SubExactI
562 public long unchecked(long a, long b) { method in class:Verify.SubExactL
589 public long unchecked(long value) { method in class:Verify.IncExactL
615 public int unchecked(int value) { method in class:Verify.IncExactI
641 public long unchecked(long value) { method in class:Verify.DecExactL
667 public int unchecked(int value) { method in class:Verify.DecExactI
[all...]
/openjdk9/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/
H A DHttpResponse.java33 import static jdk.incubator.http.internal.common.Utils.unchecked;
314 .orElseThrow(() -> unchecked(new IOException("No Content-Disposition")));
316 throw unchecked(new IOException("Unknown Content-Disposition type"));
320 throw unchecked(new IOException("Bad Content-Disposition type"));
/openjdk9/make/common/
H A DSetupJavaCompilers.gmk31 DISABLE_WARNINGS := -Xlint:all,-deprecation,-removal,-unchecked,-rawtypes,-cast,-serial,-dep-ann,-static,-fallthrough,-try,-varargs,-empty,-finally
/openjdk9/jdk/test/javax/management/generified/
H A DGenericTest.java448 List<E> unchecked = new ArrayList<E>();
449 List<E> checked = Collections.checkedList(unchecked, type);
455 Set<E> unchecked = new HashSet<E>();
456 Set<E> checked = Collections.checkedSet(unchecked, type);
464 Map<K,V> unchecked = new HashMap<K,V>();
465 Map<K,V> checked = Collections.checkedMap(unchecked, keyType, valueType);
/openjdk9/langtools/test/tools/javac/varargs/warning/
H A DWarn4.java57 final static Warning[] unchecked = new Warning[] { Warning.UNCHECKED }; field in class:Warn4
143 UNCHECKED("unchecked");
182 return warnings[other.ordinal()] == unchecked ||
235 .withOption("-Xlint:unchecked")
265 "\nExpected unchecked warning: " + warnArr[0] +
/openjdk9/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/common/
H A DUtils.java497 public static UncheckedIOException unchecked(IOException e) { method in class:Utils
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/
H A DInfer.java322 boolean unchecked = warn.hasNonSilentLint(Lint.LintCategory.UNCHECKED);
323 if (!unchecked) {
343 if (unchecked) {
344 //inline logic from Attr.checkMethod - if unchecked conversion was required, erase
430 //unchecked conversion is not allowed in source 7 mode

Completed in 130 milliseconds