Home
last modified time | relevance | path

Searched refs:accessorParams (Results 1 – 3 of 3) sorted by relevance

/external/r8/src/main/java/com/android/tools/r8/ir/desugar/
DAccessorMethodSourceCode.java34 DexType[] accessorParams = proto.parameters.values; in checkSignatures() local
41 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() local
102 for (int i = 0; i < accessorParams.length; i++) { in prepareInstructions()
103 DexType param = accessorParams[i]; in prepareInstructions()
DLambdaClass.java306 DexType[] accessorParams = new DexType[1 + implParams.length]; in createInstanceMethodTarget() local
307 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()
/external/r8/src/main/java/com/android/tools/r8/ir/synthetic/
DForwardMethodSourceCode.java85 DexType[] accessorParams = proto.parameters.values; in prepareInstructions() local
86 for (int i = 0; i < accessorParams.length; i++) { in prepareInstructions()
87 argMoveTypes.add(MoveType.fromDexType(accessorParams[i])); in prepareInstructions()