Home
last modified time | relevance | path

Searched refs:offset (Results 626 – 650 of 852) sorted by last modified time

1...<<21222324252627282930>>...35

/plugin/sequencediagram/bower_components/js-sequence-diagrams/dist/
H A Dsequence-diagram-raphael.js530 }, this.options.ranges && (this.yylloc.range = [ 0, 0 ]), this.offset = 0, this;
535 … this.yytext += ch, this.yyleng++, this.offset++, this.match += ch, this.matched += ch;
546 this.offset -= len;
607 offset: this.offset,
620 … this.options.ranges && (this.yylloc.range = [ this.offset, this.offset += this.yyleng ]),
/plugin/sequencediagram/bower_components/lodash/vendor/firebug-lite/skin/xp/
H A Ddebugger.css75 outline-offset: -2px !important;
H A Dfirebug.css321 outline-offset: -2px;
326 outline-offset: -2px;
1076 outline-offset: -2px;
/plugin/sequencediagram/bower_components/raphael/
H A Draphael.min.js1offset=s[2]+"%"),r.push(a)}for(i=1,n=r.length-1;i<n;i++)if(!r[i].offset){for(var o=z(r[i-1].offset function
/plugin/data-au/syntax/
H A Dtable.php277 $offset = 0;
279 $offset = 1; //rownumbers are in first column
283 $class = $dataau['align'][$index + $offset] . 'align';
302 $num_rn = $num + $offset;
514 $offset = (int) $_REQUEST['dataauofs'];
515 if($offset) {
516 $prev = $offset - $dataau['limit'];
536 $next = $offset + $dataau['limit'];
/plugin/sphinxsearch-was/
H A Dsphinxapi.php660 function SetLimits($offset, $limit, $max = 0, $cutoff = 0) argument
662 assert(is_int($offset));
664 assert($offset >= 0);
667 $this->_offset = $offset;
/plugin/emoji/script/
H A Djquery.textcomplete.js845 var lastOffset = this.$el.offset().left, offset;
850 offset = this.$el.offset().left;
851 if (offset >= lastOffset) { break; }
852 lastOffset = offset;
1017 var offset = this.$el.offset();
1024 offset.top -= parentOffset.top;
1025 offset.left -= parentOffset.left;
1028 position.top += offset.top;
1029 position.left += offset.left;
1292 var position = $node.offset();
[all …]
/plugin/findologicxmlexport/vendor/hoa/stream/IStream/
H A DIn.php123 * @param int $offset Offset.
126 public function readAll($offset = 0); argument
H A DPointable.php82 * @param int $offset Offset (negative value should be supported).
86 public function seek($offset, $whence = self::SEEK_SET); argument
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/
H A DAuthorList.php48 public function offsetExists($offset) argument
50 return isset($this->authors[$offset]);
56 public function offsetGet($offset) argument
58 return $this->authors[$offset] ?? null;
64 public function offsetSet($offset, $value) argument
66 if (null === $offset) {
69 $this->authors[$offset] = $value;
76 public function offsetUnset($offset) argument
78 unset($this->authors[$offset]);
/plugin/findologicxmlexport/vendor/hoa/file/
H A DReadWrite.php225 * @param int $offset Offset.
228 public function readAll($offset = 0) argument
230 return stream_get_contents($this->getStream(), -1, $offset);
H A DRead.php218 * @param int $offset Offset.
221 public function readAll($offset = 0) argument
223 return stream_get_contents($this->getStream(), -1, $offset);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/_files/
H A DArrayAccessible.php12 public function offsetExists($offset) argument
14 return array_key_exists($offset, $this->array);
17 public function offsetGet($offset) argument
19 return $this->array[$offset];
22 public function offsetSet($offset, $value) argument
24 if (null === $offset) {
27 $this->array[$offset] = $value;
31 public function offsetUnset($offset) argument
33 unset($this->array[$offset]);
H A DSampleArrayAccess.php16 public function offsetSet($offset, $value) argument
18 if (is_null($offset)) {
21 $this->container[$offset] = $value;
24 public function offsetExists($offset) argument
26 return isset($this->container[$offset]);
28 public function offsetUnset($offset) argument
30 unset($this->container[$offset]);
32 public function offsetGet($offset) argument
34 return isset($this->container[$offset]) ? $this->container[$offset] : null;
/plugin/findologicxmlexport/vendor/hoa/stream/Wrapper/IWrapper/
H A DStream.php169 * @param int $offset The stream offset to seek to.
179 public function stream_seek($offset, $whence = SEEK_SET); argument
/plugin/findologicxmlexport/vendor/hoa/file/Link/
H A DRead.php219 * @param int $offset Offset.
222 public function readAll($offset = 0) argument
224 return stream_get_contents($this->getStream(), -1, $offset);
/plugin/findologicxmlexport/vendor/hoa/protocol/Test/Unit/
H A DWrapper.php429 public function _case_stream_seek_xxx($offset, $whence) argument
434 …$this->function->fseek = function ($resource, $offset, $whence) use (&$_resource, &$_offset, &$_wh…
436 $_offset = $offset;
439 return fseek($resource, $offset, $whence);
444 ->when($result = $wrapper->stream_seek($offset, $whence))
451 ->integer($offset)
/plugin/findologicxmlexport/vendor/hoa/protocol/
H A DWrapper.php297 * @param int $offset The stream offset to seek to.
307 public function stream_seek($offset, $whence = SEEK_SET) argument
309 return 0 === fseek($this->getStream(), $offset, $whence);
/plugin/findologicxmlexport/vendor/twig/twig/ext/twig/
H A Dtwig.c138 static zval *TWIG_GET_ARRAYOBJECT_ELEMENT(zval *object, zval *offset TSRMLS_DC) in TWIG_GET_ARRAYOBJECT_ELEMENT()
144 SEPARATE_ARG_IF_REF(offset); in TWIG_GET_ARRAYOBJECT_ELEMENT()
145 zend_call_method_with_1_params(&object, ce, NULL, "offsetget", &retval, offset); in TWIG_GET_ARRAYOBJECT_ELEMENT()
147 zval_ptr_dtor(&offset); in TWIG_GET_ARRAYOBJECT_ELEMENT()
161 static int TWIG_ISSET_ARRAYOBJECT_ELEMENT(zval *object, zval *offset TSRMLS_DC) in TWIG_ISSET_ARRAYOBJECT_ELEMENT()
167 SEPARATE_ARG_IF_REF(offset); in TWIG_ISSET_ARRAYOBJECT_ELEMENT()
168 zend_call_method_with_1_params(&object, ce, NULL, "offsetexists", &retval, offset); in TWIG_ISSET_ARRAYOBJECT_ELEMENT()
170 zval_ptr_dtor(&offset); in TWIG_ISSET_ARRAYOBJECT_ELEMENT()
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/
H A Dd3.min.js4 …{return arguments.length?(e="function"==typeof t?t:_l.get(t)||gi,n):e},n.offset=function(t){return… function
H A Djquery.min.js4offset={setOffset:function(a,b,c){var d,e,f,g,h,i,j,k=r.css(a,"position"),l=r(a),m={};"static"===k…
H A Dnv.d3.min.js2 …{p.left=void 0!==a.left?a.left:p.left,p.top=void 0!==a.top?a.top:p.top}},offset:{get:function(){re…
5 …turn{x:a.x,y:0,series:a.series,size:.01}})}]),u){var H=d3.layout.stack().offset(v).values(function…
6 …op-j.bottom;n=d3.select(this),a.utils.initSVG(n),w&&(b=d3.layout.stack().offset("zero").values(fun…
8offset(n).values(function(a){return a.values}).x(k).y(l).out(function(a,b,c){a.display={y:c,y0:b}}…
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
H A DTemplateTest.php627 public function offsetExists($offset) argument
632 public function offsetGet($offset) argument
634 return $this->offsetExists($offset) ? $this->data[$offset] : 'n/a';
637 public function offsetSet($offset, $value) argument
641 public function offsetUnset($offset) argument
750 public function offsetExists($offset) argument
755 public function offsetGet($offset) argument
757 return $this->children[$offset];
762 $this->children[$offset] = $value;
765 public function offsetUnset($offset) argument
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-token-stream/src/Token/
H A DStream.php517 * @param int $offset
527 * @param int $offset
533 public function offsetGet($offset) argument
539 $offset
544 return $this->tokens[$offset];
548 * @param int $offset
553 $this->tokens[$offset] = $value;
557 * @param int $offset
561 public function offsetUnset($offset) argument
567 $offset
[all …]
/plugin/findologicxmlexport/vendor/hoa/compiler/
H A DLl1.php451 if (false !== $offset = strrpos($match[1], "\n")) {
452 $column = $strlen - $offset - 1;
543 if (false !== $offset = strrpos($match[1], "\n")) {
544 $column = $strlen - $offset - 1;

1...<<21222324252627282930>>...35