Searched refs:srcType (Results 1 - 5 of 5) sorted by relevance

/dalvik/vm/native/
H A Djava_lang_System.cpp229 char srcType = srcClass->descriptor[1]; local
236 bool srcPrim = (srcType != '[' && srcType != 'L');
239 if (srcPrim != dstPrim || srcType != dstType) {
245 srcType, dstArray->contents, dstPos,
248 switch (srcType) {
H A Djava_lang_reflect_Field.cpp573 PrimitiveType srcType = dexGetPrimitiveTypeFromDescriptorChar(descriptor); local
583 if (dvmConvertPrimitiveValue(srcType, fieldType->primitiveType,
/dalvik/vm/analysis/
H A DCodeVerify.cpp262 * Determine whether we can convert "srcType" to "checkType", where
267 static bool canConvertTo1nr(RegType srcType, RegType checkType) argument
294 LOG_VFY("Unexpected checkType %d (srcType=%d)", checkType, srcType);
300 //printf("convTab[%d][%d] = %d\n", srcType, checkType,
301 // convTab[srcType-kRegType1nrSTART][checkType-kRegType1nrSTART]);
302 if (srcType >= kRegType1nrSTART && srcType <= kRegType1nrEND)
303 return (bool) convTab[srcType-kRegType1nrSTART][checkType-kRegType1nrSTART];
311 static bool canConvertTo2(RegType srcType, RegTyp argument
1590 RegType srcType = insnRegs[vsrc]; local
2108 checkLitop(RegisterLine* registerLine, DecodedInstruction* pDecInsn, RegType dstType, RegType srcType, bool checkBooleanOp, VerifyError* pFailure) argument
2199 RegType srcType = getRegisterType(registerLine, reg); local
3961 RegType srcType = getRegisterType(workLine, decInsn.vA); local
4457 RegType srcType, indexType; local
4627 RegType srcType, dstType, indexType; local
4897 RegType srcType, fieldType, objType; local
5163 RegType srcType, fieldType; local
[all...]
/dalvik/vm/reflect/
H A DReflect.cpp899 int dvmConvertPrimitiveValue(PrimitiveType srcType, argument
911 assert((srcType != PRIM_VOID) && (srcType != PRIM_NOT));
918 conv = (srcType == dstType) ? OK4 : bad;
922 switch (srcType) {
930 switch (srcType) {
940 switch (srcType) {
951 switch (srcType) {
963 switch (srcType) {
1000 dexGetPrimitiveTypeDescriptor(srcType),
1023 PrimitiveType srcType; local
[all...]
H A DReflect.h74 int dvmConvertPrimitiveValue(PrimitiveType srcType,

Completed in 81 milliseconds