CloneSet84


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
17220.969class_body_declarations[8]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11828
E:/TSE/Projects-CloneDR/jEdit-4.2/src/gnu/regexp/CharIndexedInputStream.java
21729
E:/TSE/Projects-CloneDR/jEdit-4.2/src/gnu/regexp/CharIndexedReader.java
Next
Last
Clone Instance
1
Line Count
18
Source Line
28
Source File
E:/TSE/Projects-CloneDR/jEdit-4.2/src/gnu/regexp/CharIndexedInputStream.java

private static final int BUFFER_INCREMENT = 1024;

private static final int UNKNOWN = Integer.MAX_VALUE; // value for end

private BufferedInputStream br;

// so that we don't try to reset() right away
private int index = -1;

private int bufsize = BUFFER_INCREMENT;

private int end = UNKNOWN;

private char cached = OUT_OF_BOUNDS;

// Big enough for a \r\n pair
// lookBehind[0] = most recent
// lookBehind[1] = second most recent
private char[] lookBehind = new char[] {
                                         OUT_OF_BOUNDS,
                                         OUT_OF_BOUNDS
                                       };


First
Previous
Clone Instance
2
Line Count
17
Source Line
29
Source File
E:/TSE/Projects-CloneDR/jEdit-4.2/src/gnu/regexp/CharIndexedReader.java

private static final int BUFFER_INCREMENT = 1024;

private static final int UNKNOWN = Integer.MAX_VALUE; // value for end

private final BufferedReader br;

// so that we don't try to reset() right away
private int index = -1;

private int bufsize = BUFFER_INCREMENT;

private int end = UNKNOWN;

private char cached = OUT_OF_BOUNDS;

// Big enough for a \r\n pair
// lookBehind[0] = most recent
// lookBehind[1] = second most recent
private char[] lookBehind = new char[] {
                                         OUT_OF_BOUNDS,
                                         OUT_OF_BOUNDS
                                       };


Clone AbstractionParameter Count: 2Parameter Bindings

private static final int BUFFER_INCREMENT = 1024;

private static final int UNKNOWN = Integer.MAX_VALUE; // value for end

 [[#variableae9ee20]] [[#variableae9ed80]] br;

// so that we don't try to reset() right away
private int index = -1;

private int bufsize = BUFFER_INCREMENT;

private int end = UNKNOWN;

private char cached = OUT_OF_BOUNDS;

// Big enough for a \r\n pair
// lookBehind[0] = most recent
// lookBehind[1] = second most recent
private char[] lookBehind = new char[] {
                                         OUT_OF_BOUNDS,
                                         OUT_OF_BOUNDS
                                       };
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#ae9ee20]]
private 
12[[#ae9ee20]]
private final 
21[[#ae9ed80]]
BufferedInputStream 
22[[#ae9ed80]]
BufferedReader