Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
17 | 2 | 3 | 0.954 | statement_sequence[4] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 17 | 230 | libraries/joomla/filesystem/stream.php |
2 | 19 | 434 | libraries/joomla/filesystem/stream.php |
| ||||
switch ($this->processingmethod) { case 'gz': $res= gzeof($this->_fh); break; case 'bz': case 'f': default : $res= feof($this->_fh); break; } if ($php_errormsg) { $this->setError($php_errormsg); } // restore error tracking to what it was before ini_set('track_errors',$track_errors); // return the result return $res; |
| ||||
switch ($this->processingmethod) { case 'gz': $res= gztell($this->_fh); break; case 'bz': case 'f': default : $res= ftell($this->_fh); break; } // may return 0 so check its really false if ($res === FALSE) { $this->setError($php_errormsg); } // restore error tracking to what it was before ini_set('track_errors',$track_errors); // return the result return $res; |
| |||
switch ($this->processingmethod) { case 'gz': $res= [[#variable3d1efe20]]($this->_fh); break; case 'bz': case 'f': default : $res= [[#variable237f4600]]($this->_fh); break; } // may return 0 so check its really false if ( [[#variable3d1efe40]]) { $this->setError($php_errormsg); } // restore error tracking to what it was before ini_set('track_errors',$track_errors); // return the result return $res; |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#3d1efe20]] | gzeof |
1 | 2 | [[#3d1efe20]] | gztell |
2 | 1 | [[#237f4600]] | feof |
2 | 2 | [[#237f4600]] | ftell |
3 | 1 | [[#3d1efe40]] | $php_errormsg |
3 | 2 | [[#3d1efe40]] | $res === FALSE |