CloneSet34


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
10201.000iteration_statement
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
110583
InclusionConstraintGraph/Type.h
210678
InclusionConstraintGraph/Type.h
Clone Instance
1
Line Count
10
Source Line
583
Source File
InclusionConstraintGraph/Type.h

                                                for (; index <type.size();index++) {
                                                        if (   ((type[index] >= L'A') && (type[index] <= L'Z')) ||
                                                                   ((type[index] >= L'a') && (type[index] <= L'z')) ||
                                                                   ((type[index] >= L'0') && (type[index] <= L'9')) ||
                                                                   (type[index] == L'$') ||
                                                                   (type[index] == L'_'))
                                                                  {
                                                                name += type[index];
                                                                  }
                                                        else   {
                                                                break;
                                                               }
                                                                                   }


Clone Instance
2
Line Count
10
Source Line
678
Source File
InclusionConstraintGraph/Type.h

                                        for (; index <type.size();index++) {
                                                if (   ((type[index] >= L'A') && (type[index] <= L'Z')) ||
                                                           ((type[index] >= L'a') && (type[index] <= L'z')) ||
                                                           ((type[index] >= L'0') && (type[index] <= L'9')) ||
                                                           (type[index] == L'$') ||
                                                           (type[index] == L'_'))
                                                          {
                                                        name += type[index];
                                                          }
                                                else   {
                                                        break;
                                                       }
                                                                           }


Clone AbstractionParameter Count: 0Parameter Bindings

for (; index < type.size(); index++)
  {
    if (((type[index] >= L'A') && (type[index] <= L'Z')) || ((type[index] >= L'a') && (type[index] <= L'z')) || ((type[index] >= L'0') && (type[index] <= L'9')) || (type[index] == L'$') || (type[index] == L'_'))
      {
        name += type[index];
      }
    else
      {
        break;
      }
  }
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None