/plugin/combo/vendor/hidehalo/nanoid-php/src/ |
H A D | Client.php | 16 * @param integer $size number of symbols in ID. 19 protected $size; variable in Hidehalo\\Nanoid\\Client 34 * @param integer $size 37 public function __construct($size = 21, GeneratorInterface $generator = null) argument 39 $this->size = $size > 0 ? $size : 21; 48 * @param integer $size 52 public function generateId($size = 0, $mode = self::MODE_NORMAL) argument 54 $size 73 formattedId($alphabet, $size = 0, GeneratorInterface $generator = null) global() argument 92 formatedId($alphabet, $size = 0, GeneratorInterface $generator = null) global() argument 108 normalRandom($size) global() argument [all...] |
/plugin/dw2pdf/vendor/mpdf/mpdf/src/ |
H A D | SizeConverter.php | 43 * @param mixed $size 48 * @return float Final size in mm 50 public function convert($size = 5, $maxsize = 0, $fontsize = false, $usefontsize = true) argument 52 $size = trim(strtolower($size)); 53 $res = preg_match('/^(?P<size>[-0-9.,]+([eE]\-?[0-9]+)?)?(?P<unit>[%a-z-]+)?$/', $size, $parts); 56 $this->logger->warning(sprintf('Invalid size representation "%s"', $size), ['context' => LogContext::CSS_SIZE_CONVERSION]); 60 $size [all...] |
/plugin/diagramsnet/lib/shapes/ |
H A D | mxDFD.js | 177 c.lineTo(size, 0); 181 c.lineTo(size, h); 219 if(size * 4 <= w) 313 var size = 10; 318 c.lineTo(w, size); 320 c.lineTo(size, h); 334 c.lineTo(w, size); 335 c.lineTo(size, size); 354 c.lineTo(size, size); 357 c.lineTo(size, size); [all …]
|
/plugin/avatar/ |
H A D | helper.php | 21 'size (optional)' => 'integer'), 30 function getXHTML($user, $title = '', $align = '', $size = NULL) { argument 33 $src = $this->_getAvatarURL($user, $title, $size); 37 ' title="'.$title.'" alt="'.$title.'" width="'.$size.'"'. 38 ' height="'.$size.'" />'; 44 function _getAvatarURL($user, &$title, &$size) { argument 47 if (!$size || !is_int($size)) $size = $this->getConf('size'); [all...] |
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/ |
H A D | Paging.php | 44 protected $size; 64 * @param int $size 66 public function __construct(LdapClient $client, SearchRequest $search, int $size = 1000) 70 $this->size = $size; 91 * @param int|null $size 93 public function start(SearchRequest $search, ?int $size = null): void 95 $this->size = $size ?? $this->size; 42 protected $size; global() variable in FreeDSx\\Ldap\\Search\\Paging 59 __construct(LdapClient $client, SearchRequest $search, int $size = 1000) global() argument 72 start(SearchRequest $search, int $size = null) global() argument 99 getEntries(int $size = null) global() argument 132 send(int $size = null) global() argument [all...] |
/plugin/quickstats/GEOIP/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/ |
H A D | Decoder.php | 81 // Pointers are a special case, we don't read the next $size bytes, we 82 // use the size to determine the length of the pointer and then follow 117 list($size, $offset) = $this->sizeFromCtrlByte($ctrlByte, $offset); 119 return $this->decodeByType($type, $offset, $size); 122 private function decodeByType($type, $offset, $size) argument 126 return $this->decodeMap($size, $offset); 128 return $this->decodeArray($size, $offset); 130 return [$this->decodeBoolean($size), $offset]; 133 $newOffset = $offset + $size; 134 $bytes = Util::read($this->fileStream, $offset, $size); 170 decodeArray($size, $offset) global() argument 182 decodeBoolean($size) global() argument 213 decodeInt32($bytes, $size) global() argument 236 decodeMap($size, $offset) global() argument [all...] |
/plugin/html2pdf/html2pdf/html2ps/ |
H A D | media.layout.inc.php | 15 var $size; variable in Media 20 * @param Array $size associative array with 'height' and 'width' keys (mm) 23 function Media($size, $margins) { argument 24 $this->size = $size; 30 $new_item =& new Media($this->size, $this->margins); 39 return $this->is_landscape ? $this->size['height'] : $this->size['width'] ; 51 return $this->is_landscape ? $this->size['width'] : $this->size['height']; 63 $this->size['height'] = $height; 80 $this->size['width'] = $width; 105 return '0 0 '.ceil(mm2pt($this->size['width'])).' '.ceil(mm2pt($this->size['height'])); [all …]
|
H A D | utils_array.php | 5 for ($i=0, $size = count($flags); $i<$size; $i++) { 11 function expand_to_with_flags($size, $array, $flags) { argument 16 if (array_sum($array) > $size) { 22 if (!$flags[$i]) { $size -= $array[$i]; }; 37 $array[0] += $size; 42 $koeff = $size / $sum; 52 function expand_to($size, $array) { argument 60 if (array_sum($array) > $size) { 65 $koeff = $size / array_sum($array); 68 for ($i=0, $size = count($array); $i<$size; $i++) {
|
H A D | value.font.class.php | 6 var $size; variable in ValueFont 18 if ($this->size === CSS_PROPERTY_INHERIT) { 19 $font->size = CSS_PROPERTY_INHERIT; 21 $font->size = $this->size->copy(); 36 $this->size->units2pt($base_font_size); 42 $this->size = Value::fromData(1, UNIT_EM); 53 if ($this->size === CSS_PROPERTY_INHERIT) { 54 $size = $state->getInheritedProperty(CSS_FONT_SIZE); 55 $this->size = $size->copy();
|
/plugin/icons/syntax/ |
H A D | fugue.php | 22 public static function makePath($icon, $size, $base_url) { argument 25 $size = (($size > max($sizes)) ? max($sizes) : $size); 27 switch ($size) { 30 $size = 'icons'; break; 32 $size = 'bonus/icons-24'; break; 34 $size = 'bonus/icons-32'; break; 36 $size = 'icons'; 39 return "$base_url/$size/ [all...] |
/plugin/findologicxmlexport/vendor/sebastian/diff/tests/LCS/ |
H A D | LongestCommonSubsequenceTest.php | 87 foreach ($this->stress_sizes as $size) { 88 $range = \range(1, $size); 110 $from = \range(1, $size); 111 $to = \range($size + 1, $size * 2); 132 $from = $size < 2 ? array(1) : \range(1, $size + 1, 2); 133 $to = $size < 3 ? array(1) : \range(1, $size + 1, 3); 134 $expected = $size < 6 ? array(1) : \range(1, $size + 1, 6); 144 $from = \range(1, $size); 155 $from = \range(1, $size); 166 $from = \range(1, $size); [all …]
|
/plugin/cloud/ |
H A D | style.css | 5 .dokuwiki div.cloud a.cloud1 { font-size: 10px; color: #D3E0F5; } 6 .dokuwiki div.cloud a.cloud2 { font-size: 12px; color: #AEC4E5; } 7 .dokuwiki div.cloud a.cloud3 { font-size: 14px; color: #88A9DB; } 8 .dokuwiki div.cloud a.cloud4 { font-size: 16px; color: #4A7AC2; } 9 .dokuwiki div.cloud a.cloud5 { font-size: 18px; color: #003F9E; } 11 .dokuwiki div.cloud a.cloud1_tag1 { font-size: 10px; color: #CEF0D0; } 12 .dokuwiki div.cloud a.cloud2_tag1 { font-size: 12px; color: #AEE5B1; } 13 .dokuwiki div.cloud a.cloud3_tag1 { font-size: 14px; color: #88DB8C; } 14 .dokuwiki div.cloud a.cloud4_tag1 { font-size: 16px; color: #4AC250; } 15 .dokuwiki div.cloud a.cloud5_tag1 { font-size: 18px; color: #009E08; } [all …]
|
/plugin/odt/ODT/ |
H A D | ODTState.php | 42 protected $size = 0; variable in ODTState 51 $this->size++; 138 $previous = $this->stack [$this->size-1]; 141 $this->stack [$this->size] = $element; 142 $this->size++; 160 return $this->stack [$this->size-1]; 169 if ($this->size > 1) { 171 $this->size--; 185 $this->size = 1; 330 if ($this->size > 0) { [all …]
|
/plugin/odt/ODT/css/ |
H A D | cssdocument.php | 140 public $size = 0; variable in cssdocument 247 $state ['index'] = $this->size-1; 291 $this->size++; 305 $this->size++; 331 if ($index >= $this->size ) { 343 if ($this->size == 0) { 355 if ($this->size == 0) { 372 if ($this->size == 0 || $start >= $this->size) { 395 if ($this->size == 0 || $current >= $this->size || $current == 0) { 431 $index = $this->size-1; [all …]
|
/plugin/barcodes/vendor/jucksearm/php-barcode/lib/ |
H A D | DatamatrixFactory.php | 19 'size' => 100, 91 $this->setAttribute('size', $value); 97 return $this->getAttribute('size') * $this->_scalePx; 157 $scale['frame'] = $this->size - ($this->_borderPx * 2); 158 $scale['margin'] = round($this->size * ($this->margin / 100)); 160 $scale['size'] = floor($scale['area'] / $bcd['num_cols']); 161 $scale['posX'] = $scale['margin'] + floor(($scale['area'] - ($bcd['num_cols'] * $scale['size'])) / 2); 164 $scale['frame'] = $this->size; 166 $scale['area'] = $this->size; 167 $scale['size'] [all...] |
H A D | QRcodeFactory.php | 21 'size' => 100, 95 $emblem['frame'] = $this->size; 96 $area = floor(($this->scale->size * $bcd['num_cols']) * 0.2); 130 $this->setAttribute('size', $value); 136 return $this->getAttribute('size') * $this->_scalePx; 196 $scale['frame'] = $this->size - ($this->_borderPx * 2); 197 $scale['margin'] = round($this->size * ($this->margin / 100)); 199 $scale['size'] = floor($scale['area'] / $bcd['num_cols']); 200 $scale['posX'] = $scale['margin'] + floor(($scale['area'] - ($bcd['num_cols'] * $scale['size'])) / 2); 203 $scale['frame'] = $this->size; [all...] |
/plugin/twofactorgoogleauth/ |
H A D | QRCode.php | 118 's' => array($size, $size), 476 $size = $version * 4 + 17; 478 for ($i = 0; $i < $size; $i++) { 518 $matrix[$size - 8][8] = 3; 523 if ($i && !$matrix[$size - $i][8]) $matrix[$size - $i][8] = 1; 524 if ($i && !$matrix[8][$size - $i]) $matrix[8][$size - $i] = 1; 536 $col = $size - 1; 537 $row = $size - 1; 558 return array($size, $matrix); 580 for ($i = 0; $i < $size; $i++) { [all …]
|
/plugin/mathpublish/phpmathpublisher/ |
H A D | PhpMathPublisher.php | 33 protected $size; variable in RL\\PhpMathPublisher\\PhpMathPublisher 44 * @param int $size font-size for the formula 46 public function __construct($imgpath, $webpath, $size = 10) argument 51 $this->size = $size; 93 $nameImg = md5(trim($text) . $this->size) . '.png'; 114 $formula->draw($this->size); 130 $this->size = max($this->size, 1 178 setSize($size) global() argument [all...] |
/plugin/ckgdoku/syntax/ |
H A D | font.php | 40 list($size, $face) = preg_split("/\//u", substr($match, 6, -1), 2); 41 if(isset($size) && strpos($size,':') !== false) { 42 list($size,$weight) = explode(':',$size); 43 $size = "font-size:$size;"; 46 $size .= " font-weight:$weight; "; 47 if($fstyle) $size .= " font-style:$fstyle; "; 51 else $size = "font-size:$size;"; 52 return array($state, array($size, $face));
|
/plugin/ckgedit/syntax/ |
H A D | font.php | 40 list($size, $face) = preg_split("/\//u", substr($match, 6, -1), 2); 41 if(isset($size) && strpos($size,':') !== false) { 42 list($size,$weight) = explode(':',$size); 43 $size = "font-size:$size;"; 46 $size .= " font-weight:$weight; "; 47 if($fstyle) $size .= " font-style:$fstyle; "; 51 else $size = "font-size:$size;"; 52 return array($state, array($size, $face));
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/ |
H A D | PagingControl.php | 27 * size INTEGER (0..maxInt), 28 * -- requested page size from client 29 * -- result set size estimate from server 44 protected $size; 47 * @param int $size argument 50 public function __construct(int $size, string $cookie = '') 52 $this->size = $size; 70 return $this->size; 85 * @param int $size argument 41 protected $size; global() variable in FreeDSx\\Ldap\\Control\\PagingControl [all...] |
/plugin/diagramsnet/lib/js/grapheditor/ |
H A D | Shapes.js | 2260 var size = UmlLifeline.prototype.size; 4467 c.arcTo(size, size, 0, 0, inv, size, 0); 4504 c.arcTo(size, size, 0, 0, inv, w, size); 4553 c.arcTo(size, size, 0, 0, inv, w - size, h); 4590 c.arcTo(size, size, 0, 0, inv, 0, h - size); 5018 c.lineTo(size, size); 5025 c.lineTo(w - size, size); 5032 c.lineTo(w - size, h - size); 5039 c.lineTo(size, h - size); 5178 var size = size + sw; [all …]
|
/plugin/combo/resources/theme/default/components/css/ |
H A D | display-bs-4.css | 1 .display-1 { font-size: calc(1.625rem + 4.5vw); } 2 .display-2 { font-size: calc(1.575rem + 3.9vw); } 3 .display-3 { font-size: calc(1.525rem + 3.3vw); } 4 .display-4 { font-size: calc(1.475rem + 2.7vw); } 7 .display-1 { font-size: 5rem; } 8 .display-2 { font-size: 4.5rem; } 9 .display-3 { font-size: 4rem; } 10 .display-4 { font-size: 3.5rem; }
|
/plugin/mathpublish/ |
H A D | syntax.php | 5 * Syntax: <m size>...mathematical formula..</m> 6 * size (optional) base glyph size in pixels, 93 list($size, $math) = explode('>', $match, 2); 95 $math = $size; 96 $size = ''; 98 $size = (int) trim($size); 99 if(!$size) $size [all...] |
/plugin/katex/_assets/ |
H A D | katex.min.css | 1 …size:1px;min-width:2px;vertical-align:bottom;width:2px}.katex .vbox{align-items:baseline;display:i…
|