Lines Matching refs:dex
17 package com.android.dex;
19 import com.android.dex.util.Unsigned;
22 private final Dex dex;
27 public ProtoId(Dex dex, int shortyIndex, int returnTypeIndex, int parametersOffset) {
28 this.dex = dex;
54 public void writeTo(Dex.Section out) {
62 if (dex == null) {
66 return dex.strings().get(shortyIndex)
67 + ": " + dex.typeNames().get(returnTypeIndex)
68 + " " + dex.readTypeList(parametersOffset);