Home
last modified time | relevance | path

Searched refs:size (Results 1 – 25 of 1862) sorted by relevance

12345678910>>...75

/plugin/combo/vendor/hidehalo/nanoid-php/src/
H A DClient.php16 * @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 DSizeConverter.php43 * @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 DmxDFD.js177 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 Dhelper.php21 '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 DPaging.php44 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 DDecoder.php133 $newOffset = $offset + $size;
215 switch ($size) {
328 $size = $ctrlByte & 0x1f;
330 if ($size < 29) {
331 return [$size, $offset];
334 $bytesToRead = $size - 28;
337 if ($size === 29) {
338 $size = 29 + \ord($bytes);
339 } elseif ($size === 30) {
341 $size = 285 + $adjust;
[all …]
/plugin/html2pdf/html2pdf/html2ps/
H A Dmedia.layout.inc.php15 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 Dutils_array.php5 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 Dvalue.font.class.php6 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 Dfugue.php22 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/$icon.png";
/plugin/findologicxmlexport/vendor/sebastian/diff/tests/LCS/
H A DLongestCommonSubsequenceTest.php87 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 Dstyle.css5 .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 DODTState.php42 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 Dcssdocument.php140 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 DDatamatrixFactory.php164 $scale['frame'] = $this->size;
166 $scale['area'] = $this->size;
192 $w = $scale->size;
193 $h = $scale->size;
245 imagefilledrectangle($png, $x, $y, ($x + $scale->size - 1), ($y + $scale->size - 1), $fgcol);
247 $x += $scale->size;
249 $y += $scale->size;
252 $frame = imagecreatetruecolor($this->size, $this->size);
253 $blank = imagecreate($this->size, $this->size);
320 $x += $scale->size;
[all …]
H A DQRcodeFactory.php95 $emblem['frame'] = $this->size;
203 $scale['frame'] = $this->size;
205 $scale['area'] = $this->size;
231 $w = $scale->size;
232 $h = $scale->size;
291 $x += $scale->size;
293 $y += $scale->size;
296 $frame = imagecreatetruecolor($this->size, $this->size);
297 $blank = imagecreate($this->size, $this->size);
372 $x += $scale->size;
[all …]
/plugin/twofactorgoogleauth/
H A DQRCode.php118 '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 DPhpMathPublisher.php33 protected $size; variable in RL\\PhpMathPublisher\\PhpMathPublisher
44 * @param int $size font-size for the formula
51 $this->size = $size;
93 $nameImg = md5(trim($text) . $this->size) . '.png';
114 $formula->draw($this->size);
130 $this->size = max($this->size, 10);
131 $this->size = min($this->size, 24);
176 * @param int $size
178 public function setSize($size) argument
180 $this->size = $size;
[all …]
/plugin/ckgdoku/syntax/
H A Dfont.php40 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 Dfont.php40 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 DPagingControl.php27 * 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 DShapes.js2260 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 Ddisplay-bs-4.css1 .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 Dsyntax.php93 list($size, $math) = explode('>', $match, 2);
95 $math = $size;
96 $size = '';
98 $size = (int) trim($size);
99 if(!$size) $size = 12;
121 return (array($size, trim($math), $align));
135 list($size, $math, $align) = $data;
138 $size = $size * $scale;
139 $ident = md5($math . '-' . $size);
148 $pmp = new \RL\PhpMathPublisher\PhpMathPublisher('', '', $size);
/plugin/katex/_assets/
H A Dkatex.min.css1size:1px;min-width:2px;vertical-align:bottom;width:2px}.katex .vbox{align-items:baseline;display:i…

12345678910>>...75