Searched refs:DexValueByte (Results 1 – 3 of 3) sorted by relevance
67 return DexValueByte.DEFAULT; in defaultForType()126 static public class DexValueByte extends SimpleDexValue { class in DexValue128 public static final DexValueByte DEFAULT = new DexValueByte((byte) 0);132 private DexValueByte(byte value) { in DexValueByte() method in DexValue.DexValueByte136 public static DexValueByte create(byte value) { in create()137 return value == DEFAULT.value ? DEFAULT : new DexValueByte(value); in create()156 return other instanceof DexValueByte && value == ((DexValueByte) other).value; in equals()
16 import com.android.tools.r8.graph.DexValue.DexValueByte;354 return DexValueByte.create(((Integer) value).byteValue()); in getStaticValue()645 elements[i] = DexValueByte.create(values[i]); in getDexValueArray()706 return DexValueByte.create((Byte) value); in getDexValue()
164 return DexValue.DexValueByte.create(value); in parseEncodedValue()