Home
last modified time | relevance | path

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

/art/runtime/
Dmethod_handles-inl.h180 const Primitive::Type from_type = from->GetPrimitiveType(); in PerformConversions() local
185 if (Primitive::Is64BitType(from_type)) { in PerformConversions()
187 } else if (from_type == Primitive::kPrimNot) { in PerformConversions()
194 if (Primitive::Is64BitType(from_type)) { in PerformConversions()
196 } else if (from_type == Primitive::kPrimNot) { in PerformConversions()
Dmethod_handles.cc204 const Primitive::Type from_type = from->GetPrimitiveType(); in ConvertJValueCommon() local
213 if (from_type == Primitive::kPrimVoid) { in ConvertJValueCommon()
220 if (IsPrimitiveType(from_type) && IsPrimitiveType(to_type)) { in ConvertJValueCommon()
222 if (UNLIKELY(!ConvertPrimitiveValueNoThrow(from_type, to_type, src_value, value))) { in ConvertJValueCommon()
227 } else if (IsReferenceType(from_type) && IsReferenceType(to_type)) { in ConvertJValueCommon()
244 DCHECK(IsPrimitiveType(from_type)); in ConvertJValueCommon()
251 ObjPtr<mirror::Class> boxed_from_class = GetBoxedPrimitiveClass(from_type); in ConvertJValueCommon()
253 type = from_type; in ConvertJValueCommon()
260 if (UNLIKELY(from_type != type)) { in ConvertJValueCommon()
265 if (UNLIKELY(!ConvertPrimitiveValueNoThrow(from_type, type, src_value, value))) { in ConvertJValueCommon()
[all …]