Home
last modified time | relevance | path

Searched refs:sx (Results 1 – 25 of 74) sorted by relevance

123

/plugin/dwtimeline/_test/
H A DOptionsParserTest.php14 $sx = new syntax_plugin_dwtimeline_dwtimeline();
15 $data = $sx->getTitleMatches('title="Release 2025-05-14" align=vert data=2025');
24 $sx = new syntax_plugin_dwtimeline_dwtimeline();
26 $data = $sx->getTitleMatches('title="He said \"Hi\" & it\'s fine"');
33 $sx = new syntax_plugin_dwtimeline_dwtimeline();
34 $data = $sx->getTitleMatches("foo style=''");
43 $sx = new syntax_plugin_dwtimeline_dwtimeline();
46 $this->assertSame('wiki:start', $sx->getLink('[[wiki:start|Go]]'));
52 $this->assertSame('doku>interwiki', $sx->getLink('[[doku>interwiki]]'));
54 $this->assertSame('mailto:test@example.com', $sx->getLink('test@example.com'));
[all …]
/plugin/mathpublish/phpmathpublisher/
DHelper.php470 $sx = $sy = $ex = $ey = -1;
482 if ($sx == -1) {
483 $sx = $x;
485 if ($x < $sx) {
486 $sx = $x;
496 $nx = abs($ex - $sx);
501 …imagecopy($img, $tmpImg, 2, 2, $sx, $sy, min($nx + 2, $tmpWidth - $sx), min($ny + 2, $tmpHeight - …
517 $sx = $sy = $ex = $ey = -1;
529 if ($sx == -1) {
530 $sx = $x;
[all …]
/plugin/jcapture/src/com/hammurapi/jcapture/
DRegion.java47 for (int sx=0, sw=master.getWidth(); sx<sw; ++sx) { in Region()
49 imageHash^=img.getRGB(sx, sy); in Region()
188 for (int sx=0, sw=bImage.getWidth(); sx<sw; ++sx) { in imageEquals()
190 if (bImage.getRGB(sx, sy)!=oImage.getRGB(sx, sy)) { in imageEquals()
/plugin/html2pdf/html2pdf/html2ps/
Doutput.png.class.php349 $sx = $image->sx();
355 $dx = $sx*$scale_x;
363 $sx, $sy);
372 $sx = $image->sx();
374 $dx = $this->_fixSizeX($sx * $scale);
384 $sx, $sy);
395 $sx = $image->sx();
397 $dx = $this->_fixSizeX($sx * $scale);
409 $sx, $sy);
423 $sx = $image->sx();
[all …]
Doutput.fpdf.class.php168 $image->sx() * $scale,
183 $this->pdf->Image($tmpname, $tx, $ty, $image->sx() * $scale, $image->sy() * $scale, "png");
193 $this->pdf->Image($tmpname, $tx, $ty, $image->sx() * $scale, $image->sy() * $scale, "png");
212 $this->pdf->Image($tmpname, $tx, $ty, $image->sx() * $scale, $image->sy() * $scale, "png");
226 $this->pdf->Image($tmpname, $tx, $ty, $image->sx() * $scale, $image->sy() * $scale, "png");
240 $this->pdf->Image($tmpname, $tx, $ty, $image->sx() * $scale, $image->sy() * $scale, "png");
254 $this->pdf->Image($tmpname, $tx, $ty, $image->sx() * $scale, $image->sy() * $scale, "png");
273 $this->pdf->Image($tmpname, $tx, $ty, $image->sx() * $scale, $image->sy() * $scale, "png");
283 $this->pdf->Image($tmpname, $tx, $ty, $image->sx() * $scale, $image->sy() * $scale, "png");
294 …$this->pdf->Image($tmpname, $x, $y - $image->sy() * $scale_y, $image->sx() * $scale_x, $image->sy(…
Dbox.img.php289 $this->put_width(px2pt($this->image->sx()));
293 $this->src_height = $this->image->sx();
342 $this->get_width() / $this->image->sx(),
Dimage.class.php39 function sx() { function in Image
Dbackground.image.php130 $image_width = px2pt($this->_image->sx());
/plugin/math2/phpmathpublisher/
Dmathpublisher.php426 $sx = $sy = $ex = $ey = -1;
438 if ($sx == -1) $sx = $x;
441 if ($x < $sx) $sx = $x;
447 $nx = abs($ex - $sx);
453 ImageCopy($img,$tmp_img,2,2,$sx,$sy,min($nx+2,$tmp_largeur-$sx),min($ny+2,$tmp_hauteur-$sy));
470 $sx = $sy = $ex = $ey = -1;
482 if ($sx == -1) $sx = $x;
485 if ($x < $sx) $sx = $x;
491 $nx = abs($ex - $sx);
497 ImageCopy($img,$tmp_img,2,2,$sx,$sy,min($nx+2,$tmp_largeur-$sx),min($ny+2,$tmp_hauteur-$sy));
[all …]
/plugin/sequencediagram/bower_components/raphael/dev/
Draphael.vml.js70 setCoords = function (p, sx, sy, dx, dy, deg) { argument
79 kx = zoom / sx,
82 if (!sx || !sy) {
86 s.rotation = deg * (sx * sy < 0 ? -1 : 1);
92 sx < 0 && (flip += "x");
105 fill.size = _.fillsize[0] * abs(sx) + S + _.fillsize[1] * abs(sy);
436 sx: 1, property
539 elproto.scale = function (sx, sy, cx, cy) { argument
543 sx = Str(sx).split(separator);
544 if (sx.length - 1) {
[all …]
Draphael.svg.js474 if (o._.sx != 1 || o._.sy != 1) {
475 value /= mmax(abs(o._.sx), abs(o._.sy)) || 1;
690 sx: 1, property
780 elproto.scale = function (sx, sy, cx, cy) { argument
784 sx = Str(sx).split(separator);
785 if (sx.length - 1) {
786 sy = toFloat(sx[1]);
787 cx = toFloat(sx[2]);
788 cy = toFloat(sx[3]);
790 sx = toFloat(sx[0]);
[all …]
Draphael.core.js2239 sx = 1,
2285 sx *= t[1];
2295 sx *= t[1];
2314 _.sx = sx;
2320 if (sx == 1 && sy == 1 && !deg && _.bbox) {
/plugin/networkgraph/
Dscript.js216 const [sx, sy] = currentTransform.apply([d.source.x, d.source.y]);
218 return isInsideViewport(sx, sy) || isInsideViewport(tx, ty);
/plugin/callflow/
Draphael.js2594 sx = 1,
2640 sx *= t[1];
2650 sx *= t[1];
2669 _.sx = sx;
2675 if (sx == 1 && sy == 1 && !deg && _.bbox) {
6210 if (o._.sx != 1 || o._.sy != 1) {
6211 value /= mmax(abs(o._.sx), abs(o._.sy)) || 1;
6414 sx: 1, property
6504 elproto.scale = function (sx, sy, cx, cy) { argument
6508 sx = Str(sx).split(separator);
[all …]
/plugin/advrack/
Draphael.js2594 sx = 1,
2640 sx *= t[1];
2650 sx *= t[1];
2669 _.sx = sx;
2675 if (sx == 1 && sy == 1 && !deg && _.bbox) {
6216 if (o._.sx != 1 || o._.sy != 1) {
6217 value /= mmax(abs(o._.sx), abs(o._.sy)) || 1;
6420 sx: 1, property
6510 elproto.scale = function (sx, sy, cx, cy) { argument
6514 sx = Str(sx).split(separator);
[all …]
/plugin/statistics/
Dscript.js33 sx: screen.width, property
/plugin/abc2/abc-libraries/abc2svg/
Dpsvg-1.js185 Psvg.prototype.scale=function(sx,sy){gcur.xoffs/=sx;gcur.yoffs/=sy;gcur.cx/=sx;gcur.cy/=sy;gcur.xsc… argument
237 function pscall(f,x,y,script){gcur.xorig=gcur.xoffs=abcobj.sx(0);gcur.yorig=gcur.yoffs=abcobj.sy(0)…
/plugin/s5reloaded/ui/thesis/
Dslides.js76 '0': {sx: 0, sy: 0, sw: 48, sh: 64}, property
77 '1': {sx: 48, sy: 0, sw: 48, sh: 64}, property
78 '2': {sx: 96, sy: 0, sw: 48, sh: 64}, property
79 '3': {sx: 144, sy: 0, sw: 48, sh: 64}, property
80 '4': {sx: 192, sy: 0, sw: 48, sh: 64}, property
81 '5': {sx: 240, sy: 0, sw: 48, sh: 64}, property
82 '6': {sx: 288, sy: 0, sw: 48, sh: 64}, property
83 '7': {sx: 336, sy: 0, sw: 48, sh: 64}, property
84 '8': {sx: 384, sy: 0, sw: 48, sh: 64}, property
85 '9': {sx: 432, sy: 0, sw: 48, sh: 64}, property
[all …]
/plugin/jmol2/jmol/
DJmol.js1636 var sx = "" + x;
1637 return (sx.length == 0 ? (units ? "" : _jmol.allowedJmolSize[2])
1638 : sx.indexOf("%") == sx.length-1 ? sx
/plugin/stlviewer/stlviewer/
DCanvasRenderer.js551 var sx = bitmap.width * texture.repeat.x;
554 var cx = scaleX / sx;
563 _context.fillRect( ox, oy, sx, sy );
/plugin/diagramsnet/lib/js/diagramly/util/
DmxJsCanvas.js166 var sx = (flipH) ? -1 : 1;
169 this.ctx.scale(sx, sy);
/plugin/processing/
Dscript.js2395 var sx = m[0];
2397 this.matrix.scale(sx,sy);
3688 scale: function(sx, sy) {
3689 if (sx && !sy) {
3690 sy = sx;
3692 if (sx && sy) {
3693 this.elements[0] *= sx;
3695 this.elements[3] *= sx;
3973 scale: function(sx, sy, sz) {
3974 if (sx && !sy && !sz) {
[all …]
/plugin/photogallery/phpThumb/
Dphpthumb.class.php85 public $sx = null; // Source crop top-left X position variable in phpthumb
1923 } elseif ($this->sw || $this->sh || $this->sx || $this->sy) {
1928 $crop_param .= '+'.(($this->sx < 2) ? round($this->sx * $this->source_width) : $this->sx);
3329 …nitially set to ['.$this->source_width.','.$this->source_height.','.$this->sx.','.$this->sy.','.$t…
3331 …$this->thumbnailCropX = ($this->sx ? (($this->sx >= 2) ? $this->sx : round($this->sx * $this->sour…
/plugin/photogallery/phpThumb/docs/
Dphpthumb.readme.txt213 sx = left side of source rectangle (default = 0)
214 (values 0 < sx < 1 represent percentage)
584 values for sx/sy/sw/sh parameters, or if those are set
588 phpThumb.php?src=pic.jpg&sx=.25&sy=.25&sw=.5&sh=.5
/plugin/diagramsnet/lib/plugins/
Dvoice.js483 function mouseEvent(type, sx, sy, cx, cy, shift) argument
491 screenX: sx,

123