CloneSet379


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
10210.979executable_statement
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
110792
E:/TSE/Projects-CloneDR/jEdit-4.2/com/microstar/xml/XmlParser.java
210811
E:/TSE/Projects-CloneDR/jEdit-4.2/com/microstar/xml/XmlParser.java
Next
Last
Clone Instance
1
Line Count
10
Source Line
792
Source File
E:/TSE/Projects-CloneDR/jEdit-4.2/com/microstar/xml/XmlParser.java

// loop until the subset ends
while (true) {
  context = CONTEXT_DTD;
  skipWhitespace();
  context = CONTEXT_NONE;
  if (tryRead(']')) {
    break; // end of subset
  }
  else {
    context = CONTEXT_DTD;
    parseMarkupdecl();
    context = CONTEXT_NONE;
  }
}


First
Previous
Clone Instance
2
Line Count
10
Source Line
811
Source File
E:/TSE/Projects-CloneDR/jEdit-4.2/com/microstar/xml/XmlParser.java

// Loop until we end up back at '>'
while (true) {
  context = CONTEXT_DTD;
  skipWhitespace();
  context = CONTEXT_NONE;
  if (tryRead('>')) {
    break;
  }
  else {
    context = CONTEXT_DTD;
    parseMarkupdecl();
    context = CONTEXT_NONE;
  }
}


Clone AbstractionParameter Count: 1Parameter Bindings

// loop until the subset ends
// Loop until we end up back at '>'
while (true) {
  context = CONTEXT_DTD;
  skipWhitespace();
  context = CONTEXT_NONE;
  if (tryRead( [[#variablec28cb00]])) {
    break; // end of subset
  }
  else {
    context = CONTEXT_DTD;
    parseMarkupdecl();
    context = CONTEXT_NONE;
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#c28cb00]]
']' 
12[[#c28cb00]]
'>'