Home
last modified time | relevance | path

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

/libcore/dex/src/main/java/com/android/dex/
DCode.java24 private final short[] instructions; field in Code
29 short[] instructions, Try[] tries, CatchHandler[] catchHandlers) { in Code() argument
34 this.instructions = instructions; in Code()
56 return instructions; in getInstructions()
DDex.java649 short[] instructions = readShortArray(instructionsSize); in readCode() local
653 if (instructions.length % 2 == 1) { in readCode()
670 return new Code(registersSize, insSize, outsSize, debugInfoOffset, instructions, in readCode()
/libcore/luni/src/test/java/libcore/xml/
DSimpleParserTest.java41 private StringBuffer instructions; field in SimpleParserTest
63 instructions = new StringBuffer(); in setUp()
75 instructions = null; in tearDown()
99 if (instructions.length() != 0) {
100 instructions.append(",");
102 instructions.append(s);
158 assertEquals("The:quick,brown:fox", instructions.toString()); in testWorkingFile1()
186 assertEquals("The:quick,brown:fox", instructions.toString()); in testWorkingFile2()