Home
last modified time | relevance | path

Searched refs:name (Results 1 – 25 of 817) sorted by relevance

12345678910>>...33

/template/twigstarter/vendor/twig/twig/src/Node/
DNode.php54 foreach ($nodes as $name => $node) {
56 …pported. You must pass a \Twig\Node\Node instance.', get_debug_type($node), $name, static::class));
77 foreach ($this->attributes as $name => $value) {
85 $attributes[] = \sprintf('%s: %s', $name, $v);
94 foreach ($this->nodes as $name => $node) {
95 $len = \strlen($name) + 6;
101 $repr .= \sprintf("\n %s: %s", $name, ltrim(implode("\n", $noderepr)));
110 foreach ($this->nodes as $name => $node) {
111 $this->nodes[$name] = clone $node;
147 public function hasAttribute(string $name): bool argument
[all …]
/template/twigstarter/vendor/twig/twig/src/Loader/
DFilesystemLoader.php127 public function getSourceContext(string $name): Source argument
129 if (null === $path = $this->findTemplate($name)) {
130 return new Source('', $name, '');
133 return new Source(file_get_contents($path), $name, $path);
136 public function getCacheKey(string $name): string argument
138 if (null === $path = $this->findTemplate($name)) {
152 public function exists(string $name) argument
154 $name = $this->normalizeName($name);
156 if (isset($this->cache[$name])) {
160 return null !== $this->findTemplate($name, false);
[all …]
DArrayLoader.php39 public function setTemplate(string $name, string $template): void argument
41 $this->templates[$name] = $template;
44 public function getSourceContext(string $name): Source argument
46 if (!isset($this->templates[$name])) {
47 throw new LoaderError(\sprintf('Template "%s" is not defined.', $name));
50 return new Source($this->templates[$name], $name);
53 public function exists(string $name): bool argument
55 return isset($this->templates[$name]);
58 public function getCacheKey(string $name): string argument
60 if (!isset($this->templates[$name])) {
[all …]
DChainLoader.php61 public function getSourceContext(string $name): Source argument
66 if (!$loader->exists($name)) {
71 return $loader->getSourceContext($name);
77 …throw new LoaderError(\sprintf('Template "%s" is not defined%s.', $name, $exceptions ? ' ('.implod…
80 public function exists(string $name): bool argument
82 if (isset($this->hasSourceCache[$name])) {
83 return $this->hasSourceCache[$name];
87 if ($loader->exists($name)) {
88 return $this->hasSourceCache[$name] = true;
92 return $this->hasSourceCache[$name] = false;
[all …]
/template/comicslate/fonts/
Ddsp_fetcher_optim.svg1name=".notdef" horiz-adv-x="1000" d="M0 0v1250l1000 1V0H0zm125 125h750v1000H125V125zm250 625H250v2…
Ddat_fest_comic_optim.svg1name=".notdef" horiz-adv-x="1536" d="M256 0v1280h1024V0H256zm32 32h960v1216H288V32z"/><glyph glyph…
Daxolotl_comic_optim.svg1name=".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/Util/
DReflectionCallable.php25 private $name; variable in Twig\\Util\\ReflectionCallable
38 $this->name = $r->class.'::'.$r->name;
51 if (str_contains($r->name, '{closure')) {
53 $this->name = 'Closure';
59 $callable = [$object, $r->name];
60 $this->name = get_debug_type($object).'::'.$r->name;
62 $callable = [$class->name, $r->name];
63 $this->name = $class->name.'::'.$r->name;
65 $callable = [\is_array($callable) ? $callable[0] : $class->name, $r->name];
66 $this->name = (\is_array($callable) ? $callable[0] : $class->name).'::'.$r->name;
[all …]
/template/twigstarter/vendor/twig/twig/src/
DTemplate.php122 * @param string $name The block name to display from the parent
126 public function displayParentBlock($name, array $context, array $blocks = []): void argument
128 foreach ($this->yieldParentBlock($name, $context, $blocks) as $data) {
139 * @param string $name The block name to display
144 …public function displayBlock($name, array $context, array $blocks = [], $useBlocks = true, ?self $… argument
146 … foreach ($this->yieldBlock($name, $context, $blocks, $useBlocks, $templateContext) as $data) {
157 * @param string $name The block name to render from the parent
163 public function renderParentBlock($name, array $context, array $blocks = []): string argument
171 $this->displayParentBlock($name, $context, $blocks);
177 foreach ($this->yieldParentBlock($name, $context, $blocks) as $data) {
[all …]
DEnvironment.php249 public function removeCache(string $name): void argument
251 $cls = $this->getTemplateClass($name);
252 $this->hotCache[$name] = $cls.'_'.bin2hex(random_bytes(16));
255 $this->cache->remove($name, $cls);
310 * @param string $name The name for which to calculate the template class name
315 public function getTemplateClass(string $name, ?int $index = null): string argument
317 … $key = ($this->hotCache[$name] ?? $this->getLoader()->getCacheKey($name)).$this->optionsHash;
325 * @param string|TemplateWrapper $name The template name
331 public function render($name, array $context = []): string argument
333 return $this->load($name)->render($context);
[all …]
DToken.php151 $name = 'EOF_TYPE';
154 $name = 'TEXT_TYPE';
157 $name = 'BLOCK_START_TYPE';
160 $name = 'VAR_START_TYPE';
163 $name = 'BLOCK_END_TYPE';
166 $name = 'VAR_END_TYPE';
169 $name = 'NAME_TYPE';
172 $name = 'NUMBER_TYPE';
175 $name = 'STRING_TYPE';
178 $name = 'OPERATOR_TYPE';
[all …]
DFileExtensionEscapingStrategy.php30 * @param string $name The template name
34 public static function guess(string $name) argument
36 if (\in_array(substr($name, -1), ['/', '\\'], true)) {
40 if (str_ends_with($name, '.twig')) {
41 $name = substr($name, 0, -5);
44 $extension = pathinfo($name, \PATHINFO_EXTENSION);
/template/twigstarter/vendor/twig/twig/src/Node/Expression/
DTempNameExpression.php21 public function __construct(string|int|null $name, int $lineno) argument
24 if ($name && \in_array(strtolower($name), ['true', 'false', 'none', 'null'], true)) {
25 throw new SyntaxError(\sprintf('You cannot assign a value to "%s".', $name), $lineno);
32 if (null !== $name && (\is_int($name) || ctype_digit($name))) {
33 $name = (int) $name;
34 } elseif (\in_array($name, self::RESERVED_NAMES, true)) {
35 $name = "\u{035C}".$name;
38 parent::__construct([], ['name' => $name], $lineno);
DNameExpression.php29 public function __construct(string $name, int $lineno) argument
35 …parent::__construct([], ['name' => $name, 'ignore_strict_check' => false, 'always_defined' => fals…
40 $name = $this->getAttribute('name');
45 if (isset($this->specialVars[$name]) || $this->getAttribute('always_defined')) {
50 ->string($name)
56 ->string($name)
58 ->string($name)
62 } elseif (isset($this->specialVars[$name])) {
63 $compiler->raw($this->specialVars[$name]);
67 ->string($name)
[all …]
/template/strap/vendor/salesforce/handlebars-php/src/Handlebars/Cache/
H A DAPC.php23 * @param string $name Cache id
27 public function get($name) argument
29 if (apc_exists($name)) {
30 return apc_fetch($name);
38 * @param string $name cache id
43 public function set($name, $value) argument
45 apc_store($name, $value);
51 * @param string $name Cache id
55 public function remove($name) argument
57 apc_delete($name);
H A DDummy.php25 * @param string $name Cache id
29 public function get($name) argument
31 if (array_key_exists($name, $this->cache)) {
32 return $this->cache[$name];
40 * @param string $name cache id
45 public function set($name, $value) argument
47 $this->cache[$name] = $value;
53 * @param string $name Cache id
57 public function remove($name) argument
59 unset($this->cache[$name]);
H A DDisk.php61 * @param string $name Name of the cache item
65 private function getPath($name) argument
68 $this->prefix . $name . $this->suffix;
74 * @param string $name Cache id
78 public function get($name) argument
80 $path = $this->getPath($name);
89 * @param string $name cache id
94 public function set($name, $value) argument
96 $path = $this->getPath($name);
104 * @param string $name Cache id
[all …]
/template/m1/
Dscript.js48 execute: function(action, name, callback) { argument
50 if(typeof name === 'function') {
51 callback = name;
52 name = 'sidr';
54 else if(!name) {
55 name = 'sidr';
59 var $menu = $('#' + name),
71 bodyClass = (name === 'sidr' ? 'sidr-open' : 'sidr-open ' + name + '-open');
83 methods.open(name);
124 sidrOpened = name;
[all …]
/template/strap/resources/background/
H A Dbackground1.svg10 <g id="Group_243" data-name="Group 243" transform="translate(-1838 1118)">
11 …<rect id="Rectangle_689" data-name="Rectangle 689" class="cls-1" width="89" height="75" transform=…
12 …<rect id="Rectangle_690" data-name="Rectangle 690" class="cls-1" width="89" height="75" transform=…
13 …<rect id="Rectangle_691" data-name="Rectangle 691" class="cls-1" width="89" height="75" transform=…
14 …<rect id="Rectangle_692" data-name="Rectangle 692" class="cls-1" width="89" height="75" transform=…
15 …<rect id="Rectangle_694" data-name="Rectangle 694" class="cls-1" width="89" height="75" transform=…
16 …<rect id="Rectangle_695" data-name="Rectangle 695" class="cls-1" width="89" height="75" transform=…
17 …<rect id="Rectangle_696" data-name="Rectangle 696" class="cls-1" width="89" height="75" transform=…
18 …<rect id="Rectangle_697" data-name="Rectangle 697" class="cls-1" width="89" height="75" transform=…
19 …<rect id="Rectangle_698" data-name="Rectangle 698" class="cls-1" width="89" height="75" transform=…
[all …]
/template/strap/vendor/salesforce/handlebars-php/src/Handlebars/Loader/
H A DFilesystemLoader.php79 * @param string $name template name
83 public function load($name) argument
85 if (!isset($this->_templates[$name])) {
86 $this->_templates[$name] = $this->loadFile($name);
89 return new HandlebarsString($this->_templates[$name]);
95 * @param string $name template name
100 protected function loadFile($name) argument
102 $fileName = $this->getFileName($name);
105 throw new \InvalidArgumentException('Template ' . $name . ' not found.');
114 * @param string $name template name
[all …]
/template/strap/vendor/salesforce/handlebars-php/src/Handlebars/
H A DHelpers.php76 foreach ($helpers as $name => $helper) {
77 $this->add($name, $helper);
85 * @param string $name helper name
91 public function add($name, $helper) argument
94 throw new InvalidArgumentException("$name Helper is not a callable.");
96 $this->helpers[$name] = $helper;
102 * @param string $name helper name
106 public function has($name) argument
108 return array_key_exists($name, $this->helpers);
114 * @param string $name helper name
[all …]
H A DHandlebars.php216 * @param string $name helper name
221 public function addHelper($name, $helper) argument
223 $this->getHelpers()->add($name, $helper);
229 * @param string $name helper name
232 public function getHelper($name) argument
234 return $this->getHelpers()->__get($name);
240 * @param string $name helper name
243 public function hasHelper($name) argument
245 return $this->getHelpers()->has($name);
251 * @param string $name helper name
[all …]
H A DCache.php24 * @param string $name Cache id
28 public function get($name); argument
33 * @param string $name cache id
38 public function set($name, $value); argument
43 * @param string $name Cache id
47 public function remove($name); argument
/template/strap/ComboStrap/
H A DMetadataSingleArrayStore.php57 foreach ($metadata::getOldPersistentNames() as $name) {
58 $value = $this->data[$name] ?? null;
61 unset($this->data[$name]);
92 public function getFromName(string $name, $default = null) argument
95 $value = $this->data[$name] ?? null;
102 public function setFromPersistentName(string $name, $value, $default = null) argument
104 $actualValue = $this->data[$name] ?? null;
109 $name = $this->toNormalizedKey($name);
112 unset($this->data[$name]);
115 $this->data[$name] = $value;
[all …]
H A DBrand.php45 * @param string $name
47 private function __construct(string $name) argument
50 $this->name = $name;
61 $this->brandDict = $brandDictionary[$this->name] ?? null;
62 switch ($this->name) {
167 private $name; variable in ComboStrap\\Brand
187 private static function getBrandNameFromAbbr(string $name) argument
199 if (isset(self::$BRAND_ABBR[$name])) {
200 return self::$BRAND_ABBR[$name];
202 return $name;
[all …]

12345678910>>...33