CloneSet78


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
21201.000statement_sequence[3]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
12156
E:/TSE/Projects-CloneDR/jEdit-4.2/src/gnu/regexp/CharIndexedInputStream.java
22365
E:/TSE/Projects-CloneDR/jEdit-4.2/src/gnu/regexp/CharIndexedReader.java
Next
Last
Clone Instance
1
Line Count
21
Source Line
56
Source File
E:/TSE/Projects-CloneDR/jEdit-4.2/src/gnu/regexp/CharIndexedInputStream.java

end--; // closer to end
try {
  if (index != -1) {
    br.reset();
  }
  int i = br.read();
  br.mark(bufsize);
  if (i == -1) {
    end = 1;
    cached = OUT_OF_BOUNDS;
    return false;
  }
  cached = (char) i;
  index = 1;
}
catch (IOException
       e) {
  e.printStackTrace();
  cached = OUT_OF_BOUNDS;
  return false;
}
return true;


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

end--; // closer to end
try {
  if (index != -1) {
    br.reset();
  }
  int i = br.read();
  br.mark(bufsize);
  if (i == -1) {
    end = 1;
    cached = OUT_OF_BOUNDS;
    return false;
  }
  // convert the byte read into a char
  cached = (char) i;
  index = 1;
}
catch (IOException
       e) {
  e.printStackTrace();
  cached = OUT_OF_BOUNDS;
  return false;
}
return true;


Clone AbstractionParameter Count: 0Parameter Bindings

end--; // closer to end
try {
  if (index != -1) {
    br.reset();
  }
  int i = br.read();
  br.mark(bufsize);
  if (i == -1) {
    end = 1;
    cached = OUT_OF_BOUNDS;
    return false;
  }
  // convert the byte read into a char
  cached = (char) i;
  index = 1;
}
catch (IOException
       e) {
  e.printStackTrace();
  cached = OUT_OF_BOUNDS;
  return false;
}
return true;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None