CloneSet346


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
14210.972statement_sequence[3]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1141733
E:/TSE/Projects-CloneDR/emf-2.4.1/src/org/eclipse/emf/ecore/xml/type/internal/RegEx.java
2141754
E:/TSE/Projects-CloneDR/emf-2.4.1/src/org/eclipse/emf/ecore/xml/type/internal/RegEx.java
Next
Last
Clone Instance
1
Line Count
14
Source Line
1733
Source File
E:/TSE/Projects-CloneDR/emf-2.4.1/src/org/eclipse/emf/ecore/xml/type/internal/RegEx.java

RangeToken tok = op.getToken();
if (isSet(opts, IGNORE_CASE)) {
  tok = tok.getCaseInsensitiveToken();
  if ( !tok.match(ch)) {
    if (ch >= 0x10000)
      return -1;
    char uch;
    if ( !tok.match(uch = Character.toUpperCase((char) ch)) && !tok.match(Character.toLowerCase(uch)))
      return -1;
  }
}
else {
  if ( !tok.match(ch))
    return -1;
}
offset++;


First
Previous
Clone Instance
2
Line Count
14
Source Line
1754
Source File
E:/TSE/Projects-CloneDR/emf-2.4.1/src/org/eclipse/emf/ecore/xml/type/internal/RegEx.java

RangeToken tok = op.getToken();
if (isSet(opts, IGNORE_CASE)) {
  tok = tok.getCaseInsensitiveToken();
  if ( !tok.match(ch)) {
    if (ch >= 0x10000)
      return -1;
    char uch;
    if ( !tok.match(uch = Character.toUpperCase((char) ch)) && !tok.match(Character.toLowerCase(uch)))
      return -1;
  }
}
else {
  if ( !tok.match(ch))
    return -1;
}
offset = o1;


Clone AbstractionParameter Count: 1Parameter Bindings

RangeToken tok = op.getToken();
if (isSet(opts, IGNORE_CASE)) {
  tok = tok.getCaseInsensitiveToken();
  if ( !tok.match(ch)) {
    if (ch >= 0x10000)
      return -1;
    char uch;
    if ( !tok.match(uch = Character.toUpperCase((char) ch)) && !tok.match(Character.toLowerCase(uch)))
      return -1;
  }
}
else {
  if ( !tok.match(ch))
    return -1;
}
 [[#variable17240520]];
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#17240520]]
offset++ 
12[[#17240520]]
offset = o1