| /template/strap/vendor/salesforce/handlebars-php/src/Handlebars/ |
| H A D | Helpers.php | 217 * @param array $args passed arguments to helper 223 public function helperIf($template, $context, $args, $source) argument 225 $tpl = $template->getEngine()->loadString('{{#if ' . $args . '}}' . $source . '{{/if}}'); 227 $tmp = $context->get($args); 249 $args = $this->parseArgs($context, substr($name, 7)); 259 if (isset($args[0]) && $args[0]) { 290 * @param array $args passed arguments to helper 296 public function helperEach($template, $context, $args, $source) argument 298 list($keyname, $slice_start, $slice_end) = $this->extractSlice($args); 385 * @param array $args passed arguments to helper [all …]
|
| H A D | Tokenizer.php | 173 $args = ''; 175 $args = $newBuffer[1]; 188 if (isset($args)) { 189 $t[self::ARGS] = $args; 193 unset($args);
|
| H A D | Template.php | 363 $args = $this->handlebars->getEscapeArgs(); 364 array_unshift($args, $value); 367 array_values($args)
|
| /template/sprintdoc/ |
| H A D | tpl.php | 70 * @param string[] $args HTML attributes for the item 73 static public function pageToolItem($link, $caption, $svg, $args = array()) { argument 74 if(blank($args['title'])) { 75 $args['title'] = $caption; 78 if(!blank($args['accesskey'])) { 79 $args['title'] .= ' [' . strtoupper($args['accesskey']) . ']'; 82 if(blank($args['rel'])) { 83 $args['rel'] = 'nofollow'; 86 $args['href'] = $link ?: '#'; 91 $attributes = buildAttributes($args, true);
|
| /template/taratasy/ |
| D | tpl_functions.local.php | 39 $args = tpl_getConf('nsWidth'); 40 if (empty($args)) return; 41 $args = explode(';', $args); 42 foreach ($args as $arg) {
|
| /template/strap/vendor/symfony/process/ |
| H A D | PhpExecutableFinder.php | 55 $args = $this->findArguments(); 56 $args = $includeArgs && $args ? ' '.implode(' ', $args) : ''; 60 return \PHP_BINARY.$args;
|
| /template/strap/vendor/php-webdriver/webdriver/lib/Remote/Service/ |
| H A D | DriverService.php | 29 private $args; variable in Facebook\\WebDriver\\Remote\\Service\\DriverService 44 * @param array $args 47 public function __construct($executable, $port, $args = [], $environment = null) argument 51 $this->args = $args; 174 ->setArguments($this->args) 180 $commandLine = array_merge([$this->executable], $this->args);
|
| /template/strap/vendor/symfony/deprecation-contracts/ |
| H A D | function.php | 23 function trigger_deprecation(string $package, string $version, string $message, ...$args): void argument 25 …(($package || $version ? "Since $package $version: " : '').($args ? vsprintf($message, $args) : $m…
|
| /template/twigstarter/vendor/symfony/deprecation-contracts/ |
| D | function.php | 23 …function trigger_deprecation(string $package, string $version, string $message, mixed ...$args): v… argument 25 …(($package || $version ? "Since $package $version: " : '').($args ? vsprintf($message, $args) : $m…
|
| /template/mikio/inc/stemmechanics/lesserphp/ |
| H A D | lessc.inc.php | 515 $this->zipSetArgs($block->args, $orderedArgs, $keywordArgs); 544 if (empty($block->args)) { 548 $remainingArgs = $block->args; 551 foreach ($block->args as $arg) { 594 if (isset($skip[$block->id]) && !isset($block->args)) { 645 protected function zipSetArgs($args, $orderedValues, $keywordValues) { argument 649 foreach ($args as $a) { 676 $last = end($args); 678 $rest = array_slice($orderedValues, count($args) - 1); 707 [, $path, $args, $suffix] = $prop; [all …]
|
| /template/twigstarter/vendor/twig/twig/src/ExpressionParser/Infix/ |
| D | ArgumentsTrait.php | 38 $args = []; 45 if ($args) { 74 $args[] = $value; 76 $args[$name] = $value; 81 return new Nodes($args);
|
| D | FunctionExpressionParser.php | 49 $args = $this->parseNamedArguments($parser, false); 57 $node = ($function->getParserCallable())($parser, $fakeNode, $args, $line); 74 return new $class($ready ? $function : $function->getName(), $args, $line);
|
| /template/strap/ComboStrap/ |
| H A D | TemplateEngine.php | 190 function ($template, $context, $args, $source) { 192 … $tagAttributes = TagAttributes::createFromTagMatch("<share $args/>", [], $knownType); 200 function ($template, $context, $args, $source) { 208 function ($template, Context $context, $args, $source) { 211 … $tagAttributes = TagAttributes::createFromTagMatch("<breadcrumb $args/>", $default, $knownType); 220 function ($template, Context $context, $args, $source) { 223 … $tagAttributes = TagAttributes::createFromTagMatch("<page-image $args/>", $default, $knownType);
|
| /template/strap/vendor/php-webdriver/webdriver/lib/Firefox/ |
| H A D | FirefoxDriverService.php | 30 $args = ['-p=' . $port]; 32 return new static($pathToExecutable, $port, $args);
|
| /template/strap/vendor/php-webdriver/webdriver/lib/Chrome/ |
| H A D | ChromeDriverService.php | 33 $args = ['--port=' . $port]; 35 return new static($pathToExecutable, $port, $args);
|
| /template/twigstarter/vendor/twig/twig/src/ |
| D | ExpressionParser.php | 229 $args = []; 235 if ($args) { 282 $args[$name] = $value; 285 $args[] = $value; 287 $args[$name] = $value; 293 return new Nodes($args);
|
| /template/twigstarter/vendor/twig/twig/src/Node/ |
| D | MacroNode.php | 43 $args = new ArrayExpression([], $arguments->getTemplateLine()); 45 $args->addElement($default, new LocalVariable($n, $default->getTemplateLine())); 47 $arguments = $args;
|
| /template/strap/ |
| H A D | cli.php | 208 $args = $options->getArgs(); 217 $startPath = $this->getStartPath($args); 234 $startPath = $this->getStartPath($args); 241 $startPath = $this->getStartPath($args); 571 private function getStartPath($args) argument 573 $sizeof = sizeof($args); 579 $startPath = $args[0];
|
| /template/twigstarter/vendor/twig/twig/src/Extension/ |
| D | CoreExtension.php | 1358 …public static function callMacro(Template $template, string $method, array $args, int $lineno, arr… argument 1364 return $parent->$method(...$args); 1371 return $template->$method(...$args); 2147 …public static function parseParentFunction(Parser $parser, Node $fakeNode, $args, int $line): Abst… argument 2163 …public static function parseBlockFunction(Parser $parser, Node $fakeNode, $args, int $line): Abstr… argument 2166 $args = (new CallableArgumentsExtractor($fakeNode, $fakeFunction))->extractArguments($args); 2168 return new BlockReferenceExpression($args[0], $args[1] ?? null, $line); 2174 …public static function parseAttributeFunction(Parser $parser, Node $fakeNode, $args, int $line): A… argument 2177 $args = (new CallableArgumentsExtractor($fakeNode, $fakeFunction))->extractArguments($args); 2188 … return new GetAttrExpression($args[0], $args[1], $args[2] ?? null, Template::ANY_CALL, $line);
|
| /template/strap/vendor/php-webdriver/webdriver/lib/Remote/ |
| H A D | RemoteWebDriver.php | 328 'args' => $this->prepareScriptArguments($arguments), 350 'args' => $this->prepareScriptArguments($arguments),
|
| /template/ospyramid/js/libs/ |
| D | jquery-1.6.1.js | 264 each: function( callback, args ) { argument 265 return jQuery.each( this, callback, args ); 611 each: function( object, callback, args ) { argument 616 if ( args ) { 619 if ( callback.apply( object[ name ], args ) === false ) { 625 if ( callback.apply( object[ i++ ], args ) === false ) { 790 var args = slice.call( arguments, 2 ), 792 return fn.apply( context, args.concat( slice.call( arguments ) ) ); 961 var args = arguments, 971 for ( i = 0, length = args.length; i < length; i++ ) { [all …]
|
| /template/twigstarter/vendor/twig/twig/src/NodeVisitor/ |
| D | EscaperNodeVisitor.php | 176 …$args = new Nodes([new ConstantExpression($type, $line), new ConstantExpression(null, $line), new … 178 return new FilterExpression($node, $filter, $args, $line);
|
| /template/strap/resources/firebug/ |
| H A D | firebug-lite-1.4.js | 198 this.bind=function(){var args=cloneArray(arguments),fn=args.shift(),object=args.shift(); 199 return function(){return fn.apply(object,arrayInsert(cloneArray(args),0,arguments)) 202 this.bindFixed=function(){var args=cloneArray(arguments),fn=args.shift(),object=args.shift(); 203 return function(){return fn.apply(object,args) 658 this.getBoxFromStyles=function(style,element){var args=this.readBoxStyles(style); 659 args.width=element.offsetWidth-(args.paddingLeft+args.paddingRight+args.borderLeft+args.borderRight… 660 args.height=element.offsetHeight-(args.paddingTop+args.paddingBottom+args.borderTop+args.borderBott… 661 return args 828 this.getElementByClass=function(node,className){var args=cloneArray(arguments); 829 args.splice(0,1); [all …]
|
| /template/a_new_day/js/ |
| D | prototype.js | 69 var __method = this, args = $A(arguments), object = args.shift(); 71 return __method.apply(object, args.concat($A(arguments))); 76 var __method = this, args = $A(arguments), object = args.shift(); 78 return __method.apply(object, [( event || window.event)].concat(args).concat($A(arguments))); 429 var args = $A(arguments).slice(1); 431 return value[method].apply(value, args); 495 var iterator = Prototype.K, args = $A(arguments); 496 if (typeof args.last() == 'function') 497 iterator = args.pop(); 499 var collections = [this].concat(args).map($A); [all …]
|
| /template/battlehorse/js/ |
| D | prototype.js | 69 var __method = this, args = $A(arguments), object = args.shift(); 71 return __method.apply(object, args.concat($A(arguments))); 76 var __method = this, args = $A(arguments), object = args.shift(); 78 return __method.apply(object, [( event || window.event)].concat(args).concat($A(arguments))); 429 var args = $A(arguments).slice(1); 431 return value[method].apply(value, args); 495 var iterator = Prototype.K, args = $A(arguments); 496 if (typeof args.last() == 'function') 497 iterator = args.pop(); 499 var collections = [this].concat(args).map($A); [all …]
|