Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
6 | 20 | 2 | 0.986 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 6 | 984 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/DefaultBytecodeVisitor.java |
2 | 6 | 995 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/DefaultBytecodeVisitor.java |
3 | 6 | 1096 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/DefaultBytecodeVisitor.java |
4 | 6 | 1107 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/DefaultBytecodeVisitor.java |
5 | 6 | 1118 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/DefaultBytecodeVisitor.java |
6 | 6 | 1129 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/DefaultBytecodeVisitor.java |
7 | 6 | 1140 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/DefaultBytecodeVisitor.java |
8 | 6 | 1151 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/DefaultBytecodeVisitor.java |
9 | 6 | 1162 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/DefaultBytecodeVisitor.java |
10 | 6 | 1173 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/DefaultBytecodeVisitor.java |
11 | 6 | 1256 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/DefaultBytecodeVisitor.java |
12 | 6 | 1267 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/DefaultBytecodeVisitor.java |
13 | 6 | 1278 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/DefaultBytecodeVisitor.java |
14 | 6 | 1289 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/DefaultBytecodeVisitor.java |
15 | 6 | 1300 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/DefaultBytecodeVisitor.java |
16 | 6 | 1311 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/DefaultBytecodeVisitor.java |
17 | 6 | 1322 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/DefaultBytecodeVisitor.java |
18 | 6 | 1333 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/DefaultBytecodeVisitor.java |
19 | 6 | 1646 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/DefaultBytecodeVisitor.java |
20 | 6 | 1657 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/DefaultBytecodeVisitor.java |
| ||||
/** * @see IBytecodeVisitor#_goto_w(int, int) */ public void _goto_w(int pc, int branchOffset) { dumpPcNumber(pc); buffer.append(OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.GOTO_W]) .append(Messages.disassembler_space). append(branchOffset + pc); writeNewLine(); } |
| ||||
/** * @see IBytecodeVisitor#_goto(int, int) */ public void _goto(int pc, int branchOffset) { dumpPcNumber(pc); buffer.append(OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.GOTO]) .append(Messages.disassembler_space). append(branchOffset + pc); writeNewLine(); } |
| ||||
/** * @see IBytecodeVisitor#_if_acmpeq(int, int) */ public void _if_acmpeq(int pc, int branchOffset) { dumpPcNumber(pc); buffer.append(OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.IF_ACMPEQ]) .append(Messages.disassembler_space). append(branchOffset + pc); writeNewLine(); } |
| ||||
/** * @see IBytecodeVisitor#_if_acmpne(int, int) */ public void _if_acmpne(int pc, int branchOffset) { dumpPcNumber(pc); buffer.append(OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.IF_ACMPNE]) .append(Messages.disassembler_space). append(branchOffset + pc); writeNewLine(); } |
| ||||
/** * @see IBytecodeVisitor#_if_icmpeq(int, int) */ public void _if_icmpeq(int pc, int branchOffset) { dumpPcNumber(pc); buffer.append(OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.IF_ICMPEQ]) .append(Messages.disassembler_space). append(branchOffset + pc); writeNewLine(); } |
| ||||
/** * @see IBytecodeVisitor#_if_icmpge(int, int) */ public void _if_icmpge(int pc, int branchOffset) { dumpPcNumber(pc); buffer.append(OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.IF_ICMPGE]) .append(Messages.disassembler_space). append(branchOffset + pc); writeNewLine(); } |
| ||||
/** * @see IBytecodeVisitor#_if_icmpgt(int, int) */ public void _if_icmpgt(int pc, int branchOffset) { dumpPcNumber(pc); buffer.append(OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.IF_ICMPGT]) .append(Messages.disassembler_space). append(branchOffset + pc); writeNewLine(); } |
| ||||
/** * @see IBytecodeVisitor#_if_icmple(int, int) */ public void _if_icmple(int pc, int branchOffset) { dumpPcNumber(pc); buffer.append(OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.IF_ICMPLE]) .append(Messages.disassembler_space). append(branchOffset + pc); writeNewLine(); } |
| ||||
/** * @see IBytecodeVisitor#_if_icmplt(int, int) */ public void _if_icmplt(int pc, int branchOffset) { dumpPcNumber(pc); buffer.append(OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.IF_ICMPLT]) .append(Messages.disassembler_space). append(branchOffset + pc); writeNewLine(); } |
| ||||
/** * @see IBytecodeVisitor#_if_icmpne(int, int) */ public void _if_icmpne(int pc, int branchOffset) { dumpPcNumber(pc); buffer.append(OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.IF_ICMPNE]) .append(Messages.disassembler_space). append(branchOffset + pc); writeNewLine(); } |
| ||||
/** * @see IBytecodeVisitor#_ifeq(int, int) */ public void _ifeq(int pc, int branchOffset) { dumpPcNumber(pc); buffer.append(OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.IFEQ]) .append(Messages.disassembler_space). append(branchOffset + pc); writeNewLine(); } |
| ||||
/** * @see IBytecodeVisitor#_ifge(int, int) */ public void _ifge(int pc, int branchOffset) { dumpPcNumber(pc); buffer.append(OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.IFGE]) .append(Messages.disassembler_space). append(branchOffset + pc); writeNewLine(); } |
| ||||
/** * @see IBytecodeVisitor#_ifgt(int, int) */ public void _ifgt(int pc, int branchOffset) { dumpPcNumber(pc); buffer.append(OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.IFGT]) .append(Messages.disassembler_space). append(branchOffset + pc); writeNewLine(); } |
| ||||
/** * @see IBytecodeVisitor#_ifle(int, int) */ public void _ifle(int pc, int branchOffset) { dumpPcNumber(pc); buffer.append(OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.IFLE]) .append(Messages.disassembler_space). append(branchOffset + pc); writeNewLine(); } |
| ||||
/** * @see IBytecodeVisitor#_iflt(int, int) */ public void _iflt(int pc, int branchOffset) { dumpPcNumber(pc); buffer.append(OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.IFLT]) .append(Messages.disassembler_space). append(branchOffset + pc); writeNewLine(); } |
| ||||
/** * @see IBytecodeVisitor#_ifne(int, int) */ public void _ifne(int pc, int branchOffset) { dumpPcNumber(pc); buffer.append(OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.IFNE]) .append(Messages.disassembler_space). append(branchOffset + pc); writeNewLine(); } |
| ||||
/** * @see IBytecodeVisitor#_ifnonnull(int, int) */ public void _ifnonnull(int pc, int branchOffset) { dumpPcNumber(pc); buffer.append(OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.IFNONNULL]) .append(Messages.disassembler_space). append(branchOffset + pc); writeNewLine(); } |
| ||||
/** * @see IBytecodeVisitor#_ifnull(int, int) */ public void _ifnull(int pc, int branchOffset) { dumpPcNumber(pc); buffer.append(OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.IFNULL]) .append(Messages.disassembler_space). append(branchOffset + pc); writeNewLine(); } |
| ||||
/** * @see IBytecodeVisitor#_jsr_w(int, int) */ public void _jsr_w(int pc, int branchOffset) { dumpPcNumber(pc); buffer.append(OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.JSR_W]) .append(Messages.disassembler_space). append(branchOffset + pc); writeNewLine(); } |
| ||||
/** * @see IBytecodeVisitor#_jsr(int, int) */ public void _jsr(int pc, int branchOffset) { dumpPcNumber(pc); buffer.append(OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.JSR]) .append(Messages.disassembler_space). append(branchOffset + pc); writeNewLine(); } |
| |||
/** * @see IBytecodeVisitor#_goto_w(int, int) */ /** * @see IBytecodeVisitor#_goto(int, int) */ /** * @see IBytecodeVisitor#_if_acmpeq(int, int) */ /** * @see IBytecodeVisitor#_if_acmpne(int, int) */ /** * @see IBytecodeVisitor#_if_icmpeq(int, int) */ /** * @see IBytecodeVisitor#_if_icmpge(int, int) */ /** * @see IBytecodeVisitor#_if_icmpgt(int, int) */ /** * @see IBytecodeVisitor#_if_icmple(int, int) */ /** * @see IBytecodeVisitor#_if_icmplt(int, int) */ /** * @see IBytecodeVisitor#_if_icmpne(int, int) */ /** * @see IBytecodeVisitor#_ifeq(int, int) */ /** * @see IBytecodeVisitor#_ifge(int, int) */ /** * @see IBytecodeVisitor#_ifgt(int, int) */ /** * @see IBytecodeVisitor#_ifle(int, int) */ /** * @see IBytecodeVisitor#_iflt(int, int) */ /** * @see IBytecodeVisitor#_ifne(int, int) */ /** * @see IBytecodeVisitor#_ifnonnull(int, int) */ /** * @see IBytecodeVisitor#_ifnull(int, int) */ /** * @see IBytecodeVisitor#_jsr_w(int, int) */ /** * @see IBytecodeVisitor#_jsr(int, int) */ public void [[#variablebb805ea0]](int pc, int branchOffset) { dumpPcNumber(pc); buffer.append(OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics. [[#variablebb805e00]]]).append(Messages.disassembler_space).append(branchOffset + pc); writeNewLine(); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#bb805ea0]] | _goto_w |
1 | 2 | [[#bb805ea0]] | _goto |
1 | 3 | [[#bb805ea0]] | _if_acmpeq |
1 | 4 | [[#bb805ea0]] | _if_acmpne |
1 | 5 | [[#bb805ea0]] | _if_icmpeq |
1 | 6 | [[#bb805ea0]] | _if_icmpge |
1 | 7 | [[#bb805ea0]] | _if_icmpgt |
1 | 8 | [[#bb805ea0]] | _if_icmple |
1 | 9 | [[#bb805ea0]] | _if_icmplt |
1 | 10 | [[#bb805ea0]] | _if_icmpne |
1 | 11 | [[#bb805ea0]] | _ifeq |
1 | 12 | [[#bb805ea0]] | _ifge |
1 | 13 | [[#bb805ea0]] | _ifgt |
1 | 14 | [[#bb805ea0]] | _ifle |
1 | 15 | [[#bb805ea0]] | _iflt |
1 | 16 | [[#bb805ea0]] | _ifne |
1 | 17 | [[#bb805ea0]] | _ifnonnull |
1 | 18 | [[#bb805ea0]] | _ifnull |
1 | 19 | [[#bb805ea0]] | _jsr_w |
1 | 20 | [[#bb805ea0]] | _jsr |
2 | 1 | [[#bb805e00]] | GOTO_W |
2 | 2 | [[#bb805e00]] | GOTO |
2 | 3 | [[#bb805e00]] | IF_ACMPEQ |
2 | 4 | [[#bb805e00]] | IF_ACMPNE |
2 | 5 | [[#bb805e00]] | IF_ICMPEQ |
2 | 6 | [[#bb805e00]] | IF_ICMPGE |
2 | 7 | [[#bb805e00]] | IF_ICMPGT |
2 | 8 | [[#bb805e00]] | IF_ICMPLE |
2 | 9 | [[#bb805e00]] | IF_ICMPLT |
2 | 10 | [[#bb805e00]] | IF_ICMPNE |
2 | 11 | [[#bb805e00]] | IFEQ |
2 | 12 | [[#bb805e00]] | IFGE |
2 | 13 | [[#bb805e00]] | IFGT |
2 | 14 | [[#bb805e00]] | IFLE |
2 | 15 | [[#bb805e00]] | IFLT |
2 | 16 | [[#bb805e00]] | IFNE |
2 | 17 | [[#bb805e00]] | IFNONNULL |
2 | 18 | [[#bb805e00]] | IFNULL |
2 | 19 | [[#bb805e00]] | JSR_W |
2 | 20 | [[#bb805e00]] | JSR |