Searched refs:DexValueShort (Results 1 – 3 of 3) sorted by relevance
73 return DexValueShort.DEFAULT; in defaultForType()172 static public class DexValueShort extends SimpleDexValue { class in DexValue174 public static final DexValueShort DEFAULT = new DexValueShort((short) 0);177 private DexValueShort(short value) { in DexValueShort() method in DexValue.DexValueShort181 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()
24 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()
169 return DexValue.DexValueShort.create(value); in parseEncodedValue()