CloneSet546


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
17230.954statement_sequence[4]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
117230
libraries/joomla/filesystem/stream.php
219434
libraries/joomla/filesystem/stream.php
Clone Instance
1
Line Count
17
Source Line
230
Source File
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;


Clone Instance
2
Line Count
19
Source Line
434
Source File
libraries/joomla/filesystem/stream.php

                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;


Clone AbstractionParameter Count: 3Parameter Bindings

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 Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#3d1efe20]]
gzeof 
12[[#3d1efe20]]
gztell 
21[[#237f4600]]
feof 
22[[#237f4600]]
ftell 
31[[#3d1efe40]]
$php_errormsg 
32[[#3d1efe40]]
$res === FALSE