| /template/strap/vendor/salesforce/handlebars-php/src/Handlebars/ |
| H A D | Template.php | 128 $current = $tree[$index]; 132 && $current[Tokenizer::TYPE] == Tokenizer::T_ESCAPED 133 && $current[Tokenizer::NAME] === $stop 137 switch ($current[Tokenizer::TYPE]) { 139 $newStack = isset($current[Tokenizer::NODES]) 140 ? $current[Tokenizer::NODES] : []; 142 $buffer .= $this->section($context, $current); 146 $newStack = isset($current[Tokenizer::NODES]) ? 147 $current[Tokenizer::NODES] : []; 149 $buffer .= $this->inverted($context, $current); [all …]
|
| H A D | Context.php | 258 $current = current($this->stack); 267 return $current; 271 if (is_string($current) and $current == '') { 272 return $current; 274 $current = $this->findVariableInContext($current, $chunk, $strict); 277 return $current; 335 $current = current($this->dataStack); 337 if (!array_key_exists($variableName, $current)) { 347 return $current[$variableName];
|
| /template/twigstarter/vendor/twig/twig/src/ |
| D | TokenStream.php | 25 private $current = 0; variable in Twig\\TokenStream 41 …y_merge(\array_slice($this->tokens, 0, $this->current), $tokens, \array_slice($this->tokens, $this… 49 if (!isset($this->tokens[++$this->current])) { 50 …throw new SyntaxError('Unexpected end of template.', $this->tokens[$this->current - 1]->getLine(),… 53 return $this->tokens[$this->current - 1]; 63 if ($this->tokens[$this->current]->test($primary, $secondary)) { 73 $token = $this->tokens[$this->current]; 95 if (!isset($this->tokens[$this->current + $number])) { 96 …throw new SyntaxError('Unexpected end of template.', $this->tokens[$this->current + $number - 1]->… 99 return $this->tokens[$this->current + $number]; [all …]
|
| /template/mikio/inc/ |
| H A D | parens-parser.php | 10 protected $current = null; variable in ParensParser 31 $this->current = array(); 42 array_push($this->stack, $this->current); 43 $this->current = array(); 49 $t = $this->current; 51 $this->current = array_pop($this->stack); 53 $this->current[] = $t; 71 return $this->current; 82 $this->current[] = $buffer;
|
| /template/readthedokus/js/ |
| H A D | readthedokus.js | 574 let current = elem.parentNode; 576 while (current && !current.classList.contains("level1")) 578 if (current.classList.contains(level)) 580 return current.children[0]; 583 current = current.parentNode.parentNode; 647 let current = store; 653 if (current !== null && typeof current === "object" && keys[i] in current) 655 current = current[keys[i]]; 664 return ( found ? current : defaultValue);
|
| /template/strap/vendor/symfony/process/ |
| H A D | InputStream.php | 84 $current = array_shift($this->input); 86 if ($current instanceof \Iterator) { 87 yield from $current; 89 yield $current;
|
| H A D | README.md | 20 * [Documentation](https://symfony.com/doc/current/components/process.html) 21 * [Contributing](https://symfony.com/doc/current/contributing/index.html)
|
| /template/boozurk/css/ |
| D | boozurk-inline.css | 82 .current-menu-item a:hover, 84 .current-cat a:hover { 87 .current-menu-ancestor > a:after, 88 .current-menu-parent > a:after, 91 .current-menu-item > a, 93 .current-cat > a {
|
| /template/twigstarter/vendor/twig/twig/src/Util/ |
| D | TemplateDirIterator.php | 23 public function current() function in Twig\\Util\\TemplateDirIterator 25 return file_get_contents(parent::current());
|
| /template/strap/ComboStrap/ |
| H A D | BreadcrumbTag.php | 136 * @param bool $current 140 …public static function getLiHtmlOutput(MarkupPath $page, bool $current = false, bool $link = true)… argument 144 if ($current) { 154 if (FileSystems::exists($page->getPathObject()) && $current === false) {
|
| H A D | ArrayCaseInsensitive.php | 103 public function current() function in ComboStrap\\ArrayCaseInsensitive 105 return $this->iterator->current();
|
| /template/rtd_suterdev/js/ |
| D | readthedokus.js | 562 let current = elem.parentNode; 564 while (current && !current.classList.contains("level1")) 566 if (current.classList.contains(level)) 568 return current.children[0]; 571 current = current.parentNode.parentNode;
|
| /template/strap/vendor/symfony/yaml/ |
| H A D | README.md | 9 * [Documentation](https://symfony.com/doc/current/components/yaml.html) 10 * [Contributing](https://symfony.com/doc/current/contributing/index.html)
|
| /template/writr/ |
| D | script.js | 345 const current = getInlineHeightPx(iframe); 346 if (current === null) return; 350 if (lastApplied !== null && current === lastApplied) return; 353 const disqusHeight = current; 357 if (current < target) {
|
| D | SECURITY.md | 3 Security vulnerabilities can be reported for the current stable release and the `master` branch.
|
| /template/strap/vendor/dragonmantank/cron-expression/tests/Cron/ |
| H A D | CronExpressionTest.php | 333 $current = new DateTime('now'); 334 $next = $cron->getNextRunDate($current); 336 $this->assertEquals($current->format('Y-m-d H:i:00'), $nextPrev->format('Y-m-d H:i:s')); 346 $current = new DateTime('2011-09-27 10:10:54'); 347 …$this->assertEquals('2011-09-27 10:11:00', $cron->getNextRunDate($current)->format('Y-m-d H:i:s'));
|
| /template/mantinedoku/css/ |
| D | _recent.css | 87 a:has(img[title="Show differences to current revisions"]), 97 a:has(img[title="Show differences to current revisions"]) img, 104 a:has(img[title="Show differences to current revisions"])::before { 110 a:has(img[title="Show differences to current revisions"])::before { 114 a:hover:has(img[title="Show differences to current revisions"])::before {
|
| /template/ad-hominem/css/ |
| H A D | plugins.less | 83 td.current { background-color: #dfd; } 89 td.current { background-color: #030; }
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/Error/ |
| H A D | DefaultErrorStrategy.php | 691 $current = $currentSymbol; 694 if ($current->getType() === Token::EOF && $lookback !== null) { 695 $current = $lookback; 708 $current->getLine(), 709 $current->getCharPositionInLine()
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/SemanticContexts/ |
| H A D | AndOperator.php | 151 $candidate = $iterator->current(); 156 $next = $iterator->current();
|
| /template/comicslate/css/ |
| D | search.less | 47 div.current { 85 div.current::after {
|
| /template/mikio/inc/stemmechanics/lesserphp/ |
| H A D | lessc.inc.php | 2005 $current = $this->env; 2011 while ($current) { 2012 if ($isArguments && isset($current->arguments)) { 2013 return array('list', ' ', $current->arguments); 2016 if (isset($current->store[$name])) 2017 return $current->store[$name]; 2019 if (isset($current->storeParent)) 2020 $scope_secondary[] = $current->storeParent; 2022 if (isset($current->parent)) 2023 $current = $current->parent; [all …]
|
| /template/bootstrap3/ |
| D | SECURITY.md | 3 Security vulnerabilities can be reported for the current stable release and the `master` branch.
|
| /template/parabola/css/ |
| H A D | parabola-inline.css | 207 #access ul li.current-menu-item > a, /*#access ul li.current_page_parent > a, #access ul li.current… 209 #access ul li.current-menu-ancestor > a { 214 #access ul li.current-menu-item > a:hover, /*#access ul li.current_page_parent > a:hover, #access u… 216 #access ul li.current-menu-ancestor > a:hover { 500 .pagination .current {
|
| /template/notes/css/ |
| D | _search.less | 47 div.current { 87 div.current::after {
|