CloneSet136


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

char ch = OUT_OF_BOUNDS;
try {
  int i = br.read();
  this.index = index + 1; // this.index is index of next pos relative to charAt(0)
  if (i == -1) {
    // set flag that next should fail next time?
    end = index;
    return ch;
  }
  ch = (char) i;
}
catch (IOException
       ie) {
}
return ch;


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

char ch = OUT_OF_BOUNDS;
try {
  int i = br.read();
  this.index = index + 1; // this.index is index of next pos relative to charAt(0)
  if (i == -1) {
    // set flag that next should fail next time?
    end = index;
    return ch;
  }
  ch = (char) i;
}
catch (IOException
       ie) {
}
return ch;


Clone AbstractionParameter Count: 0Parameter Bindings

char ch = OUT_OF_BOUNDS;
try {
  int i = br.read();
  this.index = index + 1; // this.index is index of next pos relative to charAt(0)
  if (i == -1) {
    // set flag that next should fail next time?
    end = index;
    return ch;
  }
  ch = (char) i;
}
catch (IOException
       ie) {
}
return ch;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None