Home
last modified time | relevance | path

Searched defs:encodedValue (Results 1 – 25 of 55) sorted by relevance

123

/external/google-smali/dexlib2/src/test/java/com/android/tools/smali/dexlib2/writer/
DDexDataWriterTest.java207 … private void testWriteEncodedIntHelper(int integerValue, int... encodedValue) throws IOException { in testWriteEncodedIntHelper()
241 …private void testWriteEncodedUintHelper(int integerValue, int... encodedValue) throws IOException { in testWriteEncodedUintHelper()
279 … private void testWriteEncodedLongHelper(long longValue, int... encodedValue) throws IOException { in testWriteEncodedLongHelper()
346 …private void testWriteRightZeroExtendedIntHelper(int intValue, int... encodedValue) throws IOExcep… in testWriteRightZeroExtendedIntHelper()
391 …private void testWriteRightZeroExtendedLongHelper(long longValue, int... encodedValue) throws IOEx… in testWriteRightZeroExtendedLongHelper()
470 private void testWriteStringHelper(String stringValue, int... encodedValue) throws IOException { in testWriteStringHelper()
DDexWriterSleb128Test.java226 private void performTest(int integerValue, byte[] encodedValue) throws IOException { in performTest()
230 …private void performTest(int integerValue, byte[] encodedValue, int encodedLength) throws IOExcept… in performTest()
DDexWriterUleb128Test.java223 private void performTest(int integerValue, byte[] encodedValue) throws IOException { in performTest()
227 …private void performTest(int integerValue, byte[] encodedValue, int encodedLength) throws IOExcept… in performTest()
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
DDexDataWriterTest.java208 … private void testWriteEncodedIntHelper(int integerValue, int... encodedValue) throws IOException { in testWriteEncodedIntHelper()
242 …private void testWriteEncodedUintHelper(int integerValue, int... encodedValue) throws IOException { in testWriteEncodedUintHelper()
280 … private void testWriteEncodedLongHelper(long longValue, int... encodedValue) throws IOException { in testWriteEncodedLongHelper()
347 …private void testWriteRightZeroExtendedIntHelper(int intValue, int... encodedValue) throws IOExcep… in testWriteRightZeroExtendedIntHelper()
392 …private void testWriteRightZeroExtendedLongHelper(long longValue, int... encodedValue) throws IOEx… in testWriteRightZeroExtendedLongHelper()
471 private void testWriteStringHelper(String stringValue, int... encodedValue) throws IOException { in testWriteStringHelper()
DDexWriterSleb128Test.java227 private void performTest(int integerValue, byte[] encodedValue) throws IOException { in performTest()
231 …private void performTest(int integerValue, byte[] encodedValue, int encodedLength) throws IOExcept… in performTest()
DDexWriterUleb128Test.java224 private void performTest(int integerValue, byte[] encodedValue) throws IOException { in performTest()
228 …private void performTest(int integerValue, byte[] encodedValue, int encodedLength) throws IOExcept… in performTest()
/external/google-smali/baksmali/src/main/java/com/android/tools/smali/baksmali/formatter/
DBaksmaliWriter.java185 public void writeEncodedValue(EncodedValue encodedValue) throws IOException { in writeEncodedValue()
246 protected void writeBooleanEncodedValue(BooleanEncodedValue encodedValue) throws IOException { in writeBooleanEncodedValue()
263 protected void writeCharEncodedValue(CharEncodedValue encodedValue) throws IOException { in writeCharEncodedValue()
298 protected void writeFloatEncodedValue(FloatEncodedValue encodedValue) throws IOException { in writeFloatEncodedValue()
303 protected void writeDoubleEncodedValue(DoubleEncodedValue encodedValue) throws IOException { in writeDoubleEncodedValue()
307 protected void writeEnum(EnumEncodedValue encodedValue) throws IOException { in writeEnum()
/external/cbor-java/src/test/java/co/nstant/in/cbor/model/
DAbstractNumberTest.java22 private final byte[] encodedValue; field in AbstractNumberTest
24 public AbstractNumberTest(long value, byte[] encodedValue) { in AbstractNumberTest()
29 public AbstractNumberTest(BigInteger value, byte[] encodedValue) { in AbstractNumberTest()
DAbstractHalfPrecisionFloatTest.java19 private final byte[] encodedValue; field in AbstractHalfPrecisionFloatTest
21 public AbstractHalfPrecisionFloatTest(float value, byte[] encodedValue) { in AbstractHalfPrecisionFloatTest()
DAbstractSinglePrecisionFloatTest.java19 private final byte[] encodedValue; field in AbstractSinglePrecisionFloatTest
21 public AbstractSinglePrecisionFloatTest(float value, byte[] encodedValue) { in AbstractSinglePrecisionFloatTest()
DAbstractStringTest.java19 private final byte[] encodedValue; field in AbstractStringTest
21 public AbstractStringTest(String value, byte[] encodedValue) { in AbstractStringTest()
DAbstractByteStringTest.java19 private final byte[] encodedValue; field in AbstractByteStringTest
21 public AbstractByteStringTest(byte[] value, byte[] encodedValue) { in AbstractByteStringTest()
DAbstractDoublePrecisionFloatTest.java21 private final byte[] encodedValue; field in AbstractDoublePrecisionFloatTest
23 public AbstractDoublePrecisionFloatTest(double value, byte[] encodedValue) { in AbstractDoublePrecisionFloatTest()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/reference/
DDexBackedCallSiteReference.java76 EncodedValue encodedValue = getCallSiteIterator().getNextOrNull(); in getMethodHandle() local
95 EncodedValue encodedValue = iter.getNextOrNull(); in getMethodName() local
115 EncodedValue encodedValue = iter.getNextOrNull(); in getMethodProto() local
/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/dexbacked/reference/
DDexBackedCallSiteReference.java75 EncodedValue encodedValue = getCallSiteIterator().getNextOrNull(); in getMethodHandle() local
94 EncodedValue encodedValue = iter.getNextOrNull(); in getMethodName() local
114 EncodedValue encodedValue = iter.getNextOrNull(); in getMethodProto() local
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
DImmutableEncodedValueFactory.java46 public static ImmutableEncodedValue of(@Nonnull EncodedValue encodedValue) { in of()
118 public static ImmutableEncodedValue ofNullable(@Nullable EncodedValue encodedValue) { in ofNullable()
/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/immutable/value/
DImmutableEncodedValueFactory.java62 public static ImmutableEncodedValue of(@Nonnull EncodedValue encodedValue) { in of()
134 public static ImmutableEncodedValue ofNullable(@Nullable EncodedValue encodedValue) { in ofNullable()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
DEncodedValueUtils.java44 public static boolean isDefaultValue(EncodedValue encodedValue) { in isDefaultValue()
68 …public static void writeEncodedValue(Writer writer, EncodedValue encodedValue) throws IOException { in writeEncodedValue()
/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/util/
DEncodedValueUtils.java64 public static boolean isDefaultValue(EncodedValue encodedValue) { in isDefaultValue()
92 …public static void writeEncodedValue(Writer writer, EncodedValue encodedValue) throws IOException { in writeEncodedValue()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
DDexPool.java132@Nonnull EncodedValue encodedValue) throws IOException { in writeEncodedValue()
195 void internEncodedValue(@Nonnull EncodedValue encodedValue) { in internEncodedValue()
/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/writer/pool/
DDexPool.java155@Nonnull EncodedValue encodedValue) throws IOException { in writeEncodedValue()
218 void internEncodedValue(@Nonnull EncodedValue encodedValue) { in internEncodedValue()
/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/base/
DBaseMethodParameter.java62 EncodedValue encodedValue = annotationElement.getValue(); in getSignature() local
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/
DBaseMethodParameter.java63 EncodedValue encodedValue = annotationElement.getValue(); in getSignature() local
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/EncodedValue/
DEncodedValueAdaptor.java44 public static void writeTo(@Nonnull IndentingWriter writer, @Nonnull EncodedValue encodedValue, in writeTo()
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/x509/extension/
DX509ExtensionUtil.java35 byte[] encodedValue) in fromExtensionValue()

123