Home
last modified time | relevance | path

Searched refs:offset (Results 251 – 275 of 852) sorted by last modified time

1...<<11121314151617181920>>...35

/plugin/c3chart/assets/
H A Dd3.min.js2offset=function(t,e){return n(t=new Date(+t),null==e?1:Math.floor(e)),t},i.range=function(e,r,o){v… function
/plugin/twofactorgoogleauth/
H A DQRCode.php424 $offset = 0;
426 $blocks[] = array_slice($data, $offset, $length);
427 $offset += $length;
431 $offset += $length;
461 for ($offset = 0; true; $offset++) {
464 if (isset($blocks[$i][$offset])) {
465 $data[] = $blocks[$i][$offset];
539 $offset = 0;
541 while ($col > 0 && $offset < $length) {
544 $offset++;
[all …]
/plugin/layeranimation/
H A Dscript.js124 var offset = layer == currentLayer ? 0 : self.offsetWidth;
127 this.elem.css({'left': this.direction * offset});
134 'left' : self.layer[layer].items[0].direction * offset
375 var originalAnimationTop = self.root.offset().top;
/plugin/bpmnioeditor/vendor/bpmnio-js/
H A Dbpmn-modeler.development.js16922 offset = offset || 0;
16957 offset = offset || 0;
16967 x: offset,
16968 y: offset,
28129 offset;
28133 offset = {
30692 offset;
37359 offset = options.offset;
41103 var offset;
51970 offset,
[all …]
H A Dbpmn-modeler.production.min.js28offset=6;var i=t.cls("djs-outline",["no-fill"]),r=this;function o(e,t){var n=Me("rect");return ge(…
34offset=o);var a=function(e,t){var n=e.context,i=n.createConstraints,r=n.resizeConstraints||{},o=n.…
/plugin/popupviewer/
H A Dscript.js327 content.get(0).scrollTop( urlpart == '#' ? 0 : $(urlpart).offset().top);
/plugin/xcom/lang/en/
H A Dfunctions.txt42 ^Parameters |(string) [[doku>:pagename]] , (int) offset|
43 …controlled \\ via the [[doku>:config:recent]] configuration setting. The offset can be used to lis…
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/Vlv/
H A DVlvResponseControl.php58 * @param int $offset
63 public function __construct(int $offset, int $count, int $result, ?string $contextId = null)
65 $this->offset = $offset;
93 $offset = $vlv->getChild(0);
98 if (!$offset instanceof IntegerType) {
112 $offset->getValue(),
129 Asn1::integer((int) $this->offset),
60 __construct(int $offset, int $count, int $result, string $contextId = null) global() argument
H A DVlvTrait.php34 protected $offset;
49 return $this->offset;
33 protected $offset; global() variable
H A DVlvControl.php29 * offset INTEGER (1 .. maxInt),
58 * @param null|int $offset
63 public function __construct(int $before, int $after, ?int $offset = null, ?int $count = null, GreaterThanOrEqualFilter $filter = null, ?string $contextId = null)
67 $this->offset = $offset;
135 * @param null|int $offset
138 public function setOffset(?int $offset)
140 $this->offset = $offset;
174 if ($this->filter === null && ($this->count === null || $this->offset
61 __construct(int $before, int $after, int $offset = null, int $count = null, GreaterThanOrEqualFilter $filter = null, string $contextId = null) global() argument
136 setOffset(int $offset) global() argument
[all...]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DControls.php179 * Create a VLV offset based control.
183 * @param int $offset
188 public static function vlv(int $before, int $after, int $offset = 1, int $count = 0, ?string $contextId = null): VlvControl
190 return new VlvControl($before, $after, $offset, $count, null, $contextId);
187 vlv(int $before, int $after, int $offset = 1, int $count = 0, string $contextId = null) global() argument
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/
H A DVlv.php63 protected $offset = 1;
111 * Request to start at a specific offset/percentage of entries.
113 * @param int $offset argument
116 public function startAt(int $offset)
118 $this->offset = $offset;
131 $this->offset = ($this->offset - $size < 0) ? 0 : $this->offset - $size;
144 $this->offset
60 protected $offset = 1; global() variable in FreeDSx\\Ldap\\Search\\Vlv
[all...]
/plugin/include/
H A Dhelper.php623 $offset = false;
635 $offset = $i;
637 } elseif ($offset && $lvl && ($ins[$i][1][1] <= $lvl)) {
638 $end = $i - $offset;
644 $offset = $offset ? $offset : 0;
647 $ins = array_slice($ins, $offset, $end);
/plugin/move/action/
H A Drename.php68 $offset = count($event->data['items']) - 1;
70 array_slice($event->data['items'], 0, $offset, true) +
72 array_slice($event->data['items'], $offset, null, true);
/plugin/commonmark/vendor/league/commonmark/src/Util/
H A DArrayCollection.php91 * Whether an offset exists
95 * @phpstan-param int $offset
97 public function offsetExists($offset): bool
99 return \array_key_exists($offset, $this->elements);
107 * @phpstan-param int $offset
112 public function offsetGet($offset)
114 return $this->elements[$offset] ?? null;
122 * @phpstan-param int|null $offset
126 public function offsetSet($offset, $value): void
128 if ($offset
239 offsetExists($offset) global() argument
256 offsetGet($offset) global() argument
273 offsetSet($offset, $value) global() argument
292 offsetUnset($offset) global() argument
311 slice(int $offset, int $length = null) global() argument
[all...]
H A DRegexHelper.php99 * Attempt to match a regex in string s at offset offset
107 public static function matchAt(string $regex, string $string, int $offset = 0): ?int
110 $string = \mb_substr($string, $offset, null, 'UTF-8');
115 // PREG_OFFSET_CAPTURE always returns the byte offset, not the char offset, which is annoying
118 return $offset + $charPos;
130 public static function matchFirst(string $pattern, string $subject, int $offset = 0): ?array
132 if ($offset !== 0) {
133 $subject = \substr($subject, $offset);
83 matchAt(string $regex, string $string, int $offset = 0) global() argument
108 matchAll(string $pattern, string $subject, int $offset = 0) global() argument
139 matchFirst(string $pattern, string $subject, int $offset = 0) global() argument
[all...]
/plugin/commonmark/vendor/league/commonmark/src/Block/Element/
H A DFencedCode.php
/plugin/commonmark/vendor/league/commonmark/src/
H A DCursor.php
/plugin/commonmark/vendor/league/commonmark/
H A DCHANGELOG-0.x.md
/plugin/passpolicy/
H A Dwords.txt2472 offset
/plugin/quickstats/GEOIP/
H A Dgeoip.inc1400 $offset = @shmop_size($gi->shmid) - 3;
1403 $offset += 3;
1409 $offset++;
1451 $offset -= 4;
1675 # arrays from unpack start with offset 1
1680 $offset = 0;
1713 $offset = $x[1];
1718 $offset = $x[0];
1727 $offset = 0;
1756 $offset = $x[1];
[all …]
/plugin/quickstats/GEOIP/vendor/maxmind-db/reader/ext/
H A Dmaxminddb.c665 maxminddb_obj_handlers.offset = XtOffsetOf(maxminddb_obj, std); in PHP_MINIT_FUNCTION()
/plugin/quickstats/GEOIP/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/
H A DDecoder.php71 public function decode($offset) argument
77 ++$offset;
85 list($pointer, $offset) = $this->decodePointer($ctrlByte, $offset);
114 ++$offset;
117 list($size, $offset) = $this->sizeFromCtrlByte($ctrlByte, $offset);
175 list($value, $offset) = $this->decode($offset);
179 return [$array, $offset];
241 list($key, $offset) = $this->decode($offset);
242 list($value, $offset) = $this->decode($offset);
246 return [$map, $offset];
[all …]
H A DUtil.php7 public static function read($stream, $offset, $numberOfBytes) argument
12 if (fseek($stream, $offset) === 0) {
18 if (ftell($stream) - $offset === $numberOfBytes) {
/plugin/imageflow/
H A Dscript.js394 …_self.dbgMessage(imageElement.image.offset().left + "|" + imageElement.image.offset().top + " " + …
576 … _self.scrollerStartDragOffset = _self.scrollerIsDragging ? _self.scroller.offset().left : false;
607 _self.dragStartPosition = _self.scroller.offset().left + _self.scroller.width()/2;

1...<<11121314151617181920>>...35