| /template/breeze/bower_components/modular-scale/stylesheets/ |
| D | _modular-scale-tests.scss | 3 @warn "function ms(): FAIL!"; 4 @debug "function ms(2, 16, $minor-sixth)"; 9 @warn "function ms(+): pass"; 14 @warn "function ms(): FAIL!"; 15 @debug "function ms(-2, 16, $minor-sixth)"; 20 @warn "function ms(-): pass"; 25 @warn "function ms() multi-base: FAIL!"; 26 @debug "function ms(2, 14 18, $major-second)"; 31 @warn "function ms(+) multi-base: pass"; 36 @warn "function ms() multi-base: FAIL!"; [all …]
|
| D | _modular-scale.scss | 12 @import "modular-scale/function"; 13 @import "modular-scale/function-list";
|
| /template/breeze/bower_components/gumby/sass/extensions/sassy-math/stylesheets/ |
| D | _math.scss | 20 @function rand() { 27 @function percent($number) { 34 @function exponent($base, $exponent) { 49 @function pow($base, $exponent) { 56 @function factorial($number) { 68 @function fact($number) { 77 @function maclaurin($start, $key, $number) { 97 @function taylor($number) { 107 //@function sin($number, $unit: 'deg') { 114 //@function cos($number, $unit: 'deg') { [all …]
|
| /template/twigstarter/vendor/twig/twig/src/Node/Expression/ |
| D | FunctionExpression.php | 27 public function __construct(TwigFunction|string $function, Node $arguments, int $lineno) argument 29 if ($function instanceof TwigFunction) { 30 $name = $function->getName(); 32 $name = $function; 38 if ($function instanceof TwigFunction) { 39 $this->setAttribute('twig_callable', $function);
|
| /template/twigstarter/vendor/twig/twig/src/ExpressionParser/Infix/ |
| D | FunctionExpressionParser.php | 51 $function = $parser->getFunction($name, $line); 53 if ($function->getParserCallable()) { 57 $node = ($function->getParserCallable())($parser, $fakeNode, $args, $line); 66 if (!isset($this->readyNodes[$class = $function->getNodeClass()])) { 74 return new $class($ready ? $function : $function->getName(), $args, $line);
|
| /template/twigstarter/vendor/twig/twig/src/Sandbox/ |
| D | SecurityPolicy.php | 102 foreach ($functions as $function) { 103 if (!\in_array($function, $this->allowedFunctions, true)) { 104 if (!$this->strict && 'parent' === $function) { 106 } elseif (!$this->strict && 'block' === $function) { 108 } elseif (!$this->strict && 'attribute' === $function) { 111 …w SecurityNotAllowedFunctionError(\sprintf('Function "%s" is not allowed.', $function), $function);
|
| /template/twigstarter/vendor/twig/twig/src/Extension/ |
| D | StagingExtension.php | 35 public function addFunction(TwigFunction $function): void argument 37 if (isset($this->functions[$function->getName()])) { 38 … throw new \LogicException(\sprintf('Function "%s" is already registered.', $function->getName())); 41 $this->functions[$function->getName()] = $function;
|
| /template/strap/ComboStrap/ |
| H A D | TreeVisit.php | 9 public static function visit(TreeNode $tree, Callable $function, int $level = 0) argument 11 call_user_func($function, $tree, $level); 15 self::visit($child, $function, $childLevel);
|
| /template/strap/resources/library/rrdiagram/0.9.4.1/ |
| H A D | rrdiagram.js.map | 1 …function.js","webpack:///./ui/rrelement.js","webpack:///../~/core-js/modules/_hide.js","webpack://…
|
| /template/twigstarter/ |
| D | TemplateController.php | 139 * @param string $function 143 public function callStatic($class, $function, $arguments = []) argument 155 if (!is_callable([$classname, $function])) { 156 throw new BadMethodCallException("No such method $class::$function"); 159 return call_user_func_array([$classname, $function], $arguments);
|
| /template/breeze/bower_components/modular-scale/stylesheets/modular-scale/ |
| D | _tests.scss | 4 // Test if the pow() function exists 5 @function ms-pow-exists() { 15 @function ms-gem-exists() {
|
| D | _function.scss | 1 // The main function that brings it all together 2 @function ms($Value: 0, $Bases: $ms-base, $Ratios: $ms-ratio) { 52 // Same function, different name, for good measure. 53 @function modular-scale($Value: 0, $Bases: $ms-base, $Ratios: $ms-ratio) {
|
| D | _pow.scss | 1 // If a native exponent function doesnt exist 3 @function ms-pow($Base, $Exponent) { 10 // This function doesnt support non-interger exponents.
|
| /template/breeze/bower_components/gumby/sass/functions/ |
| D | _grid-calc.scss | 5 @function oneCol($hybrid-grid: false) { 15 @function columns($num, $hybrid-grid: false){ 26 @function global-columns($desired_cols, $container_cols, $hybrid-grid: false){ 36 @function push_x($num, $first-child: false, $is-hybrid: false) { 55 @function pull_x($num, $width, $is-hybrid: false) { 65 @function centered($num, $hybrid-grid: false) { 75 @function number-as-word($number){
|
| /template/twigstarter/vendor/twig/twig/src/ |
| D | ExtensionSet.php | 169 public function addFunction(TwigFunction $function): void argument 172 …'Unable to add function "%s" as extensions have already been initialized.', $function->getName())); 175 $this->staging->addFunction($function); 200 foreach ($this->dynamicFunctions as $pattern => $function) { 204 return $function->withDynamicArguments($name, $function->getName(), $matches); 209 if (false !== $function = $callback($name)) { 210 return $function; 476 foreach ($extension->getFunctions() as $function) { 477 $this->functions[$name = $function->getName()] = $function; 479 …$this->dynamicFunctions['#^'.str_replace('\\*', '(.*?)', preg_quote($name, '#')).'$#'] = $function;
|
| /template/strap/vendor/symfony/deprecation-contracts/ |
| H A D | README.md | 4 A generic function and convention to trigger deprecation notices. 6 This package provides a single global function named `trigger_deprecation()` that triggers silenced… 11 The function requires at least 3 arguments: 26 `function trigger_deprecation() {}` in your application.
|
| /template/twigstarter/vendor/symfony/deprecation-contracts/ |
| D | README.md | 4 A generic function and convention to trigger deprecation notices. 6 This package provides a single global function named `trigger_deprecation()` that triggers silenced… 11 The function requires at least 3 arguments: 26 `function trigger_deprecation() {}` in your application.
|
| /template/arctic-mbo/ |
| D | script.js.old | 10 function addSbLeftTocToggle() { 32 function toggleSbLeftToc() { 49 function addSbRightTocToggle() { 71 function toggleSbRightToc() { 90 addInitEvent(function(){
|
| D | script.js.old2 | 10 function addSbLeftTocToggle() { 33 function toggleSbLeftToc() { 50 function addSbRightTocToggle() { 72 function toggleSbRightToc() { 91 jQuery(function(){
|
| /template/twigstarter/vendor/twig/twig/src/NodeVisitor/ |
| D | SafeAnalysisNodeVisitor.php | 137 $function = $node->getAttribute('twig_callable'); 140 $function = $env->getFunction($node->getAttribute('name')); 143 if ($function) { 144 $safe = $function->getSafe($node->getNode('arguments')); 146 … "%s::getSafe()" method should not return "null" anymore, return "[]" instead.', $function::class);
|
| /template/a_new_day/ |
| D | csshover3.htc | 24 window.CSSHover = (function(){ 51 // init, called once ondomcontentready via the exposed window.CSSHover function 52 init:function() { 65 parseStylesheet:function(sheet) { 93 parseCSSRule:function(rule, sheet) { 127 // exposed window.CSSHover function. 145 patch:function(node, type, className) { 174 unload:function() { 193 window.attachEvent('onbeforeunload', function(){ 210 function CSSHoverElement(node, type, className) { [all …]
|
| /template/simple/ |
| D | csshover3.htc | 24 window.CSSHover = (function(){ 51 // init, called once ondomcontentready via the exposed window.CSSHover function 52 init:function() { 65 parseStylesheet:function(sheet) { 93 parseCSSRule:function(rule, sheet) { 127 // exposed window.CSSHover function. 145 patch:function(node, type, className) { 174 unload:function() { 193 window.attachEvent('onbeforeunload', function(){ 210 function CSSHoverElement(node, type, className) { [all …]
|
| /template/vector20/static/3rd/vector/ |
| D | csshover.htc | 24 window.CSSHover = (function(){ 51 // init, called once ondomcontentready via the exposed window.CSSHover function 52 init:function() { 65 parseStylesheet:function(sheet) { 93 parseCSSRule:function(rule, sheet) { 127 // exposed window.CSSHover function. 145 patch:function(node, type, className) { 174 unload:function() { 193 window.attachEvent('onbeforeunload', function(){ 210 function CSSHoverElement(node, type, className) { [all …]
|
| /template/vector/static/3rd/vector/ |
| D | csshover.htc | 24 window.CSSHover = (function(){ 51 // init, called once ondomcontentready via the exposed window.CSSHover function 52 init:function() { 65 parseStylesheet:function(sheet) { 93 parseCSSRule:function(rule, sheet) { 127 // exposed window.CSSHover function. 145 patch:function(node, type, className) { 174 unload:function() { 193 window.attachEvent('onbeforeunload', function(){ 210 function CSSHoverElement(node, type, className) { [all …]
|
| /template/wikiweko/static/3rd/vector/ |
| H A D | csshover.htc | 24 window.CSSHover = (function(){ 51 // init, called once ondomcontentready via the exposed window.CSSHover function 52 init:function() { 65 parseStylesheet:function(sheet) { 93 parseCSSRule:function(rule, sheet) { 127 // exposed window.CSSHover function. 145 patch:function(node, type, className) { 174 unload:function() { 193 window.attachEvent('onbeforeunload', function(){ 210 function CSSHoverElement(node, type, className) { [all …]
|