Lines Matching refs:anyInt
49 Any anyInt; // field in AnyConverter_Test
78 anyInt= new Any(new Type(Integer.TYPE), aInt); in AnyConverter_Test()
112 try { AnyConverter.toBoolean(anyInt); failed(""); in test_toBoolean()
168 try { AnyConverter.toChar(anyInt); failed(""); in test_toChar()
220 try { AnyConverter.toByte(anyInt); failed(""); in test_toByte()
286 try { AnyConverter.toShort(anyInt); failed(""); in test_toShort()
332 val= AnyConverter.toInt(anyInt); in test_toInt()
333 assure("", val == ((Integer) anyInt.getObject()).intValue()); in test_toInt()
341 try { AnyConverter.toUnsignedInt(anyInt); failed(""); in test_toInt()
401 val= AnyConverter.toLong(anyInt); in test_toLong()
402 assure("", val == ((Integer) anyInt.getObject()).intValue()); in test_toLong()
417 try { AnyConverter.toUnsignedLong(anyInt); failed(""); in test_toLong()
485 try { AnyConverter.toFloat(anyInt); failed(""); in test_toFloat()
527 val= AnyConverter.toDouble(anyInt); in test_toDouble()
528 assure("", val == ((Integer) anyInt.getObject()).intValue()); in test_toDouble()
654 try { AnyConverter.toString(anyInt); failed(""); in test_toString()
710 try { AnyConverter.toType(anyInt); failed(""); in test_toType()
766 try { AnyConverter.toType(anyInt); failed(""); in test_toArray()
825 assure("", AnyConverter.isInt(anyInt)); in test_isInt()
826 assure("", Type.LONG.equals(AnyConverter.getType(anyInt))); in test_isInt()