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.cc205 const Primitive::Type from_type = from->GetPrimitiveType(); in ConvertJValueCommon() local
214 if (from_type == Primitive::kPrimVoid) { in ConvertJValueCommon()
221 if (IsPrimitiveType(from_type) && IsPrimitiveType(to_type)) { in ConvertJValueCommon()
223 if (UNLIKELY(!ConvertPrimitiveValueNoThrow(from_type, to_type, src_value, value))) { in ConvertJValueCommon()
228 } else if (IsReferenceType(from_type) && IsReferenceType(to_type)) { in ConvertJValueCommon()
245 DCHECK(IsPrimitiveType(from_type)); in ConvertJValueCommon()
252 ObjPtr<mirror::Class> boxed_from_class = GetBoxedPrimitiveClass(from_type); in ConvertJValueCommon()
254 type = from_type; in ConvertJValueCommon()
261 if (UNLIKELY(from_type != type)) { in ConvertJValueCommon()
266 if (UNLIKELY(!ConvertPrimitiveValueNoThrow(from_type, type, src_value, value))) { in ConvertJValueCommon()
[all …]