| /plugin/diagramsnet/lib/js/diagramly/ |
| D | DropboxFile.js | 5 DropboxFile = function(ui, data, stat) argument 9 this.stat = stat; 23 return this.stat.path_display.substring(1); 64 return this.stat.name; 83 return this.stat.size; 99 var promise = this.ui.dropbox.client.filesListRevisions({path: this.stat.path_lower, limit: 100}); 109 (mxUtils.bind(this, function(stat) argument 111 revs.push({modifiedDate: stat.client_modified, fileSize: stat.size, 114 this.ui.dropbox.readFile({path: this.stat.path_lower, rev: stat.rev}, 119 stat.rev + '&chrome=0&nav=1&layers=1&edit=_blank' + ((page != null) ? [all …]
|
| /plugin/zip/pear/File/Archive/Writer/ |
| D | Files.php | 45 var $stat = array(); variable in File_Archive_Writer_Files 109 $this->stat = array(); 174 function newFile($filename, $stat = array(), $mime = "application/octet-stream") argument 177 $this->stat = $stat; 199 … function newFromTempFile($tmpfile, $filename, $stat = array(), $mime = "application/octet-stream") argument 213 return parent::newFromTempFile($tmpfile, $filename, $stat, $mime); 227 if (isset($this->stat[9])) { 228 if (isset($this->stat[8])) { 229 touch($this->filename, $this->stat[9], $this->stat[8]); 231 touch($this->filename, $this->stat[9]); [all …]
|
| 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));
|
| 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,
|
| 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();
|
| 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 …]
|
| 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'
|
| 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'
|
| 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),
|
| 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);
|
| /plugin/zip/pear/File/Archive/Reader/ |
| 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; }
|
| 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; }
|
| 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/ |
| 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/ |
| 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}); property 97 fs.stat(fileObject.path, function(err, stat) argument 99 if (isConflict(origStat, stat))
|
| /plugin/bibtex4dw/lib/ |
| 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/ |
| 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/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/ |
| D | compress.js | 628 var stat = statements[stat_index]; 629 if (stat instanceof AST_Definitions) continue; 632 … [stat, stat.body, stat.alternative, stat.bcatch, stat.bfinally].forEach(function(node) { 685 stat.transform(ctt); 752 stat.transform(tt); 781 stat.reset_opt_flags(compressor); 831 return statements.reduce(function(a, stat){ argument 832 a.push(stat); 834 if (stat.body && stat.body.args) { 835 check_expression(stat.body); [all …]
|
| /plugin/zip/pear/File/Archive/Predicate/ |
| 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]);
|
| D | Custom.php | 77 $stat = $source->getStat(); 78 $size = $stat[7]; 79 $time = (isset($stat[9]) ? $stat[9] : null);
|
| D | MinTime.php | 59 $stat = $source->getStat(); 60 return !isset($stat[9]) || $stat[9]>=$this->minTime;
|
| D | MinSize.php | 55 $stat = $source->getStat(); 56 return !isset($stat[7]) || $stat[7]>=$this->minSize;
|
| /plugin/zip/pear/File/ |
| 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 712 return new File_Archive_Reader_Memory($memory, $filename, $stat, $mime); 746 * @param array $stat statistics of the file. Index 7 (size) will be 752 function readConcat(&$toConvert, $filename, $stat=array(), $mime=null) argument 760 return new File_Archive_Reader_Concat($source, $filename, $stat, $mime); 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 [all …]
|
| /plugin/asciidocjs/node_modules/fs.realpath/ |
| D | old.js | 146 var stat = fs.lstatSync(base); 147 if (!stat.isSymbolicLink()) { 157 var id = stat.dev.toString(32) + ':' + stat.ino.toString(32); 261 function gotStat(err, stat) { argument 265 if (!stat.isSymbolicLink()) { 275 var id = stat.dev.toString(32) + ':' + stat.ino.toString(32); 280 fs.stat(base, function(err) {
|
| /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
|