Home
last modified time | relevance | path

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

/external/r8/src/main/java/com/android/tools/r8/graph/
DDexValue.java64 return DexValueBoolean.DEFAULT; in defaultForType()
719 static public class DexValueBoolean extends SimpleDexValue { class in DexValue
721 private static final DexValueBoolean TRUE = new DexValueBoolean(true);
722 private static final DexValueBoolean FALSE = new DexValueBoolean(false);
724 private static final DexValueBoolean DEFAULT = new DexValueBoolean(false);
728 private DexValueBoolean(boolean value) { in DexValueBoolean() method in DexValue.DexValueBoolean
732 public static DexValueBoolean create(boolean value) { in create()
751 return (other instanceof DexValueBoolean) && ((DexValueBoolean) other).value == value; in equals()
DJarClassFileReader.java15 import com.android.tools.r8.graph.DexValue.DexValueBoolean;
351 return DexValueBoolean.create(i == 1); in getStaticValue()
652 elements[i] = DexValueBoolean.create(values[i]); in getDexValueArray()
708 return DexValueBoolean.create((Boolean) value); in getDexValue()
/external/r8/src/main/java/com/android/tools/r8/dex/
DDexFileReader.java234 return DexValue.DexValueBoolean.create(valueArg != 0); in parseEncodedValue()