Home
last modified time | relevance | path

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

/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DGotoInstruction.java25 public abstract class GotoInstruction extends BranchInstruction implements UnconditionalBranch { class
27 GotoInstruction(final short opcode, final InstructionHandle target) { in GotoInstruction() method in GotoInstruction
36 GotoInstruction() { in GotoInstruction() method in GotoInstruction
DGOTO_W.java30 public class GOTO_W extends GotoInstruction {
DGOTO.java28 public class GOTO extends GotoInstruction implements VariableLengthInstruction {
DVisitor.java66 void visitGotoInstruction( GotoInstruction obj ); in visitGotoInstruction()
DEmptyVisitor.java73 public void visitGotoInstruction( final GotoInstruction obj ) { in visitGotoInstruction()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/structurals/
DControlFlowGraph.java28 import org.apache.bcel.generic.GotoInstruction;
371 if (inst instanceof GotoInstruction) { in _getSuccessors()
372 single[0] = ((GotoInstruction) inst).getTarget(); in _getSuccessors()
DSubroutines.java31 import org.apache.bcel.generic.GotoInstruction;
650 if (inst instanceof GotoInstruction) { in getSuccessors()
651 single[0] = ((GotoInstruction) inst).getTarget(); in getSuccessors()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/statics/
DPass3aVerifier.java59 import org.apache.bcel.generic.GotoInstruction;
388 (last instanceof GotoInstruction) || in pass3StaticInstructionChecks()