CloneSet1689


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
12210.994statement_sequence[5]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1123011
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/core/compiler/CharOperation.java
2123026
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/core/compiler/CharOperation.java
Clone Instance
1
Line Count
12
Source Line
3011
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/core/compiler/CharOperation.java

                        int start = last, end = i - 1;
                        while (start < i && array[start] == ' ')
                                start++;
                        while (end > start && array[end] == ' ')
                                end--;
                        split[currentWord] = new char[end - start + 1];
                        System.arraycopy(
                                array, 
                                start, 
                                split[currentWord++ ], 
                                0, 
                                end - start + 1);


Clone Instance
2
Line Count
12
Source Line
3026
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/core/compiler/CharOperation.java

        int start = last, end = length - 1;
        while (start < length && array[start] == ' ')
                start++;
        while (end > start && array[end] == ' ')
                end--;
        split[currentWord] = new char[end - start + 1];
        System.arraycopy(
                array, 
                start, 
                split[currentWord++ ], 
                0, 
                end - start + 1);


Clone AbstractionParameter Count: 1Parameter Bindings

int start = last, end = [[#variable8fd5eba0]] - 1;
while (start <  [[#variable8fd5eba0]]&& array[start] == ' ')
  start++;
while (end > start && array[end] == ' ')
  end--;
split[currentWord] = new char[end - start + 1];
System.arraycopy(array, start, split[currentWord++ ], 0, end - start + 1);
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#8fd5eba0]]
length 
12[[#8fd5eba0]]
i