Home
last modified time | relevance | path

Searched refs:name (Results 26 – 50 of 595) sorted by relevance

12345678910>>...24

/template/twigstarter/vendor/twig/twig/src/
H A DTwigTest.php27 private $name; variable in Twig\\TwigTest
35 * @param string $name Name of this test
39 public function __construct(string $name, $callable = null, array $options = []) argument
45 $this->name = $name;
58 return $this->name;
H A DParser.php217 public function pushBlockStack($name) argument
219 $this->blockStack[] = $name;
222 public function hasBlock($name) argument
224 return isset($this->blocks[$name]);
227 public function getBlock($name) argument
229 return $this->blocks[$name];
237 public function hasMacro($name) argument
239 return isset($this->macros[$name]);
242 public function setMacro($name, MacroNode $node) argument
244 $this->macros[$name] = $node;
[all …]
H A DTwigFunction.php28 private $name; variable in Twig\\TwigFunction
36 * @param string $name Name of this function
40 public function __construct(string $name, $callable = null, array $options = []) argument
46 $this->name = $name;
62 return $this->name;
H A DTwigFilter.php28 private $name; variable in Twig\\TwigFilter
36 * @param string $name Name of this filter
40 public function __construct(string $name, $callable = null, array $options = []) argument
46 $this->name = $name;
64 return $this->name;
/template/icke/
H A Dfunctions.php5 function icke_getFile($name) { argument
6 return file_exists(DOKU_TPLINC . 'local/' . $name) ?
7 'local/' . $name : $name;
88 function icke_navi($link,$name='',$class='',$popup='',$active=false,$sep=false){ argument
93 if($name == 'Settings') $liclass .= ' nomobile';
97 if(!$name && $link) $name = p_get_first_heading($link);
103 $liHTML .= '<a class="qnav_item '.$class.'" '.$link.'>'.hsc($name).'</a>';
/template/twigstarter/vendor/twig/twig/src/Profiler/
H A DProfile.php27 private $name; variable in Twig\\Profiler\\Profile
33 …public function __construct(string $template = 'main', string $type = self::ROOT, string $name = '… argument
41 $this->name = 0 === strpos($name, '__internal_') ? 'INTERNAL' : $name;
57 return $this->name;
181 … return [$this->template, $this->name, $this->type, $this->starts, $this->ends, $this->profiles];
189 …list($this->template, $this->name, $this->type, $this->starts, $this->ends, $this->profiles) = $da…
/template/twigstarter/vendor/twig/twig/src/Error/
H A DSyntaxError.php25 * @param string $name The original name of the item that does not exist
28 public function addSuggestions($name, array $items) argument
32 $lev = levenshtein($name, $item);
33 if ($lev <= \strlen($name) / 3 || false !== strpos($item, $name)) {
/template/twigstarter/vendor/twig/twig/src/Profiler/Dumper/
H A DBlackfireDumper.php36 foreach ($data as $name => $values) {
37 $str .= "{$name}//{$values['ct']} {$values['wt']} {$values['mu']} {$values['pmu']}\n";
47 $name = $p->getTemplate();
49 $name = sprintf('%s::%s(%s)', $p->getTemplate(), $p->getType(), $p->getName());
51 $this->dumpProfile(sprintf('%s==>%s', $parent, $name), $p, $data);
52 $this->dumpChildren($name, $p, $data);
/template/twigstarter/
H A Dcomposer.lock10 "name": "symfony/polyfill-ctype",
38 "name": "symfony/polyfill",
56 "name": "Gert de Pagter",
60 "name": "Symfony Community",
120 "name": "symfony/polyfill",
138 "name": "Nicolas Grekas",
175 "name": "symfony/polyfill-php72",
215 "name": "Nicolas Grekas",
251 "name": "twig/twig",
300 "name": "Twig Team",
[all …]
H A DTemplateController.php178 * @param string $name
182 public function __call($name, $arguments) argument
184 if (function_exists($name)) {
186 $return = call_user_func_array($name, $arguments);
194 throw new BadFunctionCallException("Function $name() does not exist");
/template/mikio/inc/
H A Dsimple_html_dom.php854 * [1] - tag name
856 * Matches the tag name consisting of zero or more words, colons,
859 * [2] - id name
861 * Optionally matches a id name, consisting of an "#" followed by
862 * the id name (one or more words and hyphens).
867 * followed by the class name (one or more words and hyphens)
912 * [1] - attribute name
917 * Note: Attributes can be negated with a "!" prefix to their name
969 function __get($name) argument
971 if (isset($this->attr[$name])) {
983 __set($name, $value) global() argument
1005 __isset($name) global() argument
1016 __unset($name) global() argument
1264 getAttribute($name) global() argument
1269 setAttribute($name, $value) global() argument
1274 hasAttribute($name) global() argument
1279 removeAttribute($name) global() argument
1332 getElementByTagName($name) global() argument
1337 getElementsByTagName($name, $idx = null) global() argument
2089 parse_attr($node, $name, & $space) global() argument
2295 __get($name) global() argument
2326 createElement($name, $value = null) global() argument
2346 getElementByTagName($name) global() argument
2351 getElementsByTagName($name, $idx = 1) global() argument
[all...]
/template/bootstrap3/inc/
H A Dsimple_html_dom.php850 * [1] - tag name
852 * Matches the tag name consisting of zero or more words, colons,
855 * [2] - id name
857 * Optionally matches a id name, consisting of an "#" followed by
858 * the id name (one or more words and hyphens).
863 * followed by the class name (one or more words and hyphens)
908 * [1] - attribute name
913 * Note: Attributes can be negated with a "!" prefix to their name
965 function __get($name) argument
967 if (isset($this->attr[$name])) {
979 __set($name, $value) global() argument
1001 __isset($name) global() argument
1012 __unset($name) global() argument
1260 getAttribute($name) global() argument
1265 setAttribute($name, $value) global() argument
1270 hasAttribute($name) global() argument
1275 removeAttribute($name) global() argument
1328 getElementByTagName($name) global() argument
1333 getElementsByTagName($name, $idx = null) global() argument
2083 parse_attr($node, $name, & $space) global() argument
2289 __get($name) global() argument
2320 createElement($name, $value = null) global() argument
2340 getElementByTagName($name) global() argument
2345 getElementsByTagName($name, $idx = 1) global() argument
[all...]
/template/twigstarter/vendor/twig/twig/src/Node/Expression/
H A DTestExpression.php19 public function __construct(Node $node, string $name, ?Node $arguments, int $lineno) argument
26 parent::__construct($nodes, ['name' => $name], $lineno);
31 $name = $this->getAttribute('name');
32 $test = $compiler->getEnvironment()->getTest($name);
34 $this->setAttribute('name', $name);
H A DArrowFunctionExpression.php35 foreach ($this->getNode('names') as $i => $name) {
42 ->raw($name->getAttribute('name'))
49 foreach ($this->getNode('names') as $name) {
52 ->raw($name->getAttribute('name'))
54 ->raw($name->getAttribute('name'))
/template/twigstarter/vendor/twig/twig/src/TokenParser/
H A DFromTokenParser.php33 $name = $stream->expect(/* Token::NAME_TYPE */ 5)->getValue();
35 $alias = $name;
40 $targets[$name] = $alias;
52 foreach ($targets as $name => $alias) {
53 $this->parser->addImportedSymbol('function', $alias, 'macro_'.$name, $var);
H A DMacroTokenParser.php33 $name = $stream->expect(/* Token::NAME_TYPE */ 5)->getValue();
43 if ($value != $name) {
44 …yntaxError(sprintf('Expected endmacro for macro "%s" (but "%s" given).', $name, $value), $stream->…
50 …$this->parser->setMacro($name, new MacroNode($name, new BodyNode([$body]), $arguments, $lineno, $t…
H A DFilterTokenParser.php38 $name = $this->parser->getVarName();
39 …$ref = new BlockReferenceExpression(new ConstantExpression($name, $lineno), null, $lineno, $this->…
47 $block = new BlockNode($name, $body, $lineno);
48 $this->parser->setBlock($name, $block);
/template/notes/css/
H A D.rss.xsl.swp23name="src">� <audio controls="true" preload="none">� <xsl:if test="itunes:…
24name="class">� <xsl:attribute nam <xsl:attribute name="class">�…
/template/templar/js/
H A Dbootstrap-transition.js42 , name
44 for (name in transEndEventNames){
45 if (el.style[name] !== undefined) {
46 return transEndEventNames[name]
/template/twigstarter/vendor/twig/twig/src/NodeVisitor/
H A DSandboxNodeVisitor.php115 private function wrapNode(Node $node, string $name) argument
117 $expr = $node->getNode($name);
119 $node->setNode($name, new CheckToStringNode($expr));
123 private function wrapArrayNode(Node $node, string $name) argument
125 $args = $node->getNode($name);
126 foreach ($args as $name => $_) {
127 $this->wrapNode($args, $name);
H A DSafeAnalysisNodeVisitor.php96 $name = $node->getNode('filter')->getAttribute('value');
98 if (false !== $filter = $env->getFilter($name)) {
109 $name = $node->getAttribute('name');
111 $function = $env->getFunction($name);
124 $name = $node->getNode('node')->getAttribute('name');
125 if (\in_array($name, $this->safeVars)) {
/template/strap/class/
H A DTplUtility.php182 foreach ($crumbs as $id => $name) {
190 if ($name == "start") {
191 $name = "Home";
193 tpl_link(wl($id), hsc($name), 'title="' . $name . '"');
504 if ($name == null) {
507 if ($name == null) {
533 $name = $oldDefaultValue;
542 return $name;
828 $name = noNSorNS($id);
833 $name = $title;
[all …]
/template/comicslate/fonts/
H A Danime_ace_optim.svg1name=".notdef" horiz-adv-x="733" d="M700 703q-116-65-188.5-98T402 572q-20-4-31.5 5.5t-20.5 21-19.5…
/template/a_new_day/js/
H A Dprototype.js241 hash[name] = [hash[name]];
915 for (var name in headers)
916 this.transport.setRequestHeader(name, headers[name]);
956 getHeader: function(name) { argument
1273 if (t.values[name]) return t.values[name](element, name);
1274 if (t.names[name]) name = t.names[name];
1393 for (var name in style) {
1395 if(name == 'opacity') {
1921 if ((typeName && input.type != typeName) || (name && input.name != name))
2264 name = 'keydown';
[all …]
/template/battlehorse/js/
H A Dprototype.js241 hash[name] = [hash[name]];
915 for (var name in headers)
916 this.transport.setRequestHeader(name, headers[name]);
956 getHeader: function(name) { argument
1273 if (t.values[name]) return t.values[name](element, name);
1274 if (t.names[name]) name = t.names[name];
1393 for (var name in style) {
1395 if(name == 'opacity') {
1921 if ((typeName && input.type != typeName) || (name && input.name != name))
2264 name = 'keydown';
[all …]

12345678910>>...24