Searched refs:DexValueFloat (Results 1 – 5 of 5) sorted by relevance
82 return DexValueFloat.DEFAULT; in defaultForType()352 static public class DexValueFloat extends SimpleDexValue { class in DexValue354 public static final DexValueFloat DEFAULT = new DexValueFloat(0);357 private DexValueFloat(float value) { in DexValueFloat() method in DexValue.DexValueFloat361 public static DexValueFloat create(float value) { in create()362 return Float.compare(value, DEFAULT.value) == 0 ? DEFAULT : new DexValueFloat(value); in create()384 return (other instanceof DexValueFloat) && in equals()385 (Float.compare(value, ((DexValueFloat) other).value) == 0); in equals()
178 if (arg instanceof DexValue.DexValueFloat) { in write()180 out.writeFloat(((DexValue.DexValueFloat) arg).value); in write()
20 import com.android.tools.r8.graph.DexValue.DexValueFloat;366 return DexValueFloat.create((Float) value); in getStaticValue()687 elements[i] = DexValueFloat.create(values[i]); in getDexValueArray()718 return DexValueFloat.create((Float) value); in getDexValue()
188 return DexValue.DexValueFloat.create(parseFloat(file, size)); in parseEncodedValue()
2553 return DexValue.DexValueFloat.create((Float) value); in decodeBootstrapArgument()