Searched defs:instructions (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/test/java/libcore/xml/
H A DSimpleParserTest.java41 private StringBuffer instructions; field in class:SimpleParserTest
63 instructions = new StringBuffer();
75 instructions = null;
99 if (instructions.length() != 0) {
100 instructions.append(",");
102 instructions.append(s);
158 assertEquals("The:quick,brown:fox", instructions.toString());
186 assertEquals("The:quick,brown:fox", instructions.toString());
/libcore/dex/src/main/java/com/android/dex/
H A DCode.java24 private final short[] instructions; field in class:Code
29 short[] instructions, Try[] tries, CatchHandler[] catchHandlers) {
34 this.instructions = instructions;
56 return instructions;
28 Code(int registersSize, int insSize, int outsSize, int debugInfoOffset, short[] instructions, Try[] tries, CatchHandler[] catchHandlers) argument

Completed in 65 milliseconds