Lines Matching refs:anyDouble
52 Any anyDouble; // field in AnyConverter_Test
81 anyDouble= new Any(new Type(Double.TYPE), aDouble); in AnyConverter_Test()
124 try { AnyConverter.toBoolean(anyDouble); failed(""); in test_toBoolean()
180 try { AnyConverter.toChar(anyDouble); failed(""); in test_toChar()
232 try { AnyConverter.toByte(anyDouble); failed(""); in test_toByte()
298 try { AnyConverter.toShort(anyDouble); failed(""); in test_toShort()
365 try { AnyConverter.toInt(anyDouble); failed(""); in test_toInt()
437 try { AnyConverter.toLong(anyDouble); failed(""); in test_toLong()
493 try { AnyConverter.toFloat(anyDouble); failed(""); in test_toFloat()
536 val= AnyConverter.toDouble(anyDouble); in test_toDouble()
537 assure("", val == ((Double) anyDouble.getObject()).doubleValue()); in test_toDouble()
666 try { AnyConverter.toString(anyDouble); failed(""); in test_toString()
722 try { AnyConverter.toType(anyDouble); failed(""); in test_toType()
778 try { AnyConverter.toType(anyDouble); failed(""); in test_toArray()
853 assure("", AnyConverter.isDouble(anyDouble)); in test_isDouble()