CloneSet414


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
14401.000statement_sequence[7]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1141981
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/complete/CompletionParser.java
214496
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/select/SelectionParser.java
3143461
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/Parser.java
414555
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/compiler/DocumentElementParser.java
Clone Instance
1
Line Count
14
Source Line
1981
Source File
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/complete/CompletionParser.java

                int extendedDimensions = this.intStack[this.intPtr-- ];
                int endOfEllipsis = 0;
                if (isVarArgs) {
                        endOfEllipsis = this.intStack[this.intPtr-- ];
                }
                int firstDimensions = this.intStack[this.intPtr-- ];
                final int typeDimensions = firstDimensions + extendedDimensions;
                TypeReference type = getTypeReference(typeDimensions);
                if (isVarArgs) {
                        type = copyDims(type, typeDimensions + 1);
                        if (extendedDimensions == 0) {
                                type.sourceEnd = endOfEllipsis;
                        }
                        type.bits |= ASTNode.IsVarArgs; // set isVarArgs
                }


Clone Instance
2
Line Count
14
Source Line
496
Source File
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/select/SelectionParser.java

                int extendedDimensions = this.intStack[this.intPtr-- ];
                int endOfEllipsis = 0;
                if (isVarArgs) {
                        endOfEllipsis = this.intStack[this.intPtr-- ];
                }
                int firstDimensions = this.intStack[this.intPtr-- ];
                final int typeDimensions = firstDimensions + extendedDimensions;
                TypeReference type = getTypeReference(typeDimensions);
                if (isVarArgs) {
                        type = copyDims(type, typeDimensions + 1);
                        if (extendedDimensions == 0) {
                                type.sourceEnd = endOfEllipsis;
                        }
                        type.bits |= ASTNode.IsVarArgs; // set isVarArgs
                }


Clone Instance
3
Line Count
14
Source Line
3461
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/Parser.java

        int extendedDimensions = this.intStack[this.intPtr-- ];
        int endOfEllipsis = 0;
        if (isVarArgs) {
                endOfEllipsis = this.intStack[this.intPtr-- ];
        }
        int firstDimensions = this.intStack[this.intPtr-- ];
        final int typeDimensions = firstDimensions + extendedDimensions;
        TypeReference type = getTypeReference(typeDimensions);
        if (isVarArgs) {
                type = copyDims(type, typeDimensions + 1);
                if (extendedDimensions == 0) {
                        type.sourceEnd = endOfEllipsis;
                }
                type.bits |= ASTNode.IsVarArgs; // set isVarArgs
        }


Clone Instance
4
Line Count
14
Source Line
555
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/compiler/DocumentElementParser.java

        int extendedDimensions = this.intStack[this.intPtr-- ];
        int endOfEllipsis = 0;
        if (isVarArgs) {
                endOfEllipsis = this.intStack[this.intPtr-- ];
        }
        int firstDimensions = this.intStack[this.intPtr-- ];
        final int typeDimensions = firstDimensions + extendedDimensions;
        TypeReference type = getTypeReference(typeDimensions);
        if (isVarArgs) {
                type = copyDims(type, typeDimensions + 1);
                if (extendedDimensions == 0) {
                        type.sourceEnd = endOfEllipsis;
                }
                type.bits |= ASTNode.IsVarArgs; // set isVarArgs
        }


Clone AbstractionParameter Count: 0Parameter Bindings

int extendedDimensions = this.intStack[this.intPtr-- ];
int endOfEllipsis = 0;
if (isVarArgs) {
  endOfEllipsis = this.intStack[this.intPtr-- ];
}
int firstDimensions = this.intStack[this.intPtr-- ];
final int typeDimensions = firstDimensions + extendedDimensions;
TypeReference type = getTypeReference(typeDimensions);
if (isVarArgs) {
  type = copyDims(type, typeDimensions + 1);
  if (extendedDimensions == 0) {
    type.sourceEnd = endOfEllipsis;
  }
  type.bits |= ASTNode.IsVarArgs; // set isVarArgs
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None