Searched refs:newIllegalArgumentException (Results 1 – 7 of 7) sorted by relevance
/libcore/ojluni/src/main/java/java/lang/invoke/ |
D | MethodHandle.java | 1026 throw newIllegalArgumentException("bad spread array length"); in asSpreaderChecks() 1028 throw newIllegalArgumentException("bad spread position"); in asSpreaderChecks() 1054 throw newIllegalArgumentException("not an array type", arrayType); in spreadArrayChecks() 1057 throw newIllegalArgumentException("array length is not legal", arrayLength); in spreadArrayChecks() 1061 …throw newIllegalArgumentException("array length is not legal for long[] or double[]", arrayLength); in spreadArrayChecks() 1249 throw newIllegalArgumentException("bad collect position"); in asCollectorChecks() 1256 throw newIllegalArgumentException("array type not assignable to argument", this, arrayType); in asCollectorChecks()
|
D | MethodHandleStatics.java | 143 /*non-public*/ static RuntimeException newIllegalArgumentException(String message) { in newIllegalArgumentException() method in MethodHandleStatics 146 /*non-public*/ static RuntimeException newIllegalArgumentException(String message, Object obj) { in newIllegalArgumentException() method in MethodHandleStatics 149 …/*non-public*/ static RuntimeException newIllegalArgumentException(String message, Object obj, Obj… in newIllegalArgumentException() method in MethodHandleStatics
|
D | MethodHandles.java | 45 import static java.lang.invoke.MethodHandleStatics.newIllegalArgumentException; 729 throw newIllegalArgumentException("illegal lookupClass: "+lookupClass); in checkUnprivilegedlookupClass() 747 throw newIllegalArgumentException("illegal lookupClass: " + lookupClass); in checkUnprivilegedlookupClass() 2235 throw newIllegalArgumentException("not an array class: " + arrayClass.getName()); in arrayConstructor() 2265 throw newIllegalArgumentException("not an array class: " + arrayClass.getName()); in arrayLength() 2653 throw newIllegalArgumentException("bad argument count", leadingArgCount); in spreadInvoker() 2960 throw newIllegalArgumentException("return types do not match", in permuteArgumentChecks() 2973 throw newIllegalArgumentException("parameter types do not match after reorder", in permuteArgumentChecks() 2978 throw newIllegalArgumentException("bad reorder array: "+Arrays.toString(reorder)); in permuteArgumentChecks() 3000 throw newIllegalArgumentException("void type"); in constant() [all …]
|
D | MethodHandleInfo.java | 246 throw newIllegalArgumentException("invalid reference kind", referenceKind); in referenceKindToString()
|
D | MethodType.java | 175 throw newIllegalArgumentException("parameter type cannot be void"); in checkPtype() 193 throw newIllegalArgumentException("bad parameter count "+count); in checkSlotCount() 517 throw newIllegalArgumentException("no leading reference parameter"); in leadingReferenceParameter() 1139 throw newIllegalArgumentException("not a method descriptor: "+descriptor);
|
D | MethodTypeForm.java | 259 if (pslotCount >= 256) throw newIllegalArgumentException("too many arguments"); in MethodTypeForm()
|
/libcore/ojluni/src/main/java/sun/invoke/util/ |
D | Wrapper.java | 275 throw newIllegalArgumentException("not primitive: "+type); in forPrimitiveType() 293 default: throw newIllegalArgumentException("not primitive: " + basicTypeChar); in forPrimitiveType() 317 throw newIllegalArgumentException("not wrapper: "+type); in forWrapperType() 340 throw newIllegalArgumentException("not basic type char: "+type); in forBasicType() 593 case 'L': throw newIllegalArgumentException("cannot wrap to object type"); in wrap() 623 private static RuntimeException newIllegalArgumentException(String message, Object x) { in newIllegalArgumentException() method in Wrapper 624 return newIllegalArgumentException(message + x); in newIllegalArgumentException() 626 private static RuntimeException newIllegalArgumentException(String message) { in newIllegalArgumentException() method in Wrapper
|