Home
last modified time | relevance | path

Searched refs:current (Results 1 – 25 of 210) sorted by relevance

123456789

/template/strap/vendor/salesforce/handlebars-php/src/Handlebars/
H A DTemplate.php128 $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 DContext.php258 $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/
DTokenStream.php24 private $current = 0; variable in Twig\\TokenStream
47 …y_merge(\array_slice($this->tokens, 0, $this->current), $tokens, \array_slice($this->tokens, $this…
55 if (!isset($this->tokens[++$this->current])) {
56 …throw new SyntaxError('Unexpected end of template.', $this->tokens[$this->current - 1]->getLine(),…
59 return $this->tokens[$this->current - 1];
69 return $this->tokens[$this->current]->test($primary, $secondary) ? $this->next() : null;
77 $token = $this->tokens[$this->current];
99 if (!isset($this->tokens[$this->current + $number])) {
100 …throw new SyntaxError('Unexpected end of template.', $this->tokens[$this->current + $number - 1]->…
103 return $this->tokens[$this->current + $number];
[all …]
/template/mikio/inc/
H A Dparens-parser.php10 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/twigstarter/vendor/twig/twig/src/Node/Expression/
DCallExpression.php357 $current = $this->getAttribute('twig_callable');
362 … $this->hasAttribute('callable') ? $this->getAttribute('callable') : $current->getCallable(),
364 …eeds_is_sandboxed') ? $this->getAttribute('needs_is_sandboxed') : self::needsIsSandboxed($current),
365 …> $this->hasAttribute('is_variadic') ? $this->getAttribute('is_variadic') : $current->isVariadic(),
367 …bute('dynamic_name') : $current->getDynamicName(), $this->hasAttribute('arguments') ? $this->getAt…
369 $this->hasAttribute('name') ? $this->getAttribute('name') : $current->getName(),
370 … $this->hasAttribute('callable') ? $this->getAttribute('callable') : $current->getCallable(),
372 …ibute('needs_environment') ? $this->getAttribute('needs_environment') : $current->needsEnvironment…
373 …s->hasAttribute('needs_context') ? $this->getAttribute('needs_context') : $current->needsContext(),
374 …s->hasAttribute('needs_charset') ? $this->getAttribute('needs_charset') : $current->needsCharset(),
[all …]
/template/readthedokus/js/
H A Dreadthedokus.js574 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 DInputStream.php84 $current = array_shift($this->input);
86 if ($current instanceof \Iterator) {
87 yield from $current;
89 yield $current;
H A DREADME.md20 * [Documentation](https://symfony.com/doc/current/components/process.html)
21 * [Contributing](https://symfony.com/doc/current/contributing/index.html)
/template/twigstarter/vendor/twig/twig/src/Util/
DTemplateDirIterator.php23 public function current() function in Twig\\Util\\TemplateDirIterator
25 return file_get_contents(parent::current());
/template/boozurk/css/
Dboozurk-inline.css82 .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/strap/ComboStrap/
H A DBreadcrumbTag.php136 * @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 DArrayCaseInsensitive.php103 public function current() function in ComboStrap\\ArrayCaseInsensitive
105 return $this->iterator->current();
/template/twigstarter/vendor/twig/twig/src/Loader/
DChainLoader.php39 $current = $this->loaders;
41 $this->loaders = (static function () use ($current, $loader): \Generator {
42 yield from $current;
/template/strap/vendor/symfony/yaml/
H A DREADME.md9 * [Documentation](https://symfony.com/doc/current/components/yaml.html)
10 * [Contributing](https://symfony.com/doc/current/contributing/index.html)
/template/rtd_suterdev/js/
Dreadthedokus.js562 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/writr/
H A Dscript.js345 const current = getInlineHeightPx(iframe);
346 if (current === null) return;
350 if (lastApplied !== null && current === lastApplied) return;
353 const disqusHeight = current;
357 if (current < target) {
H A DSECURITY.md3 Security vulnerabilities can be reported for the current stable release and the `master` branch.
/template/twigstarter/vendor/twig/twig/src/ExpressionParser/Prefix/
DLiteralExpressionParser.php219 $current = $stream->getCurrent();
221 …entheses (unexpected token "%s" of value "%s".', $current->toEnglish(), $current->getValue()), $cu…
/template/strap/vendor/dragonmantank/cron-expression/tests/Cron/
H A DCronExpressionTest.php333 $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/ad-hominem/css/
H A Dplugins.less83 td.current { background-color: #dfd; }
89 td.current { background-color: #030; }
/template/mantinedoku/css/
D_recent.css87 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/strap/vendor/antlr/antlr4-php-runtime/src/Atn/SemanticContexts/
H A DAndOperator.php151 $candidate = $iterator->current();
156 $next = $iterator->current();
/template/strap/vendor/antlr/antlr4-php-runtime/src/Error/
H A DDefaultErrorStrategy.php691 $current = $currentSymbol;
694 if ($current->getType() === Token::EOF && $lookback !== null) {
695 $current = $lookback;
708 $current->getLine(),
709 $current->getCharPositionInLine()
/template/comicslate/css/
Dsearch.less47 div.current {
85 div.current::after {
/template/bootstrap3/
DSECURITY.md3 Security vulnerabilities can be reported for the current stable release and the `master` branch.

123456789