CloneSet264


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
3610.975ExpressionStatement
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
13122
Closure/closure/goog/useragent/flash.js
2395
Closure/closure/goog/useragent/iphoto.js
33102
Closure/closure/goog/useragent/jscript.js
43114
Closure/closure/goog/useragent/picasa.js
5378
Closure/closure/goog/useragent/platform.js
63108
Closure/closure/goog/useragent/product_isversion.js
Clone Instance
1
Line Count
3
Source Line
122
Source File
Closure/closure/goog/useragent/flash.js

/**
 * Whether the installed flash version is as new or newer than a given version.
 * @param {string} version The version to check.
 * @return {boolean} Whether the installed flash version is as new or newer
 *     than a given version.
 */
goog.userAgent.flash.isVersion=  function (version){
  return goog.string.compareVersions(goog.userAgent.flash.VERSION,
                                     version)>=  0;
                                                   } ;


Clone Instance
2
Line Count
3
Source Line
95
Source File
Closure/closure/goog/useragent/iphoto.js

/**
 * Whether the installed version of iPhoto is as new or newer than a given
 * version.
 * @param {string} version The version to check.
 * @return {boolean} Whether the installed version of iPhoto is as new or newer
 *     than a given version.
 */
goog.userAgent.iphoto.isVersion=  function (version){
  return goog.string.compareVersions(
      goog.userAgent.iphoto.VERSION, version)>=  0;
                                                    } ;


Clone Instance
3
Line Count
3
Source Line
102
Source File
Closure/closure/goog/useragent/jscript.js

/**
 * Whether the installed version of JScript is as new or newer than a given
 * version.
 * @param {string} version The version to check.
 * @return {boolean} Whether the installed version of JScript is as new or
 *     newer than the given version.
 */
goog.userAgent.jscript.isVersion=  function (version){
  return goog.string.compareVersions(goog.userAgent.jscript.VERSION,
                                     version)>=  0;
                                                     } ;


Clone Instance
4
Line Count
3
Source Line
114
Source File
Closure/closure/goog/useragent/picasa.js

/**
 * Whether the installed Picasa version is as new or newer than a given version.
 * This is not yet relevant, we can't detect the true Picasa version number yet,
 * but this may be possible in future Picasa releases.
 * @param {string} version The version to check.
 * @return {boolean} Whether the installed Picasa version is as new or newer
 *     than a given version.
 */
goog.userAgent.picasa.isVersion=  function (version){
  return goog.string.compareVersions(
      goog.userAgent.picasa.VERSION, version)>=  0;
                                                    } ;


Clone Instance
5
Line Count
3
Source Line
78
Source File
Closure/closure/goog/useragent/platform.js

/**
 * Whether the user agent platform version is higher or the same as the given
 * version.
 *
 * @param {string|number} version The version to check.
 * @return {boolean} Whether the user agent platform version is higher or the
 *     same as the given version.
 */
goog.userAgent.platform.isVersion=  function (version){
  return goog.string.compareVersions(
             goog.userAgent.platform.VERSION, version)>=  0;
                                                      } ;


Clone Instance
6
Line Count
3
Source Line
108
Source File
Closure/closure/goog/useragent/product_isversion.js

/**
 * Whether the user agent product version is higher or the same as the given
 * version.
 *
 * @param {string|number} version The version to check.
 * @return {boolean} Whether the user agent product version is higher or the
 *     same as the given version.
 */
goog.userAgent.product.isVersion=  function (version){
  return goog.string.compareVersions(
             goog.userAgent.product.VERSION, version)>=  0;
                                                     } ;


Clone AbstractionParameter Count: 1Parameter Bindings

/**
 * Whether the installed flash version is as new or newer than a given version.
 * @param {string} version The version to check.
 * @return {boolean} Whether the installed flash version is as new or newer
 *     than a given version.
 */
/**
 * Whether the installed version of iPhoto is as new or newer than a given
 * version.
 * @param {string} version The version to check.
 * @return {boolean} Whether the installed version of iPhoto is as new or newer
 *     than a given version.
 */
/**
 * Whether the installed version of JScript is as new or newer than a given
 * version.
 * @param {string} version The version to check.
 * @return {boolean} Whether the installed version of JScript is as new or
 *     newer than the given version.
 */
/**
 * Whether the installed Picasa version is as new or newer than a given version.
 * This is not yet relevant, we can't detect the true Picasa version number yet,
 * but this may be possible in future Picasa releases.
 * @param {string} version The version to check.
 * @return {boolean} Whether the installed Picasa version is as new or newer
 *     than a given version.
 */
/**
 * Whether the user agent platform version is higher or the same as the given
 * version.
 *
 * @param {string|number} version The version to check.
 * @return {boolean} Whether the user agent platform version is higher or the
 *     same as the given version.
 */
/**
 * Whether the user agent product version is higher or the same as the given
 * version.
 *
 * @param {string|number} version The version to check.
 * @return {boolean} Whether the user agent product version is higher or the
 *     same as the given version.
 */
goog.userAgent. [[#variable5b9c3580]].isVersion= function (version)
                                                 { return goog.string.compareVersions(goog.userAgent. [[#variable5b9c3580]].VERSION,version)>=0;
                                                 } ;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#5b9c3580]]
flash 
12[[#5b9c3580]]
iphoto 
13[[#5b9c3580]]
jscript 
14[[#5b9c3580]]
picasa 
15[[#5b9c3580]]
platform 
16[[#5b9c3580]]
product