| Previous CloneSet | Next CloneSet | Back to Main Report |
| Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
|---|---|---|---|---|
| 3 | 4 | 2 | 0.974 | ExpressionStatement |
| Clone Abstraction | Parameter Bindings |
| Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
|---|---|---|---|
| 1 | 3 | 305 | Closure/closure/goog/uri/utils.js |
| 2 | 2 | 325 | Closure/closure/goog/uri/utils.js |
| 3 | 2 | 360 | Closure/closure/goog/uri/utils.js |
| 4 | 3 | 393 | Closure/closure/goog/uri/utils.js |
| ||||
/**
* @param {string} uri The URI to examine.
* @return {?string} The decoded user info, or null if none.
*/
goog.uri.utils.getUserInfo= function (uri){
return goog.uri.utils.decodeIfPossible_(
goog.uri.utils.getUserInfoEncoded(uri));
} ;
|
| ||||
/**
* @param {string} uri The URI to examine.
* @return {?string} The decoded domain, or null if none.
*/
goog.uri.utils.getDomain= function (uri){
return goog.uri.utils.decodeIfPossible_(goog.uri.utils.getDomainEncoded(uri));
} ;
|
| ||||
/**
* @param {string} uri The URI to examine.
* @return {?string} The decoded path, or null if none. Includes the leading
* slash, if any.
*/
goog.uri.utils.getPath= function (uri){
return goog.uri.utils.decodeIfPossible_(goog.uri.utils.getPathEncoded(uri));
} ;
|
| ||||
/**
* @param {string} uri The URI to examine.
* @return {?string} The decoded fragment identifier, or null if none. Does
* not include the hash mark.
*/
goog.uri.utils.getFragment= function (uri){
return goog.uri.utils.decodeIfPossible_(
goog.uri.utils.getFragmentEncoded(uri));
} ;
|
| |||
/**
* @param {string} uri The URI to examine.
* @return {?string} The decoded fragment identifier, or null if none. Does
* not include the hash mark.
*/
/**
* @param {string} uri The URI to examine.
* @return {?string} The decoded path, or null if none. Includes the leading
* slash, if any.
*/
/**
* @param {string} uri The URI to examine.
* @return {?string} The decoded domain, or null if none.
*/
/**
* @param {string} uri The URI to examine.
* @return {?string} The decoded user info, or null if none.
*/
goog.uri.utils. [[#variable209020c0]]= function (uri)
{ return goog.uri.utils.decodeIfPossible_(goog.uri.utils. [[#variable20902040]](uri));
} ;
|
| CloneAbstraction |
| Parameter Index | Clone Instance | Parameter Name | Value |
|---|---|---|---|
| 1 | 1 | [[#209020c0]] | getFragment |
| 1 | 2 | [[#209020c0]] | getPath |
| 1 | 3 | [[#209020c0]] | getDomain |
| 1 | 4 | [[#209020c0]] | getUserInfo |
| 2 | 1 | [[#20902040]] | getFragmentEncoded |
| 2 | 2 | [[#20902040]] | getPathEncoded |
| 2 | 3 | [[#20902040]] | getDomainEncoded |
| 2 | 4 | [[#20902040]] | getUserInfoEncoded |