Home
last modified time | relevance | path

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

/external/r8/src/main/java/com/android/tools/r8/graph/
DDexValue.java73 return DexValueShort.DEFAULT; in defaultForType()
172 static public class DexValueShort extends SimpleDexValue { class in DexValue
174 public static final DexValueShort DEFAULT = new DexValueShort((short) 0);
177 private DexValueShort(short value) { in DexValueShort() method in DexValue.DexValueShort
181 public static DexValueShort create(short value) { in create()
182 return value == DEFAULT.value ? DEFAULT : new DexValueShort(value); in create()
200 return other instanceof DexValueShort && value == ((DexValueShort) other).value; in equals()
DJarClassFileReader.java24 import com.android.tools.r8.graph.DexValue.DexValueShort;
357 return DexValueShort.create(((Integer) value).shortValue()); in getStaticValue()
666 elements[i] = DexValueShort.create(values[i]); in getDexValueArray()
712 return DexValueShort.create((Short) value); in getDexValue()
/external/r8/src/main/java/com/android/tools/r8/dex/
DDexFileReader.java169 return DexValue.DexValueShort.create(value); in parseEncodedValue()