Home
last modified time | relevance | path

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

/external/r8/src/main/java/com/android/tools/r8/graph/
DDexValue.java67 return DexValueByte.DEFAULT; in defaultForType()
126 static public class DexValueByte extends SimpleDexValue { class in DexValue
128 public static final DexValueByte DEFAULT = new DexValueByte((byte) 0);
132 private DexValueByte(byte value) { in DexValueByte() method in DexValue.DexValueByte
136 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()
DJarClassFileReader.java16 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()
/external/r8/src/main/java/com/android/tools/r8/dex/
DDexFileReader.java164 return DexValue.DexValueByte.create(value); in parseEncodedValue()