Searched refs:accessorParams (Results 1 – 3 of 3) sorted by relevance
34 DexType[] accessorParams = proto.parameters.values; in checkSignatures() local41 assert accessorParams[index] == descriptor().getImplReceiverType(); in checkSignatures()46 assert accessorParams[index] == implParam; in checkSignatures()49 assert index == accessorParams.length; in checkSignatures()87 DexType[] accessorParams = proto.parameters.values; in prepareInstructions() local102 for (int i = 0; i < accessorParams.length; i++) { in prepareInstructions()103 DexType param = accessorParams[i]; in prepareInstructions()
306 DexType[] accessorParams = new DexType[1 + implParams.length]; in createInstanceMethodTarget() local307 accessorParams[0] = descriptor.getImplReceiverType(); in createInstanceMethodTarget()308 System.arraycopy(implParams, 0, accessorParams, 1, implParams.length); in createInstanceMethodTarget()309 DexProto accessorProto = rewriter.factory.createProto(implProto.returnType, accessorParams); in createInstanceMethodTarget()
85 DexType[] accessorParams = proto.parameters.values; in prepareInstructions() local86 for (int i = 0; i < accessorParams.length; i++) { in prepareInstructions()87 argMoveTypes.add(MoveType.fromDexType(accessorParams[i])); in prepareInstructions()