/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/ |
H A D | abs.test | 2 "abs" filter 4 {{ (-5.5)|abs }} 5 {{ (-5)|abs }} 6 {{ (-0)|abs }} 7 {{ 0|abs }} 8 {{ 5|abs }} 9 {{ 5.5|abs }} 10 {{ number1|abs }} 11 {{ number2|abs }} 12 {{ number3|abs }} [all …]
|
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/ |
H A D | abs.rst | 1 ``abs`` 4 The ``abs`` filter returns the absolute value. 10 {{ number|abs }} 16 Internally, Twig uses the PHP `abs`_ function. 18 .. _`abs`: https://secure.php.net/abs target in ``abs``
|
/plugin/prolog/ |
H A D | attribute_include.php | 203 $abs = DOKU_PAGES.'/'.str_replace(':','/',getNS($ID)); 205 $abs = DOKU_PAGES.'/'.str_replace(':','/',$ID.'.txt'); 207 return str_replace('\\', '/', $abs); 212 * @param string $abs absolute path to file/directory 215 function abs2ID($abs = null) { argument 216 $abs = str_replace(realpath(DOKU_PAGES), '', realpath($abs)); 218 if(substr($abs,-4) == '.txt') 219 $abs = substr($abs, 0, -4); 221 $abs .= '/*'; 223 $ID = preg_replace('/[\/\\\]/',':',$abs);
|
/plugin/photogallery/lightGallery/js/ |
H A D | lg-zoom.js | 318 distanceY = -Math.abs(_$el.attr('data-y')); 324 distanceX = -Math.abs(_$el.attr('data-x')); 327 …if ((Math.abs(endCoords.x - startCoords.x) > 15) || (Math.abs(endCoords.y - startCoords.y) > 15)) { 415 distanceY = -Math.abs(_$el.attr('data-y')); 467 …var maxY = Math.abs(($image.prop('offsetHeight') * Math.abs($image.attr('data-scale'))) - _this.co… 469 …var maxX = Math.abs(($image.prop('offsetWidth') * Math.abs($image.attr('data-scale'))) - _this.cor… 471 …if ((Math.abs(endCoords.x - startCoords.x) > 15) || (Math.abs(endCoords.y - startCoords.y) > 15)) { 489 _$el.attr('data-y', Math.abs(distanceY)); 491 distanceY = -Math.abs(_$el.attr('data-y')); 495 _$el.attr('data-x', Math.abs(distanceX)); [all …]
|
H A D | lg-zoom.min.js | 4 …abs(j.attr("data-y"))+(c.y-b.y):-Math.abs(j.attr("data-y")),h=e?-Math.abs(j.attr("data-x"))+(c.x-b…
|
/plugin/panoview/ |
H A D | syntax.php | 157 …$scale = $this->image_scale($crop, abs($d['brx'] - $d['tlx']), abs($d['bry'] - $d['tly']), $d['ts'… 175 …$cmd .= ' -crop \''.abs($d['brx'] - $d['tlx']).'x'.abs($d['bry'] - $d['tly']).'!+'.$d['tlx'].'+'.$… 177 $cmd .= ' -extent \''.abs($d['brx'] - $d['tlx']).'x'.abs($d['bry'] - $d['tly']).'!\''; 203 $w = abs($right - $left); 204 $h = abs($lower - $upper);
|
/plugin/swiftmail/Swift/Plugin/ |
H A D | BandwidthMonitor.php | 61 $num = abs((int)$num); 70 $num = abs((int)$num); 96 $this->in = abs((int)$num); 105 $this->out = abs((int)$num);
|
H A D | Throttler.php | 134 $this->bpm = abs((int)$bpm); 157 $this->epm = abs((int)$epm);
|
/plugin/indexmenu2/cms/extensions/ |
H A D | documentselection.js | 13 …abs(document.selection.createRange().moveStart("character",-100000000));try{var _=Math.abs(O.creat…
|
H A D | stringextensions.js | 10 …abs(i)-this.length);return(i<0)?o+l:l+o};String.prototype.padLeft=function(i,I){return this.paddin…
|
/plugin/virtualkeyboard/vk/extensions/ |
H A D | documentselection.js | 147 … start = Math.abs(document.selection.createRange().moveStart("character", -100000000)); // start 150 var endReal = Math.abs(el.createTextRange().moveEnd("character", -100000000)); 156 var sTest = Math.abs(r.moveStart("character", -100000000)); 157 var eTest = Math.abs(r.moveEnd("character", -100000000)); 190 end = Math.abs(document.selection.createRange().moveEnd("character", -100000000)); // end 193 var endReal = Math.abs(el.createTextRange().moveEnd("character", -100000000)); 199 var sTest = Math.abs(r.moveStart("character", -100000000)); 200 var eTest = Math.abs(r.moveEnd("character", -100000000));
|
H A D | stringextensions.js | 95 var pad = String(c).charAt(0).repeat(Math.abs(n) - this.length); 107 return this.padding(-Math.abs(n), c); 118 return this.padding(Math.abs(n), c); 218 x[4] = Math.abs(x[4]); 245 ins = Math.abs(ins); 249 ins = "-"+Math.abs(ins).dec(x[4]);
|
/plugin/mathpublish/phpmathpublisher/ |
H A D | Helper.php | 462 $tmpWidth = abs($tmpDim[2] - $tmpDim[0]) + 2; 463 $tmpHeight = abs($tmpDim[3] - $tmpDim[5]) + 2; 496 $nx = abs($ex - $sx); 497 $ny = abs($ey - $sy); 508 $tmpWidth = abs($tmpDim[2] - $tmpDim[0]); 509 $tmpHeight = abs($tmpDim[3] - $tmpDim[5]) * 4; 543 $nx = abs($ex - $sx); 544 $ny = abs($ey - $sy); 566 } while ((abs($tmpDim[3] - $tmpDim[5]) < 1.2 * $high)); 567 $tmpWidth = abs( [all...] |
/plugin/countdown/ |
H A D | syntax.php | 132 …, abs($difdata['days']), ($difdata['days'] == 1 ? $this->getLang('oneday') : $this->getLang('days'… 160 'days' => abs(($difference)), 162 'hours' => abs($diffseconds / 3600) % 24, 163 'minutes' => abs($diffseconds / 60) % 60, 164 'seconds' => abs($diffseconds ) % 60
|
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/ |
H A D | Img.php | 313 $w = abs($info['w']) / (20 * Mpdf::SCALE); 314 $h = abs($info['h']) / (20 * Mpdf::SCALE); 318 $w = abs($info['w']) / Mpdf::SCALE; 319 $h = abs($info['h']) / Mpdf::SCALE; 341 $w = $info['h'] ? abs($h * $info['w'] / $info['h']) : INF; 345 $h = $info['w'] ? abs($w * $info['h'] / $info['w']) : INF; 350 $h = $info['w'] ? abs($w * $info['h'] / $info['w']) : INF; 354 $h = $info['w'] ? abs($w * $info['h'] / $info['w']) : INF; 358 $w = $info['h'] ? abs($h * $info['w'] / $info['h']) : INF; 362 $w = $info['h'] ? abs( [all...] |
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Gif/ |
H A D | ColorTable.php | 72 $d = abs($r2 - $r1) + abs($g2 - $g1) + abs($b2 - $b1);
|
/plugin/photogallery/phpThumb/ |
H A D | phpthumb.unsharp.php | 53 $radius = abs(round(min(50, $radius) * 2)); // Only integers make sense. 113 …$rNew = ((abs($rOrig - $rBlur) >= $threshold) ? max(0, min(255, ($amount * ($rOrig - $rBlur)) + $r… 114 …$gNew = ((abs($gOrig - $gBlur) >= $threshold) ? max(0, min(255, ($amount * ($gOrig - $gBlur)) + $g… 115 …$bNew = ((abs($bOrig - $bBlur) >= $threshold) ? max(0, min(255, ($amount * ($bOrig - $bBlur)) + $b…
|
/plugin/pgn4web/pgn4web/ |
H A D | viewer-links.php | 164 $abs = "$host$path/$url"; 168 for($n = 1; $n > 0; $abs = preg_replace($re, '/', $abs, -1, $n)) {} 171 return $scheme.'://'.$abs;
|
/plugin/swiftmail/Swift/ |
H A D | BatchMailer.php | 75 $this->maxTries = abs($max); 91 $this->sleepTime = abs($secs); 132 $this->maxFails = abs($fails);
|
/plugin/diagramsnet/lib/plugins/ |
H A D | edgeConnection.js | 36 if (Math.abs(this.graph.snap(this.first.x) - 41 else if (Math.abs(this.graph.snap(this.first.y) -
|
/plugin/combo/resources/snippet/js/ |
H A D | lightbox.js | 29 const diffX = Math.abs(event.pageX - startX); 30 const diffY = Math.abs(event.pageY - startY);
|
/plugin/gtime/gtlib/util/ |
H A D | GTUtil.php | 51 $a = abs((int) $a); 52 $b = abs((int) $b); 92 $a = abs($a) / GTUtil::gcd($a, $b); 93 $b = abs($b);
|
/plugin/geophp/vendor/funiq/geophp/src/Geometry/ |
H A D | LineString.php | 66 : $this->geometryN(count($this->components) - abs($n + 1)); 212 cos(deg2rad(abs($point->x() - $nextPoint->x()))) 279 } while (abs($lambda - $lambdaP) > 1e-12 && --$iterationLimit > 0); 323 return abs($this->startPoint()->z() - $this->endPoint()->z()); 344 if (abs($point->z() - $lastEle) > $verticalTolerance || $i === $pointCount - 1) { 369 if (abs($point->z() - $lastEle) > $verticalTolerance || $i === $pointCount - 1) {
|
/plugin/dokukiwix/ |
H A D | INSTALL | 11 function wl($id='',$more='',$abs=false,$sep='&'){ 14 if (defined("dokukiwix_plugin")) return dokukiwix_wl($id, $more, $abs, $sep);
|
/plugin/likeit/script/ |
H A D | jquery.hoverIntent.js | 65 if ( ( Math.abs(pX-cX) + Math.abs(pY-cY) ) < cfg.sensitivity ) {
|