| /dokuwiki/inc/Remote/Response/ |
| H A D | Media.php | 17 public $size; variable in dokuwiki\\Remote\\Response\\Media 36 * @param int|null $size The page size in bytes 45 $size = null, argument 54 $this->size = $size ?? filesize($this->file);
|
| H A D | Page.php | 17 public $size; variable in dokuwiki\\Remote\\Response\\Page 37 * @param int|null $size The page size in bytes 47 $size = null, argument 55 $this->size = $size ?? @filesize($this->file);
|
| /dokuwiki/inc/ |
| H A D | httputils.php | 95 * @param int $size - size of the whole file 100 function http_rangeRequest($fh, $size, $mime) argument 111 $ranges[] = [0, $size, $size]; 116 $ranges[] = [0, $size, $size]; 125 if (!$end) $end = $size - 1; 126 if ($start > $end || $start > $size || $end > $size) { 158 echo "Content-Range: bytes $start-$end/$size" . HTTP_HEADER_LF; 163 header("Content-Range: bytes $start-$end/$size");
|
| /dokuwiki/vendor/splitbrain/slika/src/ |
| H A D | ImageMagickAdapter.php | 71 $size = $width . 'x' . $height; 74 $this->args[] = $size; 91 $size = $width . 'x' . $height; 94 $this->args[] = "$size^"; 98 $this->args[] = "$size+0+0";
|
| /dokuwiki/vendor/splitbrain/php-archive/src/ |
| H A D | Zip.php | 209 $size = $header['compressed_size']; 210 while ($size != 0) { 211 $read_size = ($size < 2048 ? $size : 2048); 215 $size -= $read_size; 239 $size = $header['size']; 240 while ($size != 0) { 241 $read_size = ($size < 2048 ? $size : 2048); 245 $size -= $read_size; 339 $size = $csize = 0; 345 $is_first_block = $size === 0; [all …]
|
| H A D | FileInfo.php | 19 protected $size = 0; variable in splitbrain\\PHPArchive\\FileInfo 100 return $this->size; 104 * @param int $size 106 public function setSize($size) argument 108 $this->size = $size;
|
| /dokuwiki/lib/tpl/dokuwiki/css/ |
| H A D | design.less | 31 font-size: 1.5em; 56 font-size: 0.875em; 96 font-size: 0.875em; 104 font-size: 1em; 127 font-size: 0.875em; 176 font-size: 0.875em; 197 font-size: 0.75em; 205 font-size: 0.875em; 212 font-size: 1.714em; 280 font-size: 0.875em; [all …]
|
| H A D | _fileuploader.css | 21 font-size: 100%; 51 font-size: 120%; 90 .qq-upload-size, 92 font-size: 85%;
|
| H A D | basic.less | 24 … /* default font size: 100% => 16px; 93.75% => 15px; 87.5% => 14px; 81.25% => 13px; 75% => 12px */ 25 -webkit-text-size-adjust: 100%; 60 font-size: 2em; 64 font-size: 1.5em; 68 font-size: 1.125em; 72 font-size: 1em; 76 font-size: .875em; 80 font-size: .75em; 83 /* bottom margin = 1 / font-size */ 148 font-size: 100%; [all …]
|
| H A D | print.css | 69 font-size: 90%; 146 font-size: 1.5em; 172 font-size: 90%;
|
| H A D | _recent.css | 48 /*____________ size differences ____________*/ 51 font-size: 80%;
|
| H A D | _diff.css | 23 font-size: 110%; 30 font-size: .9em; 33 font-size: .9em;
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/ |
| H A D | Stream.php | 71 private $size; variable in phpseclib3\\Net\\SFTP\\Stream 252 $this->size = $this->sftp->filesize($path); 256 if ($this->size === false) { 261 $this->size = 0; 269 $this->size = 0; 273 $this->pos = $this->mode[0] != 'a' ? 0 : $this->size; 307 …ication, STREAM_NOTIFY_PROGRESS, STREAM_NOTIFY_SEVERITY_INFO, '', 0, strlen($result), $this->size); 346 if ($this->pos > $this->size) { 347 $this->size = $this->pos; 399 $offset += $this->size; [all …]
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/ |
| H A D | BinaryField.php | 170 * @param int|null $size 173 public static function base2ToBase256($x, $size = null) argument 182 if (isset($size)) { 183 $str = str_pad($str, $size, "\0", STR_PAD_LEFT);
|
| H A D | BigInteger.php | 655 * @param int $size 658 public static function random($size) argument 663 return new static($class::random($size)); 671 * @param int $size 674 public static function randomPrime($size) argument 679 return new static($class::randomPrime($size));
|
| /dokuwiki/lib/plugins/logviewer/ |
| H A D | admin.php | 142 $size = filesize($logfilePath); 148 if ($size < self::MAX_READ_SIZE) { 149 $toread = $size; 161 if ($size >= self::MAX_READ_SIZE) {
|
| H A D | style.less | 46 font-size: 80%;
|
| /dokuwiki/lib/plugins/popularity/ |
| H A D | helper.php | 301 $size = filesize($base . '/' . $file); 304 $data['file_size'] += $size; 305 if (!isset($data['file_min']) || $data['file_min'] > $size) $data['file_min'] = $size; 306 if ($data['file_max'] < $size) $data['file_max'] = $size;
|
| /dokuwiki/lib/styles/ |
| H A D | feed.css | 25 font-size: 200%; 49 font-size: 1.4em;
|
| /dokuwiki/lib/plugins/config/ |
| H A D | style.css | 22 font-size: 1.25em; 79 font-size: 70%; 153 font-size: 90%; 164 font-size: 90%;
|
| /dokuwiki/lib/scripts/ |
| H A D | fileuploader.js | 403 var name, size; 412 size = file.fileSize != null ? file.fileSize : file.size; 419 } else if (size === 0){ 423 } else if (size && this._options.sizeLimit && size > this._options.sizeLimit){ 427 } else if (size && size < this._options.minSizeLimit){ 513 size: 'qq-upload-size', property 600 var size = this._find(item, 'size'); 601 size.style.display = 'inline'; 610 qq.setText(size, text); 1162 return file.fileSize != null ? file.fileSize : file.size; [all …]
|
| /dokuwiki/inc/Parsing/Lexer/ |
| H A D | ParallelRegex.php | 78 $size = count($matches); 80 for ($i = 1; $i < $size; $i++) {
|
| /dokuwiki/lib/plugins/extension/ |
| H A D | style.less | 30 font-size: 12px; 91 font-size: 80%; 123 font-size: 100%; 131 font-size: 120%; 207 font-size: 90%;
|
| /dokuwiki/inc/Remote/ |
| H A D | LegacyApiCore.php | 139 'size' => $info->size, 185 'size' => $page->size, 204 'size' => $page->size, 229 'size' => $page->size, 257 'size' => $file->size,
|
| /dokuwiki/vendor/splitbrain/php-jsstrip/ |
| H A D | README.md | 9 …t to do this to optimize size and performance, or to make a file harder to read. It typically make…
|