CloneSet2024


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
7210.989statement_sequence_member
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
172398
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/CompletionEngine.java
272412
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/CompletionEngine.java
Clone Instance
1
Line Count
7
Source Line
2398
Source File
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/CompletionEngine.java

                                        if (classTypeParameters != null) {
                                                for (int i = 0; i < classTypeParameters.length; i++) {
                                                        TypeParameter typeParameter = classTypeParameters[i];
                                                        if (excludedNameCount == excludedNames.length) {
                                                                System.arraycopy(excludedNames, 0, excludedNames = new char[excludedNameCount * 2][], 0, excludedNameCount);
                                                        }
                                                        excludedNames[excludedNameCount++ ] = typeParameter.name;
                                                }
                                        }


Clone Instance
2
Line Count
7
Source Line
2412
Source File
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/CompletionEngine.java

                                                if (methodTypeParameters != null) {
                                                        for (int i = 0; i < methodTypeParameters.length; i++) {
                                                                TypeParameter typeParameter = methodTypeParameters[i];
                                                                if (excludedNameCount == excludedNames.length) {
                                                                        System.arraycopy(excludedNames, 0, excludedNames = new char[excludedNameCount * 2][], 0, excludedNameCount);
                                                                }
                                                                excludedNames[excludedNameCount++ ] = typeParameter.name;
                                                        }
                                                }


Clone AbstractionParameter Count: 1Parameter Bindings

if ( [[#variablea15d2520]]!= null) {
  for (int i = 0; i <  [[#variablea15d2520]].length; i++) {
    TypeParameter typeParameter = [[#variablea15d2520]][i];
    if (excludedNameCount == excludedNames.length) {
      System.arraycopy(excludedNames, 0, excludedNames = new char[excludedNameCount * 2][], 0, excludedNameCount);
    }
    excludedNames[excludedNameCount++ ] = typeParameter.name;
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#a15d2520]]
classTypeParameters 
12[[#a15d2520]]
methodTypeParameters