| /template/breeze/bower_components/gumby/sass/extensions/modular-scale/stylesheets/ |
| D | _modular-scale.scss | 25 // calculate values in using each base-size / ratio combination 34 // calculate values in using each base-size 43 // calculate values in using each ratio 58 // calculate values in using each base-size / ratio combination 61 // start with an empty list to place all values in 62 $scale-values: (); 73 $scale-values: append($scale-values, nth($base-size, $k)); 87 // and add the result to $scale-values 90 $scale-values: append($scale-values, $modular-scale); 94 // and add the result to $scale-values [all …]
|
| /template/twigstarter/vendor/twig/twig/src/ |
| D | Token.php | 67 * @param array|string|null $values The token value 71 public function test($type, $values = null) argument 73 if (null === $values && !\is_int($type)) { 74 $values = $type; 79 null === $values || 80 (\is_array($values) && \in_array($this->value, $values)) || 81 $this->value == $values
|
| /template/a_new_day/js/ |
| D | slider.js | 36 this.values = this.handles.map( function() { return 0 }); 65 this.allowedValues = this.options.values ? this.options.values.sortBy(Prototype.K) : false; 135 if((handleIdx>0) && (sliderValue<this.values[handleIdx-1])) 136 sliderValue = this.values[handleIdx-1]; 137 if((handleIdx < (this.handles.length-1)) && (sliderValue>this.values[handleIdx+1])) 138 sliderValue = this.values[handleIdx+1]; 141 this.values[handleIdx] = sliderValue; 142 this.value = this.values[0]; // assure backwards compat 151 this.setValue(this.values[handleIdx || this.activeHandleIdx || 0] + delta, 164 var v = this.values.sortBy(Prototype.K); [all …]
|
| /template/battlehorse/js/ |
| D | slider.js | 36 this.values = this.handles.map( function() { return 0 }); 65 this.allowedValues = this.options.values ? this.options.values.sortBy(Prototype.K) : false; 135 if((handleIdx>0) && (sliderValue<this.values[handleIdx-1])) 136 sliderValue = this.values[handleIdx-1]; 137 if((handleIdx < (this.handles.length-1)) && (sliderValue>this.values[handleIdx+1])) 138 sliderValue = this.values[handleIdx+1]; 141 this.values[handleIdx] = sliderValue; 142 this.value = this.values[0]; // assure backwards compat 151 this.setValue(this.values[handleIdx || this.activeHandleIdx || 0] + delta, 164 var v = this.values.sortBy(Prototype.K); [all …]
|
| /template/strap/vendor/symfony/yaml/ |
| H A D | Parser.php | 161 …lf::preg_match('#^\-((?P<leadspaces>\s+)(?P<value>.+))?$#u', rtrim($this->currentLine), $values)) { 167 …if (isset($values['value']) && '&' === $values['value'][0] && self::preg_match(self::REFERENCE_PAT… 170 $values['value'] = $matches['value']; 173 … if (isset($values['value'][1]) && '?' === $values['value'][0] && ' ' === $values['value'][1]) { 178 if (isset($values['value']) && 0 === strpos(ltrim($values['value'], ' '), '-')) { 182 $sequenceIndentation = \strlen($values['leadspaces']) + 1; 187 …} elseif (!isset($values['value']) || '' == trim($values['value'], ' ') || 0 === strpos(ltrim($val… 189 … } elseif (null !== $subTag = $this->getLineTag(ltrim($values['value'], ' '), $flags)) { 196 isset($values['leadspaces']) 198 '!' === $values['value'][0] [all …]
|
| /template/twigstarter/vendor/twig/twig/src/Node/ |
| D | SetNode.php | 24 …public function __construct(bool $capture, Node $names, Node $values, int $lineno, string $tag = n… argument 26 …parent::__construct(['names' => $names, 'values' => $values], ['capture' => $capture, 'safe' => fa… 36 $values = $this->getNode('values'); 37 if ($values instanceof TextNode) { 38 …$this->setNode('values', new ConstantExpression($values->getAttribute('data'), $values->getTemplat…
|
| /template/twigstarter/vendor/twig/twig/src/Profiler/Dumper/ |
| D | BlackfireDumper.php | 36 foreach ($data as $name => $values) { 37 $str .= "{$name}//{$values['ct']} {$values['wt']} {$values['mu']} {$values['pmu']}\n";
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/Comparison/ |
| H A D | Hasher.php | 13 public static function hash(...$values) : int argument 15 return self::hashArray($values); 21 private static function hashArray(array $values) : int argument 24 foreach ($values as $value) {
|
| /template/twigstarter/vendor/twig/twig/src/TokenParser/ |
| D | SetTokenParser.php | 38 $values = $this->parser->getExpressionParser()->parseMultitargetExpression(); 42 if (\count($names) !== \count($values)) { 54 $values = $this->parser->subparse([$this, 'decideBlockEnd'], true); 58 return new SetNode($capture, $names, $values, $lineno, $this->getTag());
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/Utils/ |
| H A D | BitSet.php | 37 public function values() : array function in Antlr\\Antlr4\\Runtime\\Utils\\BitSet 47 return \min($this->values()); 52 return Hasher::hash(...$this->values()); 72 return \sprintf('{%s}', \implode(', ', $this->values()));
|
| H A D | Map.php | 156 $values = []; 159 $values[] = $key; 163 return $values; 171 $values = []; 174 $values[] = $value; 178 return $values;
|
| H A D | Set.php | 100 public function addAll(iterable $values) : void argument 102 foreach ($values as $value) { 187 $values = []; 190 $values[] = $value; 194 return $values;
|
| /template/strap/vendor/dragonmantank/cron-expression/src/Cron/ |
| H A D | AbstractField.php | 120 $values = array(); 137 $values[] = $i; 139 sort($values); 142 $values = array($expression); 145 return $values;
|
| /template/strap/ComboStrap/ |
| H A D | SqliteRequest.php | 78 $values = array_values($this->data); 79 $res = $this->executeParametrizedStatement($statement, $values); 238 private function executeParametrizedStatement(string $statement, array $values): \PDOStatement argument 241 $queryParametrized = array_merge([$statement], $values); 246 $values = array_values($values); 247 return $sqLiteAdapater->query($statement, $values);
|
| H A D | DatabasePageRow.php | 580 $values = []; 587 $values[$key] = $value; 603 $values[] = $rowId; 608 ->setQueryParametrized($updateStatement, $values); 636 $pageIdAbbr = $values[PageId::PAGE_ID_ABBR_ATTRIBUTE] ?? null; 638 $pageId = $values[PageId::getPersistentName()] ?? null; 643 $values[PageId::PAGE_ID_ABBR_ATTRIBUTE] = $pageIdAbbr; 663 $values[DokuwikiId::DOKUWIKI_ID_ATTRIBUTE] = $wikiPath->getWikiId(); 664 $values[PagePath::PROPERTY_NAME] = $wikiPath->toAbsoluteId(); 669 …$values[Canonical::PROPERTY_NAME] = Canonical::createForPage($this->markupPath)->getValueOrDefault… [all …]
|
| /template/twigstarter/vendor/twig/twig/src/Extension/ |
| D | CoreExtension.php | 362 function twig_cycle($values, $position) argument 364 if (!\is_array($values) && !$values instanceof \ArrayAccess) { 365 return $values; 368 return $values[$position % \count($values)]; 384 function twig_random(Environment $env, $values = null, $max = null) argument 386 if (null === $values) { 390 if (\is_int($values) || \is_float($values)) { 392 if ($values < 0) { 394 $min = $values; 396 $max = $values; [all …]
|
| /template/strap/ComboStrap/Meta/Api/ |
| H A D | MetadataMultiple.php | 121 $values = $this->toArrayOrNull($value); 122 if ($values === null) { 127 foreach ($values as $value) { 133 $this->array = $values;
|
| /template/breeze/bower_components/modular-scale/stylesheets/modular-scale/ |
| D | _generate-list.scss | 33 // Find values on a positive scale 36 // Find lower values on the scale 46 // Find higher possible values on the scale 54 // Find values on a negitive scale 57 // Find lower values on the scale 67 // Find higher possible values on the scale
|
| D | _function-list.scss | 1 // Outputs a list of values instead of a single value 10 // Generate a list of all possible values 36 // Generate a list of all possible values
|
| /template/strap/ComboStrap/Meta/Form/ |
| H A D | FormMetaField.php | 78 private array $values = []; variable in ComboStrap\\Meta\\Form\\FormMetaField 398 $this->values[] = $value; 443 switch (sizeof($this->values)) { 447 $value = $this->values[0]; 449 return $this->values[0]; 453 return $this->values; 515 $this->values = [];
|
| /template/mikio/inc/stemmechanics/lesserphp/ |
| H A D | lessc.inc.php | 933 $values = $this->assertMinArgs($args, 1, "min"); 935 $first_format = $values[0][2]; 938 $min_value = $values[0][1]; 940 for( $a = 0; $a < sizeof( $values ); $a++ ) 942 $converted = $this->convert( $values[$a], $first_format ); 947 $min_value = $values[$a][1]; 951 return $values[ $min_index ]; 955 $values = $this->assertMinArgs($args, 1, "max"); 957 $first_format = $values[0][2]; 960 $max_value = $values[0][1]; [all …]
|
| /template/gtopia/ |
| D | TwitterAPIExchange.php | 251 $values = array(); 255 $values[] = "$key=\"" . rawurlencode($value) . "\""; 258 $return .= implode(', ', $values);
|
| /template/icke/css/ |
| D | plugin_translation.css | 23 …3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.… 33 …3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0…
|
| /template/strap/ComboStrap/TagAttribute/ |
| H A D | Toggle.php | 47 $values = explode(" ", $value); 48 foreach ($values as $value) {
|
| /template/breeze/bower_components/modular-scale/ |
| D | readme.md | 5 A modular scale is a list of values that share the same relationship. These values are often used t… 7 …ly fall on your scale to create better relevance to your text as all the values in your layout har… 9 …r in-between values. This base size paired with a ratio such as the golden ratio or any musical pr… 38 * non-integer values work with the `ms()` function. (Compass only) 51 …les. `$ms-base` is usually your font size or `1em` and can have multiple values. `$ms-ratio` is th… 66 You can output a list to your terminal to help you find out what values are on your scale.
|