CloneSet202


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

public boolean move(int index) {
  // move read position [index] clicks from 'charAt(0)'
  boolean retval = true;
  while (retval && (index-- > 0))
    retval = next();
  return retval;
}

public boolean isValid() {
  return (cached != OUT_OF_BOUNDS);
}


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

public boolean move(int index) {
  // move read position [index] clicks from 'charAt(0)'
  boolean retval = true;
  while (retval && (index-- > 0))
    retval = next();
  return retval;
}

public boolean isValid() {
  return (cached != OUT_OF_BOUNDS);
}


Clone AbstractionParameter Count: 0Parameter Bindings

public boolean move(int index) {
  // move read position [index] clicks from 'charAt(0)'
  boolean retval = true;
  while (retval && (index-- > 0))
    retval = next();
  return retval;
}

public boolean isValid() {
  return (cached != OUT_OF_BOUNDS);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None