Home
last modified time | relevance | path

Searched refs:offset (Results 1 – 25 of 284) sorted by relevance

12345678910>>...12

/template/strap/ComboStrap/
H A DArrayCaseInsensitive.php53 public function offsetSet($offset, $value): void argument
56 if (is_null($offset)) {
59 if (is_string($offset)) {
60 $lowerCaseOffset = strtolower($offset);
61 $this->_keyMapping[$lowerCaseOffset] = $offset;
62 $this->sourceArray[$offset] = $value;
70 public function offsetExists($offset): bool argument
72 if (is_string($offset)) $offset = strtolower($offset);
73 return isset($this->_keyMapping[$offset]);
76 public function offsetUnset($offset): void argument
[all …]
H A DCallStack.php309 $offset = $this->getActualOffset();
310 array_splice($this->callStack, $offset, 1, []);
318 $this->moveToOffset($offset);
321 array_splice($this->callStack, $offset, 1, []);
328 $this->moveToOffset($offset - 1);
593 $offset = $this->getActualOffset();
594 array_splice($this->callStack, $offset, 0, [$call->toCallArray()]);
598 $targetOffset = $offset + 1;
619 function moveToOffset($offset) argument
621 if ($offset < 0) {
[all …]
/template/strap/vendor/carica/phpcss/src/PhpCss/Scanner/
H A DStatus.php21 * @param integer $offset
24 abstract public function getToken(string $buffer, int $offset): ?Token; argument
46 * @param integer $offset
50 protected function matchPattern(string $buffer, int $offset, string $pattern): ?string { argument
52 $pattern, $buffer, $match, PREG_OFFSET_CAPTURE, $offset
57 $match[0][1] === $offset
64 protected function matchPatterns(string $buffer, int $offset, array $patterns): ?Token { argument
67 $buffer, $offset, $pattern
71 $type, $tokenString, $offset
78 protected function matchCharacters(string $buffer, int $offset, array $chars): ?Token { argument
[all …]
/template/strap/vendor/carica/phpcss/src/PhpCss/Ast/Selector/
H A DGroup.php51 * @param integer $offset
55 public function offsetExists($offset): bool { argument
56 return isset($this->_sequences[$offset]);
62 * @param integer $offset
66 public function offsetGet($offset): Sequence { argument
67 return $this->_sequences[$offset];
73 * @param integer|NULL $offset
78 public function offsetSet($offset, $value): void { argument
88 if (is_null($offset)) {
91 $this->_sequences[(int)$offset] = $value;
[all …]
/template/templar/js/
Dbootstrap-affix.js43 , position = this.$element.offset()
44 , offset = this.options.offset
45 , offsetBottom = offset.bottom
46 , offsetTop = offset.top
50 if (typeof offset != 'object') offsetBottom = offsetTop = offset
51 if (typeof offsetTop == 'function') offsetTop = offset.top()
52 if (typeof offsetBottom == 'function') offsetBottom = offset.bottom()
86 offset: 0 property
107 data.offset = data.offset || {}
109 data.offsetBottom && (data.offset.bottom = data.offsetBottom)
[all …]
Dbootstrap-tooltip.js168 , applyPlacement: function(offset, placement){ argument
178 .offset(offset)
186 offset.top = offset.top + height - actualHeight
193 if (offset.left < 0){
194 delta = offset.left * -2
195 offset.left = 0
196 $tip.offset(offset)
206 if (replace) $tip.offset(offset)
269 }, this.$element.offset())
/template/strap/vendor/php-webdriver/webdriver/lib/
H A DCookie.php211 * @param mixed $offset
215 public function offsetExists($offset) argument
217 return isset($this->cookie[$offset]);
221 * @param mixed $offset
225 public function offsetGet($offset) argument
227 return $this->offsetExists($offset) ? $this->cookie[$offset] : null;
231 * @param mixed $offset
236 public function offsetSet($offset, $value) argument
239 unset($this->cookie[$offset]);
241 $this->cookie[$offset] = $value;
[all …]
/template/mantinedoku/images/
Ddokuwiki.svg4 <stop stop-color="#d69c00" offset="0"/>
5 <stop stop-color="#ffe658" offset="1"/>
8 <stop stop-color="#00a423" offset="0"/>
9 <stop stop-color="#00b427" offset="1"/>
12 <stop stop-color="#00b62b" offset="0"/>
13 <stop stop-color="#a1d784" offset="1"/>
17 <stop stop-color="#ede1ae" offset="0"/>
18 <stop stop-color="#fefdfa" offset="1"/>
21 <stop stop-color="#fbf6f0" offset="0"/>
22 <stop stop-color="#e9dac7" offset="1"/>
[all …]
/template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/Actions/
H A DLexerIndexedCustomAction.php25 private $offset; variable in Antlr\\Antlr4\\Runtime\\Atn\\Actions\\LexerIndexedCustomAction
37 * @param int $offset The offset into the input {@see CharStream},
43 public function __construct(int $offset, LexerAction $action) argument
45 $this->offset = $offset;
59 return $this->offset;
109 return Hasher::hash($this->getActionType(), $this->offset, $this->action);
122 return $this->offset === $other->offset
/template/strap/vendor/carica/phpcss/src/PhpCss/Scanner/Status/Text/
H A DDouble.php22 * @param integer $offset
25 public function getToken(string $buffer, int $offset): ?Scanner\Token { argument
26 if ('"' === substr($buffer, $offset, 1)) {
28 Scanner\Token::DOUBLEQUOTE_STRING_END, '"', $offset
31 $tokenString = substr($buffer, $offset, 2);
34 Scanner\Token::STRING_ESCAPED_CHARACTER, $tokenString, $offset
38 $buffer, $offset, '([^\\\\"]+)S'
42 Scanner\Token::STRING_CHARACTERS, $tokenString, $offset
H A DSingle.php22 * @param integer $offset
25 public function getToken(string $buffer, int $offset): ?Scanner\Token { argument
26 if ("'" === substr($buffer, $offset, 1)) {
28 Scanner\Token::SINGLEQUOTE_STRING_END, "'", $offset
31 $tokenString = substr($buffer, $offset, 2);
34 Scanner\Token::STRING_ESCAPED_CHARACTER, $tokenString, $offset
38 $buffer, $offset, '([^\\\\\']+)S'
42 Scanner\Token::STRING_CHARACTERS, $tokenString, $offset
/template/strap/vendor/dragonmantank/cron-expression/src/Cron/
H A DAbstractField.php90 $offset = $range[0];
93 if ($dateValue < $offset || $dateValue > $to) {
97 if ($dateValue > $offset && 0 === $stepSize) {
101 for ($i = $offset; $i <= $to; $i+= $stepSize) {
124 list ($offset, $to) = explode('-', $expression);
132 $offset = $range[0];
135 $offset = $offset == '*' ? 0 : $offset;
136 for ($i = $offset; $i <= $to; $i += $stepSize) {
/template/comicslate/images/
Dgoogleapp.svg1offset="0" stop-color="#00a0ff"/><stop offset=".007" stop-color="#00a1ff"/><stop offset=".26" stop…
/template/boozurk/
Dcooltips.js28 offset = $this.offset();
31 if ( offset.left > ( jQuery(window).width() - 250 ) ) {
32 h_pos = offset.left - baloon.outerWidth() + ( $this.outerWidth() / 2 );
35 h_pos = offset.left + ( $this.outerWidth() / 2 );
39 baloon.css({top: offset.top - baloon.outerHeight() - 10, left: h_pos}).addClass(pin_pos);
/template/twentyfifteen/
Dscript.js50 topOffset = (sidebar.offset().top > 0) ? sidebar.offset().top : 0;
52 …} else if (! bottom && windowPos + windowHeight > sidebarHeight + sidebar.offset().top && sidebarH…
59 topOffset = (sidebar.offset().top > 0) ? sidebar.offset().top : 0;
61 } else if (! top && windowPos < sidebar.offset().top) {
67 topOffset = (sidebar.offset().top > 0) ? sidebar.offset().top : 0;
/template/breeze/bower_components/gumby/js/libs/ui/
Dgumby.skiplink.js15 this.offset = false;
49 this.offset = Gumby.selectAttr.apply(this.$el, ['offset']) || false;
81 this.targetPos = $target.offset().top;
109 if(!this.offset) {
114 var op = this.offset.substr(0, 1),
115 off = Number(this.offset.substr(1, this.offset.length));
Dgumby.fixed.js19 this.offset = 0;
57 this.offset = Number(Gumby.selectAttr.apply(this.$el, ['offset'])) || 0;
102 fixedPoint = this.fixedPointjQ ? this.fixedPoint.offset().top : this.fixedPoint,
108 pinPoint = this.pinPointjQ ? this.pinPoint.offset().top : this.pinPoint;
112 if(this.offset) { fixedPoint -= this.offset; }
161 'top' : this.$el.offset().top
178 this.measurements.left = this.$parent.offset().left;
197 return this.$el.offset().top;
/template/strap/vendor/antlr/antlr4-php-runtime/src/
H A DInputStream.php77 public function LA(int $offset) : int argument
79 if ($offset === 0) {
83 if ($offset < 0) {
85 $offset++;
88 $pos = $this->index + $offset - 1;
98 public function LT(int $offset) : int argument
100 return $this->LA($offset);
/template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DLexerActionExecutor.php104 * @param int $offset The current offset to assign to all position-dependent
110 public function fixOffsetBeforeMatch(int $offset) : self argument
121 … $updatedLexerActions[$i] = new LexerIndexedCustomAction($offset, $this->lexerActions[$i]);
172 $offset = $lexerAction->getOffset();
173 $input->seek($startIndex + $offset);
175 $requiresSeek = $startIndex + $offset !== $stopIndex;
/template/twigstarter/vendor/symfony/polyfill-mbstring/
DMbstring.php494 public static function mb_strpos($haystack, $needle, $offset = 0, $encoding = null) argument
498 return strpos($haystack, $needle, $offset);
512 return \iconv_strpos($haystack, $needle, $offset, $encoding);
515 public static function mb_strrpos($haystack, $needle, $offset = 0, $encoding = null) argument
519 return strrpos($haystack, $needle, $offset);
522 if ($offset != (int) $offset) {
523 $offset = 0;
524 } elseif ($offset = (int) $offset) {
525 if ($offset < 0) {
526 if (0 > $offset += self::mb_strlen($needle)) {
[all …]
/template/strap/vendor/carica/phpcss/src/PhpCss/Scanner/Status/Selector/
H A DAttribute.php43 * @param integer $offset
46 public function getToken(string $buffer, int $offset): ?Scanner\Token { argument
47 if ($token = $this->matchCharacters($buffer, $offset, $this->_tokenChars)) {
50 if ($token = $this->matchPatterns($buffer, $offset, $this->_tokenPatterns)) {
/template/codowik/images/
Dpage-background.svg3 <stop offset="0" stop-color="#dddddd" />
4 <stop offset="0.1" stop-color="#eeeeee" />
5 <stop offset="0.4" stop-color="#fbfaf9" />
/template/20cones/images/
Dpage-background.svg3 <stop offset="0" stop-color="#dddddd" />
4 <stop offset="0.1" stop-color="#eeeeee" />
5 <stop offset="0.4" stop-color="#fbfaf9" />
/template/mindthedark/images/
Dpage-background.svg3 <stop offset="0" stop-color="#dddddd" />
4 <stop offset="0.1" stop-color="#eeeeee" />
5 <stop offset="0.4" stop-color="#fbfaf9" />
/template/byu_2017_theme/images/
Dpage-background.svg3 <stop offset="0" stop-color="#dddddd" />
4 <stop offset="0.1" stop-color="#eeeeee" />
5 <stop offset="0.4" stop-color="#fbfaf9" />

12345678910>>...12