/plugin/serverinfos/serverinfos/ |
H A D | style.css | 17 position: relative; 27 position: relative; 39 position: relative; 49 position: relative; 59 position: relative; 69 position: relative; 80 position: relative; 91 position: relative; 102 position: relative; 114 position: relative; [all …]
|
/plugin/combo/vendor/carica/phpcss/src/PhpCss/ |
H A D | Parser.php | 101 * position and return the matching one. 104 * lookahead position against all of the provided tokens. If a match is 118 * The position parameter may be provided to enforce a match on an 119 * arbitrary token stream position. Therefore unlimited lookahead is 123 * @param int $position 129 $expectedTokens, int $position = 0, bool $allowEndOfTokens = FALSE argument 133 return $this->lookahead(array($expectedTokens), $position, $allowEndOfTokens); 138 if ($allowEndOfTokens === TRUE && (!isset($this->_tokens[$position]))) { 143 if ($this->matchToken($position, $token)) { 144 return $this->_tokens[$position]; 159 endOfTokens(int $position = 0) global() argument 241 matchToken(int $position, int $type) global() argument 261 handleMismatch($expectedTokens, $position = 0) global() argument [all...] |
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/ |
H A D | StreamReader.php | 62 * The byte-offset position in the stream. 66 protected $position; variable in setasign\\Fpdi\\PdfParser\\StreamReader 69 * The byte-offset position in the buffer. 156 * Get the current position in the stream. 162 return $this->position; 183 * Gets a byte at a specific position in the buffer. 185 * If the position is invalid the method will return false. 187 * If the $position parameter is set to null the value of $this->offset will be used. 189 * @param int|null $position 192 public function getByte($position argument 214 readByte($position = null) global() argument 250 readBytes($length, $position = null) global() argument [all...] |
/plugin/combo/vendor/dragonmantank/cron-expression/src/Cron/ |
H A D | FieldFactory.php | 19 * Get an instance of a field object for a cron expression position 21 * @param int $position CRON expression position value to retrieve 24 * @throws InvalidArgumentException if a position is not valid 26 public function getField($position) argument 28 if (!isset($this->fields[$position])) { 29 switch ($position) { 31 $this->fields[$position] = new MinutesField(); 34 $this->fields[$position] = new HoursField(); 37 $this->fields[$position] [all...] |
H A D | CronExpression.php | 135 foreach ($this->cronParts as $position => $part) { 136 $this->setPart($position, $part); 145 * @param int $position The position of the CRON expression to set 151 public function setPart($position, $value) argument 153 if (!$this->fieldFactory->getField($position)->validate($value)) { 155 'Invalid CRON field value ' . $value . ' at position ' . $position 159 $this->cronParts[$position] = $value; 341 foreach (self::$order as $position) { [all...] |
/plugin/virtualkeyboard/vk/keyboard/ |
H A D | keyboard.css | 7 position: relative; 23 position: relative; 35 position: relative; 47 background-position: 0 -27px; 50 background-position: 0 -54px; 66 position: absolute; 79 position: absolute; 87 position: absolute; 99 position: relative; 220 position: absolute; [all …]
|
/plugin/bootswrapper/exe/help/ |
H A D | affix.txt | 4 The affix plugin toggles ''position: fixed;'' on and off, emulating the effect found with ''positio… 9 <affix offset-top="50" position-top="100" position-right="20"> 16 <affix offset-top="50" position-top="100" position-right="20"> 27 | ''position-top'' | optional | Top position of Affix element (in ''px|em|%'') | 28 | ''position-bottom'' | optional | Bottom position of Affix element (in ''px|em|%'') | 29 | ''position-left'' | optional | Left position of Affix element (in ''px|em|%'') | 30 | ''position-right'' | optional | Right position of Affix element (in ''px|em|%'') |
|
/plugin/ifauthex/lib/ |
H A D | tokenizer.php | 24 function mb_preg_match($text, $matchRegex, $position=0) { argument 27 $textPiece = mb_substr($text, $position); 42 function sb_preg_match($text, $matchRegex, $position=0) { argument 53 if ($matchOfs > $position) { 91 public function tryMatch($text, $position) { argument 93 return mb_preg_match($text, $this->_matchRegex, $position); 113 $this->_position = $position; 119 public function position() { return $this->_position; } function in AST\\TokenInstance 143 for ($position = 0; $position < $textLen; $position += $foundTokInst->length()) { 146 $match = $tokDef->tryMatch($text, $position); [all …]
|
H A D | parser.php | 465 $position = self::_spliceNone($args, $position, $this); 473 $position = self::_splicePrefix($args, $position, $chainLength, $this); 479 $position = self::_splicePrefix($args, $position, $chainLength, $this); 483 $position = self::_splicePrefix($args, $position, $this->arity(), $this); 491 $position = self::_splicePostfix($args, $position + 1, $chainLength, $this); 497 $position = self::_splicePostfix($args, $position + 1, $chainLength, $this); 501 $position = self::_splicePostfix($args, $position + 1, $this->arity(), $this); 509 $position = self::_spliceInfix($args, $position + 1, $chainLength, $this); 515 $position = self::_spliceInfix($args, $position + 1, $chainLength, $this); 519 $position = self::_spliceInfix($args, $position + 1, $this->arity() - 1, $this); [all …]
|
/plugin/combo/resources/theme/default/components/css/ |
H A D | position.css | 1 .position-static { 2 position: static!important 5 .position-relative { 6 position: relative!important 9 .position-absolute { 10 position: absolute!important 13 .position-fixed { 14 position: fixed!important 17 .position-sticky { 18 position [all...] |
/plugin/aichat/vendor/vanderlee/php-sentence/src/ |
H A D | Multibyte.php | 82 $position = 0; 86 $parts[] = self::makePart($string, $position, null, $offset_capture); 91 $parts[] = self::makePart($string, $position, $length[0], $offset_capture); 94 $position += $length[0]; 137 * @param integer $position 142 private static function makePart($string, $position, $length = null, $offset_capture = false) 144 $cut = mb_strcut($string, $position, $length); 147 ? [$cut, $position] 166 $position = 0; 167 while ($position < 140 makePart($string, $position, $length = null, $offset_capture = false) global() argument [all...] |
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/ |
H A D | TestSuiteIterator.php | 19 protected $position; variable in PHPUnit_Util_TestSuiteIterator 39 $this->position = 0; 49 return $this->position < count($this->tests); 59 return $this->position; 69 return $this->valid() ? $this->tests[$this->position] : null; 77 $this->position++; 88 $this->tests[$this->position] 99 return $this->tests[$this->position] instanceof PHPUnit_Framework_TestSuite;
|
/plugin/findologicxmlexport/vendor/doctrine/lexer/lib/Doctrine/Common/Lexer/ |
H A D | AbstractLexer.php | 57 private $position = 0; variable in Doctrine\\Common\\Lexer\\AbstractLexer 109 $this->position = 0; 129 public function resetPosition($position = 0) argument 131 $this->position = $position; 137 * @param integer $position 141 public function getInputUntilPosition($position) argument 143 return substr($this->input, 0, $position); 179 $this->lookahead = (isset($this->tokens[$this->position])) 180 ? $this->tokens[$this->position++] : null; 219 if (isset($this->tokens[$this->position + $this->peek])) { [all …]
|
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Node/ |
H A D | Iterator.php | 21 private $position; variable in SebastianBergmann\\CodeCoverage\\Node\\Iterator 41 $this->position = 0; 51 return $this->position < count($this->nodes); 61 return $this->position; 71 return $this->valid() ? $this->nodes[$this->position] : null; 79 $this->position++; 90 $this->nodes[$this->position] 101 return $this->nodes[$this->position] instanceof Directory;
|
/plugin/diagramsnet/lib/styles/ |
H A D | grapheditor.css | 44 position:absolute; 133 position:absolute; 365 position:absolute; 440 position:absolute; 499 position:absolute; 512 position:absolute; 517 position:absolute; 928 position: relative; 1145 position: relative; 1151 position: absolute; [all …]
|
/plugin/statdisplay/pchart/ |
H A D | DataDescription.php | 11 public function __construct($position, $xFormat, $yFormat, $xUnit, $yUnit) { argument 12 $this->position = $position; 25 public function setPosition($position) { argument 26 if (!is_string($position)) { 30 $this->position = $position; 34 return $this->position; 108 private $position; variable in DataDescription
|
/plugin/statistics/inc/pchart/ |
H A D | DataDescription.php | 11 public function __construct($position, $xFormat, $yFormat, $xUnit, $yUnit) { argument 12 $this->position = $position; 25 public function setPosition($position) { argument 26 if(!is_string($position)) { 30 $this->position = $position; 34 return $this->position; 108 private $position; variable in DataDescription
|
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/_files/ |
H A D | TestIterator.php | 5 protected $position = 0; variable in TestIterator 14 $this->position = 0; 19 return $this->position < count($this->array); 24 return $this->position; 29 return $this->array[$this->position]; 34 $this->position++;
|
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Ast/Visitor/ |
H A D | Css.php | 203 Ast\Value\Position $position 205 $repeatsOddEven = $position->repeat === 2; 206 if ($repeatsOddEven && $position->add === 1) { 208 } elseif ($repeatsOddEven && $position->add === 0) { 210 } elseif ($position->repeat === 0) { 211 $this->_buffer .= $position->add; 212 } elseif ($position->repeat === 1) { 214 if ($position->add !== 0) { 215 $this->_buffer .= $position->add >= 0 216 ? '+'.$position 202 visitValuePosition(Ast\\Value\\Position $position) global() argument [all...] |
/plugin/amcharts/assets/ |
H A D | js-yaml.min.js | 2 …position=0,this.line=0,this.lineStart=0,this.lineIndent=0,this.documents=[]}function l(e,t){return…
|
/plugin/c3chart/assets/ |
H A D | js-yaml.min.js | 2 …position<=i.index&&s<0&&(s=o.length-2);s<0&&(s=o.length-1);var u,p,f="",d=Math.min(e.line+t.linesA… property in le.n
|
/plugin/achart/assets/ |
H A D | js-yaml.min.js | 2 …position<=i.index&&s<0&&(s=o.length-2);s<0&&(s=o.length-1);var u,p,f="",d=Math.min(e.line+t.linesA… property in le.n
|
/plugin/codemirror/dist/modes/ |
H A D | properties.min.js | 1 …position="def"}}if(d&&!b.nextMultiline){b.inMultiline=false;b.position="def"}if(c){while(a.eatSpac…
|
/plugin/imageflow/ |
H A D | style.css | 31 position: relative; 40 position: absolute; 48 position:relative; 61 position:absolute; 73 position:absolute; 84 position:absolute; 99 position: absolute; 111 position: absolute; 116 position: absolute; 164 position:absolute; [all …]
|
/plugin/eventline/timeline_js/ |
H A D | timeline-bundle.css | 14 position:absolute; 26 position:absolute; 70 position: absolute; 96 position:absolute; 109 position:absolute; 122 position: absolute; 128 position: absolute; 135 position: absolute; 166 position: relative; 171 position: absolute; [all …]
|