CloneSet1177


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
7240.962ExpressionStatement
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1761
Closure/closure/goog/style/cursor.js
2781
Closure/closure/goog/style/cursor.js
Clone Instance
1
Line Count
7
Source Line
61
Source File
Closure/closure/goog/style/cursor.js

/**
 * Create the style for the draggable cursor based on browser and OS.
 * The value can be extended to be '!important' if needed.
 *
 * @param {string} absoluteDotCurFilePath The absolute base path of
 *     'openhand.cur' file to be used if the browser supports it.
 * @param {boolean=} opt_important Whether to use the '!important' CSS
 *     modifier.
 * @return {string} The "draggable" mouse cursor style value.
 */
goog.style.cursor.getDraggableCursorStyle=  function (
    absoluteDotCurFilePath, opt_important) {
  return goog.style.cursor.getCursorStyle_(
      '-moz-grab',
      absoluteDotCurFilePath+  goog.style.cursor.OPENHAND_FILE,
      'default',
      opt_important);
                                           } ;


Clone Instance
2
Line Count
7
Source Line
81
Source File
Closure/closure/goog/style/cursor.js

/**
 * Create the style for the dragging cursor based on browser and OS.
 * The value can be extended to be '!important' if needed.
 *
 * @param {string} absoluteDotCurFilePath The absolute base path of
 *     'closedhand.cur' file to be used if the browser supports it.
 * @param {boolean=} opt_important Whether to use the '!important' CSS
 *     modifier.
 * @return {string} The "dragging" mouse cursor style value.
 */
goog.style.cursor.getDraggingCursorStyle=  function (
    absoluteDotCurFilePath, opt_important) {
  return goog.style.cursor.getCursorStyle_(
      '-moz-grabbing',
      absoluteDotCurFilePath+  goog.style.cursor.CLOSEDHAND_FILE,
      'move',
      opt_important);
                                           } ;


Clone AbstractionParameter Count: 4Parameter Bindings

/**
 * Create the style for the dragging cursor based on browser and OS.
 * The value can be extended to be '!important' if needed.
 *
 * @param {string} absoluteDotCurFilePath The absolute base path of
 *     'closedhand.cur' file to be used if the browser supports it.
 * @param {boolean=} opt_important Whether to use the '!important' CSS
 *     modifier.
 * @return {string} The "dragging" mouse cursor style value.
 */
/**
 * Create the style for the draggable cursor based on browser and OS.
 * The value can be extended to be '!important' if needed.
 *
 * @param {string} absoluteDotCurFilePath The absolute base path of
 *     'openhand.cur' file to be used if the browser supports it.
 * @param {boolean=} opt_important Whether to use the '!important' CSS
 *     modifier.
 * @return {string} The "draggable" mouse cursor style value.
 */
goog.style.cursor. [[#variable3eab2900]]= function (absoluteDotCurFilePath,opt_important)
                                          { return goog.style.cursor.getCursorStyle_( [[#variable3eab28a0]],absoluteDotCurFilePath+goog.style.cursor. [[#variable3eab27e0]], [[#variable3eab2760]],opt_important);
                                          } ;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#3eab2900]]
getDraggingCursorStyle 
12[[#3eab2900]]
getDraggableCursorStyle 
21[[#3eab28a0]]
'-moz-grabbing' 
22[[#3eab28a0]]
'-moz-grab' 
31[[#3eab27e0]]
CLOSEDHAND_FILE 
32[[#3eab27e0]]
OPENHAND_FILE 
41[[#3eab2760]]
'move' 
42[[#3eab2760]]
'default'