Searched refs:ByteEncodedValue (Results 1 – 8 of 8) sorted by relevance
36 import org.jf.dexlib2.iface.value.ByteEncodedValue;42 public abstract class BaseByteEncodedValue implements ByteEncodedValue {50 if (o instanceof ByteEncodedValue) { in equals()51 return getValue() == ((ByteEncodedValue)o).getValue(); in equals()60 return Ints.compare(getValue(), ((ByteEncodedValue)o).getValue()); in compareTo()
35 import org.jf.dexlib2.iface.value.ByteEncodedValue;44 public static ImmutableByteEncodedValue of(ByteEncodedValue byteEncodedValue) { in of()
49 return ImmutableByteEncodedValue.of((ByteEncodedValue)encodedValue); in of()
40 public interface ByteEncodedValue extends EncodedValue { interface
43 return ((ByteEncodedValue)encodedValue).getValue() == 0; in isDefaultValue()
57 ByteRenderer.writeTo(writer, ((ByteEncodedValue)encodedValue).getValue()); in writeTo()
223 writer.writeByte(((ByteEncodedValue)encodedValue).getValue());300 return new BuilderByteEncodedValue(((ByteEncodedValue)encodedValue).getValue());
135 writer.writeByte(((ByteEncodedValue)encodedValue).getValue()); in writeEncodedValue()