Lines Matching refs:anyArByte
55 Any anyArByte; // field in AnyConverter_Test
84 anyArByte= new Any(new Type(byte[].class), arByte); in AnyConverter_Test()
140 try { AnyConverter.toBoolean(anyArByte); failed(""); in test_toBoolean()
196 try { AnyConverter.toChar(anyArByte); failed(""); in test_toChar()
248 try { AnyConverter.toByte(anyArByte); failed(""); in test_toByte()
314 try { AnyConverter.toShort(anyArByte); failed(""); in test_toShort()
381 try { AnyConverter.toInt(anyArByte); failed(""); in test_toInt()
453 try { AnyConverter.toLong(anyArByte); failed(""); in test_toLong()
509 try { AnyConverter.toFloat(anyArByte); failed(""); in test_toFloat()
566 try { AnyConverter.toDouble(anyArByte); failed(""); in test_toDouble()
678 try { AnyConverter.toString(anyArByte); failed(""); in test_toString()
734 try { AnyConverter.toType(anyArByte); failed(""); in test_toType()
744 val= AnyConverter.toArray(anyArByte); in test_toArray()
745 assure("", val == anyArByte.getObject()); in test_toArray()
790 try { AnyConverter.toType(anyArByte); failed(""); in test_toArray()
877 assure("", AnyConverter.isArray(anyArByte)); in test_isArray()