CloneSet755


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
10340.951SourceElements[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
110225
Closure/closure/goog/graphics/affinetransform.js
210241
Closure/closure/goog/graphics/affinetransform.js
310257
Closure/closure/goog/graphics/affinetransform.js
Clone Instance
1
Line Count
10
Source Line
225
Source File
Closure/closure/goog/graphics/affinetransform.js

/**
 * @return {number} The scaling factor in the x-direction (m00).
 */
goog.graphics.AffineTransform.prototype.getScaleX=  function ( )
                                                               {
  return this.m00_;
                                                               } ;

/**
 * @return {number} The scaling factor in the y-direction (m11).
 */
goog.graphics.AffineTransform.prototype.getScaleY=  function ( )
                                                               {
  return this.m11_;
                                                               } ;


Clone Instance
2
Line Count
10
Source Line
241
Source File
Closure/closure/goog/graphics/affinetransform.js

/**
 * @return {number} The translation in the x-direction (m02).
 */
goog.graphics.AffineTransform.prototype.getTranslateX=  function ( )
                                                                   {
  return this.m02_;
                                                                   } ;

/**
 * @return {number} The translation in the y-direction (m12).
 */
goog.graphics.AffineTransform.prototype.getTranslateY=  function ( )
                                                                   {
  return this.m12_;
                                                                   } ;


Clone Instance
3
Line Count
10
Source Line
257
Source File
Closure/closure/goog/graphics/affinetransform.js

/**
 * @return {number} The shear factor in the x-direction (m01).
 */
goog.graphics.AffineTransform.prototype.getShearX=  function ( )
                                                               {
  return this.m01_;
                                                               } ;

/**
 * @return {number} The shear factor in the y-direction (m10).
 */
goog.graphics.AffineTransform.prototype.getShearY=  function ( )
                                                               {
  return this.m10_;
                                                               } ;


Clone AbstractionParameter Count: 4Parameter Bindings

/**
 * @return {number} The scaling factor in the x-direction (m00).
 */
/**
 * @return {number} The translation in the x-direction (m02).
 */
/**
 * @return {number} The shear factor in the x-direction (m01).
 */
goog.graphics.AffineTransform.prototype. [[#variable1df9b620]]= function ( )
                                                                { return this. [[#variable1df9b660]];
                                                                } ;
/**
 * @return {number} The scaling factor in the y-direction (m11).
 */
/**
 * @return {number} The translation in the y-direction (m12).
 */
/**
 * @return {number} The shear factor in the y-direction (m10).
 */
goog.graphics.AffineTransform.prototype. [[#variable1df9ad40]]= function ( )
                                                                { return this. [[#variable1df9b4e0]];
                                                                } ;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1df9b620]]
getScaleX 
12[[#1df9b620]]
getTranslateX 
13[[#1df9b620]]
getShearX 
21[[#1df9b660]]
m00_ 
22[[#1df9b660]]
m02_ 
23[[#1df9b660]]
m01_ 
31[[#1df9ad40]]
getScaleY 
32[[#1df9ad40]]
getTranslateY 
33[[#1df9ad40]]
getShearY 
41[[#1df9b4e0]]
m11_ 
42[[#1df9b4e0]]
m12_ 
43[[#1df9b4e0]]
m10_