/plugin/diagramsnet/lib/js/diagramly/ |
H A D | DropboxFile.js | 9 this.stat = stat; 64 return this.stat.name; 83 return this.stat.size; 111 revs.push({modifiedDate: stat.client_modified, fileSize: stat.size, 114 this.ui.dropbox.readFile({path: this.stat.path_lower, rev: stat.rev}, 153 this.stat = newFile.stat; 188 this.stat.name = title; 192 this.stat.name = prev; 235 this.stat = stat; 315 this.stat = stat; [all …]
|
/plugin/zip/pear/File/Archive/Writer/ |
H A D | Files.php | 45 var $stat = array(); variable in File_Archive_Writer_Files 109 $this->stat = array(); 177 $this->stat = $stat; 227 if (isset($this->stat[9])) { 228 if (isset($this->stat[8])) { 229 touch($this->filename, $this->stat[9], $this->stat[8]); 233 } else if (isset($this->stat[8])) { 237 if (isset($this->stat[2])) { 238 chmod($this->filename, $this->stat[2]); 240 if (isset($this->stat[5])) { [all …]
|
H A D | Ar.php | 76 * @param array $stat Stat array of the current file 79 function arHeader ($filename, $stat) argument 81 $mode = isset($stat[2]) ? $stat[2] : 0x8000; 82 $uid = isset($stat[4]) ? $stat[4] : 0; 83 $gid = isset($stat[5]) ? $stat[5] : 0; 84 $size = $stat[7]; 85 $time = isset($stat[9]) ? $stat[9] : time(); 150 function newFile($filename, $stat = array (), argument 165 $this->_currentStat = $stat; 168 return $this->innerWriter->writeData($this->arHeader($filename, $stat));
|
H A D | Memory.php | 49 var $stat; variable in File_Archive_Writer_Memory 73 function newFile($filename, $stat, $mime = "application/octet-stream") argument 76 $this->stat = $stat; 110 * @param array $stat Statistics of the file provided by the reader 116 function makeReader($filename = null, $stat = null, $mime = null) argument 122 $stat === null ? $this->stat : $stat,
|
H A D | Tar.php | 50 * @param array $stat statistics of the file 54 function tarHeader($filename, $stat) argument 56 $mode = isset($stat[2]) ? $stat[2] : 0x8000; 57 $uid = isset($stat[4]) ? $stat[4] : 0; 58 $gid = isset($stat[5]) ? $stat[5] : 0; 59 $size = $stat[7]; 60 $time = isset($stat[9]) ? $stat[9] : time();
|
H A D | Zip.php | 64 $stat=array(), $autoClose = true) argument 68 $filename, $innerWriter, $stat, $autoClose 116 * @param array $stat stats of the file, indexes 9 and 7 must be present 120 function alreadyWrittenFile($filename, $stat, $crc32, $complength) argument 124 $mtime = $this->getMTime(isset($stat[9]) ? $stat[9] : null); 125 $normlength = $stat[7]; 144 function appendFileData($filename, $stat, $data) argument 151 return $this->appendCompressedData($filename, $stat, $data, $crc32, $normlength); 154 function appendCompressedData($filename, $stat, $data, $crc32, $normlength) argument 157 $mtime = $this->getMTime(isset($stat[9]) ? $stat[9] : null); [all …]
|
H A D | Gzip.php | 47 var $stat; variable in File_Archive_Writer_Gzip 53 * @param array $stat The stat of the archive (see the PHP stat() function). 59 $stat = array(), $autoClose = true) argument 65 $this->stat = $stat; 90 function newFile($filename, $stat = array(), argument 121 $this->tmpName, $this->filename, $this->stat, 'application/x-compressed'
|
H A D | Bzip2.php | 47 var $stat; variable in File_Archive_Writer_Bzip2 53 * @param array $stat The stat of the archive (see the PHP stat() function). 59 $stat = array(), $autoClose = true) argument 65 $this->stat = $stat; 88 function newFile($filename, $stat = array(), argument 119 $this->tmpName, $this->filename, $this->stat, 'application/x-compressed'
|
H A D | MemoryArchive.php | 73 ($filename, &$t, $stat = array(), $autoClose = true) argument 75 parent::File_Archive_Writer_Archive($filename, $t, $stat, $autoClose); 81 function newFile($filename, $stat = array(), argument 99 $this->currentStat = $stat; 181 function appendFileData($filename, $stat, &$data) { } argument 208 stat($dataFilename),
|
H A D | AddBaseName.php | 56 function newFile($filename, $stat = array(), $mime = "application/octet-stream") argument 58 $this->writer->newFile($this->baseName.$filename, $stat, $mime); 64 … function newFromTempFile($tmpfile, $filename, $stat = array(), $mime = "application/octet-stream") argument 66 $this->writer->newFromTempFile($tmpfilen $this->baseName.$filename, $stat, $mime);
|
H A D | UniqueAppender.php | 74 function newFile($filename, $stat = array(), $mime = "application/octet-stream") argument 80 return $this->writer->newFile($filename, $stat, $mime); 86 … function newFromTempFile($tmpfile, $filename, $stat = array(), $mime = "application/octet-stream") argument 92 return $this->writer->newFromTempFile($tmpfile, $filename, $stat, $mime);
|
/plugin/zip/pear/File/Archive/Reader/ |
H A D | Concat.php | 42 var $stat; variable in File_Archive_Reader_Concat 48 $stat=array(), $mime=null) argument 52 $this->stat = $stat; 56 $this->stat[7] = 0; 60 $this->stat[7] += $sourceStat[7]; 62 unset($this->stat[7]); 66 if (isset($this->stat[7])) { 67 $this->stat['size'] = $this->stat[7]; 93 function getStat() { return $this->stat; }
|
H A D | Memory.php | 48 var $stat; variable in File_Archive_Reader_Memory 75 * @param array $stat are the statistics of the file. The size will be 80 $stat=array(), $mime=null) argument 84 $this->stat = $stat; 85 $this->stat[7] = $this->stat['size'] = strlen($this->memory); 110 function getStat() { return $this->stat; }
|
H A D | File.php | 60 var $stat = null; variable in File_Archive_Reader_File 131 if ($this->stat === null) { 132 $this->stat = @stat($this->filename); 135 if ($this->stat === false) { 136 $this->stat = array(); 139 return $this->stat;
|
/plugin/jplayer/vendor/mustache/mustache/src/Mustache/Source/ |
H A D | FilesystemSource.php | 24 private $stat; variable in Mustache_Source_FilesystemSource 52 if (!isset($this->stat)) { 53 $this->stat = @stat($this->fileName); 56 if ($this->stat === false) { 61 $chunks[$prop] = $this->stat[$prop];
|
/plugin/diagramsnet/lib/ |
H A D | electronFilesWorker.js | 5 function isConflict(origStat, stat) argument 7 return stat != null && origStat != null && stat.mtimeMs != origStat.mtimeMs; 34 fs.stat(fileObject.path, function(e2, stat2) 61 postMessage({success: true, data: {stat: stat2}, reqId: reqId}); 97 fs.stat(fileObject.path, function(err, stat) argument 99 if (isConflict(origStat, stat))
|
/plugin/bibtex4dw/lib/ |
H A D | bibtexrender.php | 209 $stat = $this->_parser->parseBibliography(); 210 if ( !$stat ) { 211 return $stat; 238 $stat = $this->_parser->parseBibliography($sqlite=true); 240 if ( !$stat ) { 268 $stat = $this->_parser->parse(); 269 if ( !$stat ) { 270 return $stat; 277 $stat = $this->_parser->parse(); 278 if ( !$stat ) { [all...] |
/plugin/zip/pear/File/Archive/ |
H A D | Writer.php | 43 * @param array $stat Its Statistics. None of the indexes are required 46 function newFile($filename, $stat = array(), $mime = "application/octet-stream") argument 61 * @param array $stat Its Statistics. None of the indexes are required 64 … function newFromTempFile($tmpfile, $filename, $stat = array(), $mime = "application/octet-stream") argument 66 $this->newFile($filename, $stat, $mime);
|
/plugin/zip/pear/File/Archive/Predicate/ |
H A D | Duplicate.php | 71 $stat = $source->getStat(); 75 $this->compare($stat[9], $value[0]) >= 0 77 $this->newest[$filename] = array($stat[9], $pos); 100 $stat = $source->getStat(); 105 $comp = $this->compare($stat[9], $value[0]);
|
H A D | Custom.php | 77 $stat = $source->getStat(); 78 $size = $stat[7]; 79 $time = (isset($stat[9]) ? $stat[9] : null);
|
H A D | MinSize.php | 55 $stat = $source->getStat(); 56 return !isset($stat[7]) || $stat[7]>=$this->minSize;
|
H A D | MinTime.php | 59 $stat = $source->getStat(); 60 return !isset($stat[9]) || $stat[9]>=$this->minTime;
|
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/ |
H A D | TransferStats.php | 116 * @param string $stat Handler specific transfer stat to retrieve. 120 public function getHandlerStat($stat) argument 122 return isset($this->handlerStats[$stat]) 123 ? $this->handlerStats[$stat]
|
/plugin/davcal/vendor/sabre/dav/bin/ |
H A D | naturalselection | 16 stat = os.statvfs(path) 17 return stat.f_frsize * stat.f_bavail 35 "atime": os.stat(path).st_atime, 36 "size" : os.stat(path).st_size
|
/plugin/zip/pear/File/ |
H A D | Archive.php | 703 * @param array $stat statistics of the file. Index 7 (size) will be 709 function readMemory($memory, $filename, $stat=array(), $mime=null) argument 1074 * @param array $stat Statistics of the archive (see stat function) 1079 $stat = array(), $autoClose = true) argument 1107 $currentFilename, $writer, $stat, $autoClose 1114 $currentFilename, $writer, $stat, $autoClose 1122 $currentFilename, $writer, $stat, $autoClose 1130 $currentFilename, $writer, $stat, $autoClose 1138 $currentFilename, $writer, $stat, $autoClose 1223 $type = null, $stat = array()) argument [all …]
|