/template/comicslate/fonts/ |
H A D | dsp_fetcher_optim.svg | 1 …name=".notdef" horiz-adv-x="1000" d="M0 0v1250l1000 1V0H0zm125 125h750v1000H125V125zm250 625H250v2…
|
H A D | dat_fest_comic_optim.svg | 1 …name=".notdef" horiz-adv-x="1536" d="M256 0v1280h1024V0H256zm32 32h960v1216H288V32z"/><glyph glyph…
|
H A D | axolotl_comic_optim.svg | 1 …name=".notdef" horiz-adv-x="1190" d="M146 59q619-59 862-36 49 407 17 863-179 27-835 48-50-424-44-8…
|
/template/twigstarter/vendor/twig/twig/src/Loader/ |
H A D | FilesystemLoader.php | 148 public function getCacheKey($name) argument 161 public function exists($name) argument 163 $name = $this->normalizeName($name); 165 if (isset($this->cache[$name])) { 194 $name = $this->normalizeName($name); 197 return $this->cache[$name]; 209 $this->validateName($name); 260 if (isset($name[0]) && '@' == $name[0]) { 271 return [$default, $name]; 280 $name = ltrim($name, '/'); [all …]
|
H A D | ArrayLoader.php | 49 $this->templates[$name] = $template; 52 public function getSourceContext($name) argument 54 $name = (string) $name; 55 if (!isset($this->templates[$name])) { 59 return new Source($this->templates[$name], $name); 62 public function exists($name) argument 64 return isset($this->templates[$name]); 67 public function getCacheKey($name) argument 69 if (!isset($this->templates[$name])) { 73 return $name.':'.$this->templates[$name]; [all …]
|
H A D | ChainLoader.php | 50 public function getSourceContext($name) argument 54 if (!$loader->exists($name)) { 68 public function exists($name) argument 70 if (isset($this->hasSourceCache[$name])) { 71 return $this->hasSourceCache[$name]; 75 if ($loader->exists($name)) { 83 public function getCacheKey($name) argument 87 if (!$loader->exists($name)) { 92 return $loader->getCacheKey($name); 101 public function isFresh($name, $time) argument [all …]
|
H A D | LoaderInterface.php | 27 * @param string $name The template logical name 33 public function getSourceContext($name); argument 38 * @param string $name The name of the template to load 44 public function getCacheKey($name); argument 49 * @param string $name The template name 57 public function isFresh($name, $time); argument 62 * @param string $name The name of the template to check if we can load 66 public function exists($name); argument
|
/template/twigstarter/vendor/twig/twig/src/Node/ |
H A D | Node.php | 30 private $name; variable in Twig\\Node\\Node 100 public function hasAttribute($name) argument 108 public function getAttribute($name) argument 118 * @param string $name 134 public function hasNode($name) argument 142 public function getNode($name) argument 148 return $this->nodes[$name]; 153 $this->nodes[$name] = $node; 156 public function removeNode($name) argument 158 unset($this->nodes[$name]); [all …]
|
H A D | MacroNode.php | 26 …public function __construct(string $name, Node $body, Node $arguments, int $lineno, string $tag = … argument 30 …variable "%s" is reserved for arbitrary arguments.', self::VARARGS_NAME, $name, self::VARARGS_NAME… 34 …parent::__construct(['body' => $body, 'arguments' => $arguments], ['name' => $name], $lineno, $tag… 46 foreach ($this->getNode('arguments') as $name => $default) { 48 ->raw('$__'.$name.'__ = ') 71 foreach ($this->getNode('arguments') as $name => $default) { 74 ->string($name) 75 ->raw(' => $__'.$name.'__')
|
/template/twigstarter/vendor/twig/twig/src/ |
H A D | Environment.php | 347 public function load($name) argument 350 return $name; 381 return $this->loadClass($this->getTemplateClass($name), $name, $index); 449 if (null !== $name) { 450 $name = sprintf('%s (string template %s)', $name, $hash); 505 foreach ($names as $name) { 507 return $name; 510 return $name; 794 public function getFilter($name) argument 846 public function getTest($name) argument [all …]
|
H A D | Template.php | 142 if (isset($this->traits[$name])) { 143 $this->traits[$name][0]->displayBlock($name, $context, $blocks, false); 165 $template = $blocks[$name][0]; 166 $block = $blocks[$name][1]; 167 } elseif (isset($this->blocks[$name])) { 168 $template = $this->blocks[$name][0]; 169 $block = $this->blocks[$name][1]; 203 } elseif (isset($blocks[$name])) { 265 * @param string $name The block name 273 if (isset($blocks[$name])) { [all …]
|
H A D | Token.php | 121 $name = 'EOF_TYPE'; 124 $name = 'TEXT_TYPE'; 130 $name = 'VAR_START_TYPE'; 133 $name = 'BLOCK_END_TYPE'; 136 $name = 'VAR_END_TYPE'; 139 $name = 'NAME_TYPE'; 142 $name = 'NUMBER_TYPE'; 145 $name = 'STRING_TYPE'; 148 $name = 'OPERATOR_TYPE'; 160 $name = 'ARROW_TYPE'; [all …]
|
H A D | FileExtensionEscapingStrategy.php | 30 * @param string $name The template name 34 public static function guess($name) argument 36 if (\in_array(substr($name, -1), ['/', '\\'])) { 40 if ('.twig' === substr($name, -5)) { 41 $name = substr($name, 0, -5); 44 $extension = pathinfo($name, \PATHINFO_EXTENSION);
|
H A D | TemplateWrapper.php | 63 * @param string $name The block name 66 public function hasBlock(string $name, array $context = []): bool argument 68 return $this->template->hasBlock($name, $context); 86 * @param string $name The block name to render 91 public function renderBlock(string $name, array $context = []): string argument 101 $this->template->displayBlock($name, $context); 116 * @param string $name The block name to render 119 public function displayBlock(string $name, array $context = []) argument 121 $this->template->displayBlock($name, $this->env->mergeGlobals($context));
|
H A D | ExpressionParser.php | 418 public function getFunctionNode($name, $line) argument 420 switch ($name) { 610 $name = null; 629 if (null === $name) { 633 $args[$name] = $value; 635 if (null === $name) { 638 $args[$name] = $value; 717 if ($test = $this->env->getTest($name)) { 718 return [$name, $test]; 723 $name = $name.' '.$this->parser->getCurrentToken()->getValue(); [all …]
|
H A D | ExtensionSet.php | 75 $class = (new \ReflectionClass($class))->name; 153 $class = (new \ReflectionClass($class))->name; 181 public function getFunction(string $name) argument 187 if (isset($this->functions[$name])) { 188 return $this->functions[$name]; 240 public function getFilter(string $name) argument 246 if (isset($this->filters[$name])) { 247 return $this->filters[$name]; 368 public function getTest(string $name) argument 374 if (isset($this->tests[$name])) { [all …]
|
H A D | Source.php | 22 private $name; variable in Twig\\Source 27 * @param string $name The template logical name 30 public function __construct(string $code, string $name, string $path = '') argument 33 $this->name = $name; 44 return $this->name;
|
/template/m1/ |
H A D | script.js | 51 callback = name; 52 name = 'sidr'; 54 else if(!name) { 55 name = 'sidr'; 71 bodyClass = (name === 'sidr' ? 'sidr-open' : 'sidr-open ' + name + '-open'); 124 sidrOpened = name; 127 callback(name); 169 callback(name); 225 var name = settings.name, 231 .attr('id', name) [all …]
|
/template/twigstarter/vendor/twig/twig/src/Error/ |
H A D | Error.php | 42 private $name; variable in Twig\\Error\\Error 63 $name = null; 66 $name = $source; 68 $name = $source->getName(); 74 $this->name = $name; 118 return $this->name ? new Source($this->sourceCode, $this->name, $this->sourcePath) : null; 130 $this->name = $source->getName(); 172 if ($this->name) { 173 …if (\is_string($this->name) || (\is_object($this->name) && method_exists($this->name, '__toString'… 174 $name = sprintf('"%s"', $this->name); [all …]
|
/template/twigstarter/vendor/twig/twig/src/Node/Expression/ |
H A D | NameExpression.php | 32 $name = $this->getAttribute('name'); 42 ->string($name) 48 ->string($name) 50 ->string($name) 55 $compiler->raw($this->specialVars[$name]); 59 ->string($name) 66 ->string($name) 72 ->string($name) 74 ->string($name) 76 ->string($name) [all …]
|
H A D | CallExpression.php | 124 if (!\is_int($name)) { 126 $name = $this->normalizeName($name); 131 $parameters[$name] = $node; 156 $name = $this->normalizeName($callableParameter->name); 158 if ('start' === $name) { 159 $name = 'low'; 161 $name = 'high'; 165 $names[] = $name; 181 unset($parameters[$name]); 241 protected function normalizeName($name) argument [all …]
|
H A D | FunctionExpression.php | 19 public function __construct(string $name, Node $arguments, int $lineno) argument 21 …parent::__construct(['arguments' => $arguments], ['name' => $name, 'is_defined_test' => false], $l… 26 $name = $this->getAttribute('name'); 27 $function = $compiler->getEnvironment()->getFunction($name); 29 $this->setAttribute('name', $name); 35 if ('constant' === $name && $this->getAttribute('is_defined_test')) {
|
/template/twigstarter/vendor/twig/twig/src/TokenParser/ |
H A D | BlockTokenParser.php | 36 $name = $stream->expect(/* Token::NAME_TYPE */ 5)->getValue(); 37 if ($this->parser->hasBlock($name)) { 38 …rintf("The block '%s' has already been defined line %d.", $name, $this->parser->getBlock($name)->g… 40 $this->parser->setBlock($name, $block = new BlockNode($name, new Node([]), $lineno)); 42 $this->parser->pushBlockStack($name); 49 if ($value != $name) { 50 …yntaxError(sprintf('Expected endblock for block "%s" (but "%s" given).', $name, $value), $stream->… 64 return new BlockReferenceNode($name, $lineno, $this->getTag());
|
/template/strap/bootstrap/ |
H A D | updateBootStrapCustom.yml | 3 - name: "SelectCss" 8 - name: "List" 14 - name 16 - name: "Print" 18 - name: "Json" 27 "file" : "${name}", 33 - name: "Transfer"
|
/template/ospyramid/js/libs/ |
H A D | jquery-1.6.1.js | 635 if ( callback.call( object[ name ], name, object[ name ] ) === false ) { 1607 name = attr[i].name; 1904 name = jQuery.propFix[ name ] || name; 2189 name = notxml && jQuery.attrFix[ name ] || name; 2237 name = jQuery.attrFix[ name ] || name; 2315 name = notxml && jQuery.propFix[ name ] || name; 6332 name = jQuery.camelCase( name ); 6334 name = jQuery.cssProps[ name ] || name; 6357 old[ name ] = elem.style[ name ]; 6365 elem.style[ name ] = old[ name ]; [all …]
|