Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
6 | 3 | 2 | 0.975 | statement_sequence[3] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 6 | 65 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/GUnzip.java |
2 | 6 | 146 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Pack.java |
3 | 6 | 469 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Tar.java |
| |||||
byte[] buffer = new byte[8 * 1024]; int count = 0; do { out.write(buffer, 0, count); count = zIn.read(buffer, 0, buffer.length); } while (count != -1); |
| |||||
byte[] buffer = new byte[8 * 1024]; int count = 0; do { zOut.write(buffer, 0, count); count = in.read(buffer, 0, buffer.length); } while (count != -1); |
| |||||
byte[] buffer = new byte[8 * 1024]; int count = 0; do { tOut.write(buffer, 0, count); count = in.read(buffer, 0, buffer.length); } while (count != -1); |
| |||
byte[] buffer = new byte[8 * 1024]; int count = 0; do { [[#variable111e9c60]].write(buffer, 0, count); count = [[#variable111e9ca0]].read(buffer, 0, buffer.length); } while (count != -1); |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#111e9c60]] | out |
1 | 2 | [[#111e9c60]] | zOut |
1 | 3 | [[#111e9c60]] | tOut |
2 | 1 | [[#111e9ca0]] | zIn |
2 | 2 | [[#111e9ca0]] | in |
2 | 3 | [[#111e9ca0]] | in |