| /template/strap/ComboStrap/ |
| H A D | ArrayCaseInsensitive.php | 53 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 D | CallStack.php | 309 $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 D | Status.php | 21 * @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 D | Group.php | 51 * @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/ |
| D | bootstrap-affix.js | 43 , 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 …]
|
| D | bootstrap-tooltip.js | 168 , 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 D | Cookie.php | 211 * @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/ |
| D | dokuwiki.svg | 4 <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 D | LexerIndexedCustomAction.php | 25 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 D | Double.php | 22 * @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 D | Single.php | 22 * @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 D | AbstractField.php | 90 $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/ |
| D | googleapp.svg | 1 …offset="0" stop-color="#00a0ff"/><stop offset=".007" stop-color="#00a1ff"/><stop offset=".26" stop…
|
| /template/boozurk/ |
| D | cooltips.js | 28 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/ |
| D | script.js | 50 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/ |
| D | gumby.skiplink.js | 15 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));
|
| D | gumby.fixed.js | 19 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 D | InputStream.php | 77 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 D | LexerActionExecutor.php | 104 * @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/ |
| D | Mbstring.php | 494 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 D | Attribute.php | 43 * @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/ |
| D | page-background.svg | 3 <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/ |
| D | page-background.svg | 3 <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/ |
| D | page-background.svg | 3 <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/ |
| D | page-background.svg | 3 <stop offset="0" stop-color="#dddddd" /> 4 <stop offset="0.1" stop-color="#eeeeee" /> 5 <stop offset="0.4" stop-color="#fbfaf9" />
|