Home
last modified time | relevance | path

Searched refs:from_type (Results 1 – 2 of 2) sorted by relevance

/art/runtime/
Dmethod_handles-inl.h160 const Primitive::Type from_type = from->GetPrimitiveType(); in PerformConversions() local
165 if (Primitive::Is64BitType(from_type)) { in PerformConversions()
167 } else if (from_type == Primitive::kPrimNot) { in PerformConversions()
174 if (Primitive::Is64BitType(from_type)) { in PerformConversions()
176 } else if (from_type == Primitive::kPrimNot) { in PerformConversions()
Dmethod_handles.cc209 const Primitive::Type from_type = from->GetPrimitiveType(); in ConvertJValueCommon() local
218 if (from_type == Primitive::kPrimVoid) { in ConvertJValueCommon()
225 if (IsPrimitiveType(from_type) && IsPrimitiveType(to_type)) { in ConvertJValueCommon()
227 if (UNLIKELY(!ConvertPrimitiveValueNoThrow(from_type, to_type, src_value, value))) { in ConvertJValueCommon()
232 } else if (IsReferenceType(from_type) && IsReferenceType(to_type)) { in ConvertJValueCommon()
249 DCHECK(IsPrimitiveType(from_type)); in ConvertJValueCommon()
256 ObjPtr<mirror::Class> boxed_from_class = GetBoxedPrimitiveClass(from_type); in ConvertJValueCommon()
258 type = from_type; in ConvertJValueCommon()
265 if (UNLIKELY(from_type != type)) { in ConvertJValueCommon()
270 if (UNLIKELY(!ConvertPrimitiveValueNoThrow(from_type, type, src_value, value))) { in ConvertJValueCommon()
[all …]