CloneSet6415


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
4220.982class_body_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1431
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/DoubleCache.java
2431
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/FloatCache.java
Clone Instance
1
Line Count
4
Source Line
31
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/DoubleCache.java

/**
 * Constructs a new, empty hashtable with the specified initial
 * capacity.
 * @param initialCapacity int
 *  the initial number of buckets
 */
public DoubleCache(int initialCapacity) {
        this.elementSize = 0;
        this.keyTable = new double[initialCapacity];
        this.valueTable = new int[initialCapacity];
}


Clone Instance
2
Line Count
4
Source Line
31
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/FloatCache.java

/**
 * Constructs a new, empty hashtable with the specified initial
 * capacity.
 * @param initialCapacity int
 *  the initial number of buckets
 */
public FloatCache(int initialCapacity) {
        this.elementSize = 0;
        this.keyTable = new float[initialCapacity];
        this.valueTable = new int[initialCapacity];
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
 * Constructs a new, empty hashtable with the specified initial
 * capacity.
 * @param initialCapacity int
 *  the initial number of buckets
 */
public [[#variable6096fda0]](int initialCapacity) {
  this.elementSize = 0;
  this.keyTable = new [[#variable6096fd80]][initialCapacity];
  this.valueTable = new int[initialCapacity];
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#6096fda0]]
FloatCache 
12[[#6096fda0]]
DoubleCache 
21[[#6096fd80]]
float 
22[[#6096fd80]]
double