CloneSet256


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
5440.967ExpressionStatement
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
15833
Closure/closure/goog/ui/serverchart.js
25854
Closure/closure/goog/ui/serverchart.js
35877
Closure/closure/goog/ui/serverchart.js
45888
Closure/closure/goog/ui/serverchart.js
Clone Instance
1
Line Count
5
Source Line
833
Source File
Closure/closure/goog/ui/serverchart.js

/**
 * @return {boolean} Whether the chart is a pie chart.
 */
goog.ui.ServerChart.prototype.isPieChart=  function ( )
                                                      {
  var type=  this.getType( );
  return type==  goog.ui.ServerChart.ChartType.PIE
         ||type==  goog.ui.ServerChart.ChartType.PIE3D
         ||type==  goog.ui.ServerChart.ChartType.CONCENTRIC_PIE;
                                                      } ;


Clone Instance
2
Line Count
5
Source Line
854
Source File
Closure/closure/goog/ui/serverchart.js

/**
 * @return {boolean} Whether the chart is a horizontal bar chart.
 */
goog.ui.ServerChart.prototype.isHorizontalBarChart=  function ( )
                                                                {
  var type=  this.getType( );
  return type==  goog.ui.ServerChart.ChartType.BAR
         ||type==  goog.ui.ServerChart.ChartType.HORIZONTAL_GROUPED_BAR
         ||type==  goog.ui.ServerChart.ChartType.HORIZONTAL_STACKED_BAR;
                                                                } ;


Clone Instance
3
Line Count
5
Source Line
877
Source File
Closure/closure/goog/ui/serverchart.js

/**
 * @return {boolean} Whether the chart is a map.
 */
goog.ui.ServerChart.prototype.isMap=  function ( )
                                                 {
  var type=  this.getType( );
  return type==  goog.ui.ServerChart.ChartType.MAP
         ||type==  goog.ui.ServerChart.ChartType.MAPUSA
         ||type==  goog.ui.ServerChart.ChartType.MAPWORLD;
                                                 } ;


Clone Instance
4
Line Count
5
Source Line
888
Source File
Closure/closure/goog/ui/serverchart.js

/**
 * @return {boolean} Whether the chart is a stacked bar chart.
 */
goog.ui.ServerChart.prototype.isStackedBarChart=  function ( )
                                                             {
  var type=  this.getType( );
  return type==  goog.ui.ServerChart.ChartType.BAR
         ||type==  goog.ui.ServerChart.ChartType.HORIZONTAL_STACKED_BAR
         ||type==  goog.ui.ServerChart.ChartType.VERTICAL_STACKED_BAR;
                                                             } ;


Clone AbstractionParameter Count: 4Parameter Bindings

/**
 * @return {boolean} Whether the chart is a stacked bar chart.
 */
/**
 * @return {boolean} Whether the chart is a map.
 */
/**
 * @return {boolean} Whether the chart is a horizontal bar chart.
 */
/**
 * @return {boolean} Whether the chart is a pie chart.
 */
goog.ui.ServerChart.prototype. [[#variable60cea320]]= function ( )
                                                      { var type=this.getType( );
                                                        return type==goog.ui.ServerChart.ChartType. [[#variable60cea2c0]]
                                                               || type==goog.ui.ServerChart.ChartType. [[#variable60cea260]]
                                                               || type==goog.ui.ServerChart.ChartType. [[#variable60cea200]];
                                                      } ;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#60cea320]]
isStackedBarChart 
12[[#60cea320]]
isMap 
13[[#60cea320]]
isHorizontalBarChart 
14[[#60cea320]]
isPieChart 
21[[#60cea2c0]]
BAR 
22[[#60cea2c0]]
MAP 
23[[#60cea2c0]]
BAR 
24[[#60cea2c0]]
PIE 
31[[#60cea260]]
HORIZONTAL_STACKED_BAR 
32[[#60cea260]]
MAPUSA 
33[[#60cea260]]
HORIZONTAL_GROUPED_BAR 
34[[#60cea260]]
PIE3D 
41[[#60cea200]]
VERTICAL_STACKED_BAR 
42[[#60cea200]]
MAPWORLD 
43[[#60cea200]]
HORIZONTAL_STACKED_BAR 
44[[#60cea200]]
CONCENTRIC_PIE