Lines Matching refs:anyVoid
43 Any anyVoid; // field in AnyConverter_Test
60 anyVoid= new Any(new Type(void.class), null); in AnyConverter_Test()
124 try { AnyConverter.toBoolean(anyVoid); fail(""); in test_toBoolean()
181 try { AnyConverter.toChar(anyVoid); fail(""); in test_toChar()
234 try { AnyConverter.toByte(anyVoid); fail(""); in test_toByte()
301 try { AnyConverter.toShort(anyVoid); fail(""); in test_toShort()
369 try { AnyConverter.toInt(anyVoid); fail(""); in test_toInt()
442 try { AnyConverter.toLong(anyVoid); fail(""); in test_toLong()
499 try { AnyConverter.toFloat(anyVoid); fail(""); in test_toFloat()
557 try { AnyConverter.toDouble(anyVoid); fail(""); in test_toDouble()
616 try { AnyConverter.toObject(_type, anyVoid); fail(""); in test_toObject()
671 try { AnyConverter.toString(anyVoid); fail(""); in test_toString()
728 try { AnyConverter.toType(anyVoid); fail(""); in test_toType()
785 try { AnyConverter.toType(anyVoid); fail(""); in test_toArray()
894 assertTrue("", AnyConverter.isVoid(anyVoid)); in test_isVoid()