Home
last modified time | relevance | path

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

/external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
DDexDataWriterTest.java209 … private void testWriteEncodedIntHelper(int integerValue, int... encodedValue) throws IOException { in testWriteEncodedIntHelper() method in DexDataWriterTest
221 testWriteEncodedIntHelper(0x00, 0x00); in testWriteEncodedInt()
222 testWriteEncodedIntHelper(0x40, 0x40); in testWriteEncodedInt()
223 testWriteEncodedIntHelper(0x7f, 0x7f); in testWriteEncodedInt()
224 testWriteEncodedIntHelper(0xff, 0xff, 0x00); in testWriteEncodedInt()
225 testWriteEncodedIntHelper(0xffff80, 0x80, 0xff, 0xff, 0x00); in testWriteEncodedInt()
226 testWriteEncodedIntHelper(0xffffff80, 0x80); in testWriteEncodedInt()
227 testWriteEncodedIntHelper(0xffffffff, 0xff); in testWriteEncodedInt()
228 testWriteEncodedIntHelper(0x100, 0x00, 0x01); in testWriteEncodedInt()
229 testWriteEncodedIntHelper(0x7fff, 0xff, 0x7f); in testWriteEncodedInt()
[all …]