Home
last modified time | relevance | path

Searched refs:dst_type (Results 1 – 5 of 5) sorted by relevance

/ark/runtime_core/runtime/tests/interpreter/
Dtest_runtime_interface.h113 Class *dst_type; member
302 static void ThrowClassCastException(Class *dst_type, Class *src_type) in ThrowClassCastException() argument
305 ASSERT_EQ(class_cast_exception_data.dst_type, dst_type); in ThrowClassCastException()
/ark/runtime_core/runtime/include/
Dexceptions.h51 void ThrowClassCastException(Class *dst_type, Class *src_type);
/ark/runtime_core/runtime/interpreter/
Druntime_interface.h192 static void ThrowClassCastException(Class *dst_type, Class *src_type) in ThrowClassCastException() argument
194 panda::ThrowClassCastException(dst_type, src_type); in ThrowClassCastException()
/ark/runtime_core/runtime/
Dexceptions.cpp139 void ThrowClassCastException(Class *dst_type, Class *src_type) in ThrowClassCastException() argument
145 msg = src_type->GetName() + " cannot be cast to " + dst_type->GetName(); in ThrowClassCastException()
/ark/runtime_core/isa/
Disapi.rb31 src_type, dst_type = sig.match(/inout:(\w+)->(\w+)/).captures
32 res << Operand.new('acc', 'out', dst_type)