Lines Matching refs:builder

1 package org.jf.dexlib2.builder;
6 import org.jf.dexlib2.builder.instruction.BuilderInstruction10t;
7 import org.jf.dexlib2.builder.instruction.BuilderInstruction10x;
8 import org.jf.dexlib2.builder.instruction.BuilderInstruction20t;
19 MethodImplementationBuilder builder = new MethodImplementationBuilder(1);
21 Label gotoTarget = builder.getLabel("gotoTarget");
22 builder.addInstruction(new BuilderInstruction10t(Opcode.GOTO, gotoTarget));
25 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
28 builder.addLabel("gotoTarget");
29 builder.addInstruction(new BuilderInstruction10x(Opcode.RETURN_VOID));
31 MethodImplementation impl = builder.getMethodImplementation();
42 MethodImplementationBuilder builder = new MethodImplementationBuilder(1);
44 Label gotoTarget = builder.getLabel("gotoTarget");
45 builder.addInstruction(new BuilderInstruction10t(Opcode.GOTO, gotoTarget));
48 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
51 builder.addLabel("gotoTarget");
52 builder.addInstruction(new BuilderInstruction10x(Opcode.RETURN_VOID));
54 MethodImplementation impl = builder.getMethodImplementation();
65 MethodImplementationBuilder builder = new MethodImplementationBuilder(1);
67 Label gotoTarget = builder.getLabel("gotoTarget");
68 builder.addInstruction(new BuilderInstruction20t(Opcode.GOTO_16, gotoTarget));
71 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
74 builder.addLabel("gotoTarget");
75 builder.addInstruction(new BuilderInstruction10x(Opcode.RETURN_VOID));
77 MethodImplementation impl = builder.getMethodImplementation();
88 MethodImplementationBuilder builder = new MethodImplementationBuilder(1);
90 Label goto16Target = builder.getLabel("goto16Target");
91 builder.addInstruction(new BuilderInstruction20t(Opcode.GOTO_16, goto16Target));
94 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
97 Label gotoTarget = builder.getLabel("gotoTarget");
98 builder.addInstruction(new BuilderInstruction10t(Opcode.GOTO, gotoTarget));
101 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
104 builder.addLabel("gotoTarget");
107 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
110 builder.addLabel("goto16Target");
111 builder.addInstruction(new BuilderInstruction10x(Opcode.RETURN_VOID));
113 MethodImplementation impl = builder.getMethodImplementation();