Searched refs:DexValueBoolean (Results 1 – 3 of 3) sorted by relevance
64 return DexValueBoolean.DEFAULT; in defaultForType()719 static public class DexValueBoolean extends SimpleDexValue { class in DexValue721 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.DexValueBoolean732 public static DexValueBoolean create(boolean value) { in create()751 return (other instanceof DexValueBoolean) && ((DexValueBoolean) other).value == value; in equals()
15 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()
234 return DexValue.DexValueBoolean.create(valueArg != 0); in parseEncodedValue()