CloneSet1164


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6520.980class_body_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1643
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/CharArrayCache.java
2639
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/DoubleCache.java
3639
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/FloatCache.java
4640
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/ObjectCache.java
5642
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/util/HashtableOfObject.java
Clone Instance
1
Line Count
6
Source Line
43
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/CharArrayCache.java

/**
 * Clears the hash table so that it has no more elements in it.
 */
public void clear() {
        for (int i = this.keyTable.length; --i >= 0;) {
                this.keyTable[i] = null;
                this.valueTable[i] = 0;
        }
        this.elementSize = 0;
}


Clone Instance
2
Line Count
6
Source Line
39
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/DoubleCache.java

/**
 * Clears the hash table so that it has no more elements in it.
 */
public void clear() {
        for (int i = this.keyTable.length; --i >= 0;) {
                this.keyTable[i] = 0.0;
                this.valueTable[i] = 0;
        }
        this.elementSize = 0;
}


Clone Instance
3
Line Count
6
Source Line
39
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/FloatCache.java

/**
 * Clears the hash table so that it has no more elements in it.
 */
public void clear() {
        for (int i = this.keyTable.length; --i >= 0;) {
                this.keyTable[i] = 0.0F;
                this.valueTable[i] = 0;
        }
        this.elementSize = 0;
}


Clone Instance
4
Line Count
6
Source Line
40
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/ObjectCache.java

/**
 * Clears the hash table so that it has no more elements in it.
 */
public void clear() {
        for (int i = this.keyTable.length; --i >= 0;) {
                this.keyTable[i] = null;
                this.valueTable[i] = 0;
        }
        this.elementSize = 0;
}


Clone Instance
5
Line Count
6
Source Line
42
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/util/HashtableOfObject.java

        public void clear() {
                for (int i = this.keyTable.length; --i >= 0;) {
                        this.keyTable[i] = null;
                        this.valueTable[i] = null;
                }
                this.elementSize = 0;
        }


Clone AbstractionParameter Count: 2Parameter Bindings

/**
 * Clears the hash table so that it has no more elements in it.
 */
public void clear() {
  for (int i = this.keyTable.length; --i >= 0;) {
    this.keyTable[i] = [[#variableb89234c0]];
    this.valueTable[i] = [[#variableb8923440]];
  }
  this.elementSize = 0;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#b89234c0]]
0.0 
12[[#b89234c0]]
null 
13[[#b89234c0]]
null 
14[[#b89234c0]]
0.0F 
15[[#b89234c0]]
null 
21[[#b8923440]]
0 
22[[#b8923440]]
0 
23[[#b8923440]]
null 
24[[#b8923440]]
0 
25[[#b8923440]]
0