| /template/twigstarter/vendor/twig/twig/src/Node/ |
| D | MacroNode.php | 32 * @param ArrayExpression $arguments 34 public function __construct(string $name, Node $body, Node $arguments, int $lineno) argument 40 if (!$arguments instanceof ArrayExpression) { 41 …nstructor is deprecated ("%s" given).', ArrayExpression::class, static::class, $arguments::class)); 43 $args = new ArrayExpression([], $arguments->getTemplateLine()); 44 foreach ($arguments as $n => $default) { 47 $arguments = $args; 50 foreach ($arguments->getKeyValuePairs() as $pair) { 56 … parent::__construct(['body' => $body, 'arguments' => $arguments], ['name' => $name], $lineno); 67 $arguments = $this->getNode('arguments'); [all …]
|
| /template/strap/vendor/php-webdriver/webdriver/lib/Firefox/ |
| H A D | FirefoxOptions.php | 24 private $arguments = []; variable in Facebook\\WebDriver\\Firefox\\FirefoxOptions 64 * @param string[] $arguments 67 public function addArguments(array $arguments) argument 69 $this->arguments = array_merge($this->arguments, $arguments); 96 if (!empty($this->arguments)) { 97 $array[self::OPTION_ARGS] = $this->arguments;
|
| /template/a_new_day/js/ |
| D | builder.js | 49 if(arguments[1]) 50 if(this._isStringOrNumber(arguments[1]) || 51 (arguments[1] instanceof Array)) { 52 this._children(element, arguments[1]); 54 var attrs = this._attributes(arguments[1]); 64 for(attr in arguments[1]) 65 element[attr == 'class' ? 'className' : attr] = arguments[1][attr]; 73 if(arguments[2]) 74 this._children(element, arguments[2]); 127 return Builder.node.apply(Builder, [tag].concat($A(arguments)));
|
| /template/battlehorse/js/ |
| D | builder.js | 49 if(arguments[1]) 50 if(this._isStringOrNumber(arguments[1]) || 51 (arguments[1] instanceof Array)) { 52 this._children(element, arguments[1]); 54 var attrs = this._attributes(arguments[1]); 64 for(attr in arguments[1]) 65 element[attr == 'class' ? 'className' : attr] = arguments[1][attr]; 73 if(arguments[2]) 74 this._children(element, arguments[2]); 127 return Builder.node.apply(Builder, [tag].concat($A(arguments)));
|
| /template/twigstarter/vendor/twig/twig/src/ |
| D | AbstractTwigCallable.php | 24 private $arguments; variable in Twig\\AbstractTwigCallable 30 $this->arguments = []; 119 public function withDynamicArguments(string $name, string $dynamicName, array $arguments): self argument 124 $new->arguments = $arguments; 132 public function setArguments(array $arguments): void argument 136 $this->arguments = $arguments; 141 return $this->arguments; 191 …eds_context'] ? 1 : 0) + ($this->options['needs_is_sandboxed'] ? 1 : 0) + \count($this->arguments);
|
| /template/strap/vendor/php-webdriver/webdriver/lib/Chrome/ |
| H A D | ChromeOptions.php | 28 private $arguments = []; variable in Facebook\\WebDriver\\Chrome\\ChromeOptions 68 * @param array $arguments 71 public function addArguments(array $arguments) argument 73 $this->arguments = array_merge($this->arguments, $arguments); 147 if (!empty($this->arguments)) { 148 $options['args'] = $this->arguments;
|
| /template/twigstarter/ |
| D | TemplateController.php | 114 * @param array $arguments 117 public function newObj($class, $arguments = []) argument 129 return new $classname(...$arguments); 140 * @param array $arguments 143 public function callStatic($class, $function, $arguments = []) argument 159 return call_user_func_array([$classname, $function], $arguments); 179 * @param array $arguments 182 public function __call($name, $arguments) argument 186 $return = call_user_func_array($name, $arguments);
|
| /template/twigstarter/vendor/twig/twig/src/Node/Expression/FunctionNode/ |
| D | EnumCasesFunction.php | 23 $arguments = $this->getNode('arguments'); 24 if ($arguments->hasNode('enum')) { 25 $firstArgument = $arguments->getNode('enum'); 26 } elseif ($arguments->hasNode('0')) { 27 $firstArgument = $arguments->getNode('0'); 32 if (!$firstArgument instanceof ConstantExpression || 1 !== \count($arguments)) {
|
| D | EnumFunction.php | 23 $arguments = $this->getNode('arguments'); 24 if ($arguments->hasNode('enum')) { 25 $firstArgument = $arguments->getNode('enum'); 26 } elseif ($arguments->hasNode('0')) { 27 $firstArgument = $arguments->getNode('0'); 32 if (!$firstArgument instanceof ConstantExpression || 1 !== \count($arguments)) {
|
| /template/strap/vendor/php-webdriver/webdriver/lib/ |
| H A D | JavaScriptExecutor.php | 16 * @param array $arguments The arguments of the script. 19 public function executeScript($script, array $arguments = []); argument 31 * @param array $arguments The arguments of the script. 34 public function executeAsyncScript($script, array $arguments = []); argument
|
| H A D | WebDriverDispatcher.php | 67 * @param mixed $arguments 70 public function dispatch($method, $arguments) argument 73 call_user_func_array([$listener, $method], $arguments);
|
| /template/twigstarter/vendor/twig/twig/src/Util/ |
| D | CallableArgumentsExtractor.php | 41 public function extractArguments(Node $arguments): array argument 46 foreach ($arguments as $name => $node) { 77 $arguments = []; 107 $arguments = array_merge($arguments, $optionalArguments); 108 $arguments[] = $extractedArguments[$normalizedCallableParameterName]; 112 $arguments = array_merge($arguments, $optionalArguments); 113 $arguments[] = $extractedArguments[$pos]; 148 $arguments = array_merge($arguments, $optionalArguments); 149 $arguments[] = $arbitraryArguments; 172 return $arguments;
|
| /template/ospyramid/js/ |
| D | plugins.js | 6 log.history.push(arguments); 8 arguments.callee = arguments.callee.caller; 9 console.log( Array.prototype.slice.call(arguments) );
|
| /template/twigstarter/vendor/twig/twig/src/Node/Expression/Filter/ |
| D | DefaultFilter.php | 42 …public function __construct(Node $node, TwigFilter|ConstantExpression $filter, Node $arguments, in… argument 50 $default = new FilterExpression($node, $filter, $arguments, $node->getTemplateLine()); 53 …n($node, new TwigFilter('default', [CoreExtension::class, 'default']), $arguments, $node->getTempl… 58 …$false = \count($arguments) ? $arguments->getNode('0') : new ConstantExpression('', $node->getTemp… 65 parent::__construct($node, $filter, $arguments, $lineno);
|
| /template/breeze/bower_components/gumby/js/libs/ |
| D | gumby.js | 161 Gumby.prototype.log = function() { this.console('log', arguments); }; 162 Gumby.prototype.debug = function() { this.console('debug', arguments); }; 163 Gumby.prototype.warn = function() { this.console('warn', arguments); }; 164 Gumby.prototype.error = function() { this.console('error', arguments); }; 184 for(; i < arguments.length; i++) { 186 var attr = arguments[i], 187 dataAttr = 'data-'+arguments[i], 188 gumbyAttr = 'gumby-'+arguments[i];
|
| /template/twigstarter/vendor/twig/twig/src/Node/Expression/ |
| D | CallExpression.php | 128 …$arguments = (new CallableArgumentsExtractor($this, $this->getTwigCallable()))->extractArguments($… 129 foreach ($arguments as $node) { 144 protected function getArguments($callable, $arguments) argument 153 foreach ($arguments as $name => $node) { 180 $arguments = []; 209 $arguments = array_merge($arguments, $optionalArguments); 210 $arguments[] = $parameters[$name]; 214 $arguments = array_merge($arguments, $optionalArguments); 215 $arguments[] = $parameters[$pos]; 243 $arguments = array_merge($arguments, $optionalArguments); [all …]
|
| D | GetAttrExpression.php | 27 * @param ArrayExpression|NameExpression|null $arguments 29 …ctExpression $node, AbstractExpression $attribute, ?AbstractExpression $arguments, string $type, i… argument 32 if (null !== $arguments) { 33 $nodes['arguments'] = $arguments; 36 …if ($arguments && !$arguments instanceof ArrayExpression && !$arguments instanceof ContextVariable… 37 …nstructor is deprecated ("%s" given).', ArrayExpression::class, static::class, $arguments::class));
|
| D | TestExpression.php | 27 public function __construct(Node $node, string|TwigTest $test, ?Node $arguments, int $lineno) argument 34 if (null !== $arguments) { 35 $nodes['arguments'] = $arguments;
|
| /template/twigstarter/vendor/twig/twig/src/TokenParser/ |
| D | MacroTokenParser.php | 42 $arguments = $this->parseDefinition(); 57 … $this->parser->setMacro($name, new MacroNode($name, new BodyNode([$body]), $arguments, $lineno)); 74 $arguments = new ArrayExpression([], $this->parser->getCurrentToken()->getLine()); 78 if (\count($arguments)) { 99 $arguments->addElement($default, $name); 103 return $arguments;
|
| /template/strap/vendor/php-webdriver/webdriver/lib/Support/Events/ |
| H A D | EventFiringWebDriver.php | 125 * @param array $arguments 129 public function executeScript($script, array $arguments = []) argument 140 $result = $this->driver->executeScript($script, $arguments); 153 * @param array $arguments 157 public function executeAsyncScript($script, array $arguments = []) argument 168 $result = $this->driver->executeAsyncScript($script, $arguments); 390 protected function dispatch($method, ...$arguments) argument 396 $this->dispatcher->dispatch($method, $arguments);
|
| /template/twigstarter/vendor/twig/twig/src/ExpressionParser/Infix/ |
| D | SquareBracketExpressionParser.php | 36 $arguments = new ArrayExpression([], $lineno); 59 $arguments = new Nodes([$attribute, $length]); 60 $filter = new ($filter->getNodeClass())($expr, $filter, $arguments, $token->getLine()); 69 return new GetAttrExpression($expr, $attribute, $arguments, Template::ARRAY_CALL, $lineno);
|
| D | IsExpressionParser.php | 42 $arguments = null; 44 $arguments = $this->parseNamedArguments($parser); 46 $arguments = new Nodes([0 => $parser->parseExpression($this->getPrecedence())]); 62 …return new $class($expr, $ready ? $test : $test->getName(), $arguments, $stream->getCurrent()->get…
|
| D | DotExpressionParser.php | 44 $arguments = new ArrayExpression([], $lineno); 65 $arguments = $this->parseCallableArguments($parser, $token->getLine()); 78 …expr->getAttribute('name'), $expr->getTemplateLine()), 'macro_'.$name, $arguments, $expr->getTempl… 81 return new GetAttrExpression($expr, $attribute, $arguments, $type, $lineno, $nullSafe);
|
| D | FilterExpressionParser.php | 42 $arguments = new EmptyNode(); 44 $arguments = $this->parseNamedArguments($parser); 58 …ss($expr, $ready ? $filter : new ConstantExpression($filter->getName(), $line), $arguments, $line);
|
| /template/strap/vendor/symfony/process/ |
| H A D | PhpExecutableFinder.php | 96 $arguments = []; 98 $arguments[] = '-qrr'; 101 return $arguments;
|