Searched refs:srcType (Results 1 – 3 of 3) sorted by relevance
32 Primitive::Type srcType, Primitive::Type dstType, in ConvertPrimitiveValue() argument34 DCHECK(srcType != Primitive::kPrimNot && dstType != Primitive::kPrimNot); in ConvertPrimitiveValue()35 if (LIKELY(srcType == dstType)) { in ConvertPrimitiveValue()46 if (srcType == Primitive::kPrimByte) { in ConvertPrimitiveValue()52 if (srcType == Primitive::kPrimByte || srcType == Primitive::kPrimChar || in ConvertPrimitiveValue()53 srcType == Primitive::kPrimShort) { in ConvertPrimitiveValue()59 if (srcType == Primitive::kPrimByte || srcType == Primitive::kPrimChar || in ConvertPrimitiveValue()60 srcType == Primitive::kPrimShort || srcType == Primitive::kPrimInt) { in ConvertPrimitiveValue()66 if (srcType == Primitive::kPrimByte || srcType == Primitive::kPrimChar || in ConvertPrimitiveValue()67 srcType == Primitive::kPrimShort || srcType == Primitive::kPrimInt) { in ConvertPrimitiveValue()[all …]
486 private static boolean compatibleTypes(char srcType, char dstType) { in compatibleTypes() argument491 return srcType == dstType; in compatibleTypes()493 return srcType == 'B' || srcType == 'S'; in compatibleTypes()495 return srcType == 'B' || srcType == 'C' || srcType == 'S' || srcType == 'I'; in compatibleTypes()497 return srcType == 'B' || srcType == 'C' || srcType == 'S' || srcType == 'I' || in compatibleTypes()498 srcType == 'J'; in compatibleTypes()500 return srcType == 'B' || srcType == 'C' || srcType == 'S' || srcType == 'I' || in compatibleTypes()501 srcType == 'J' || srcType == 'F'; in compatibleTypes()503 return srcType == 'B' || srcType == 'C' || srcType == 'S' || srcType == 'I' || in compatibleTypes()504 srcType == 'J' || srcType == 'F' || srcType == 'D'; in compatibleTypes()
137 std::string srcType(PrettyTypeOf(srcArray)); in System_arraycopy() local141 srcType.c_str(), dstType.c_str()); in System_arraycopy()