Home
last modified time | relevance | path

Searched refs:spacing (Results 1 – 25 of 295) sorted by relevance

12345678910>>...12

/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Strings/
H A DConcatenationSpacingSniff.php39 public $spacing = 0; variable in Squiz_Sniffs_Strings_ConcatenationSpacingSniff
72 $this->spacing = (int) $this->spacing;
98 … if (($before === $this->spacing || ($before === 'newline' && $this->ignoreNewlines === true))
104 if ($this->spacing === 0) {
108 if ($this->spacing > 1) {
114 $data = array($this->spacing);
120 $padding = str_repeat(' ', $this->spacing);
125 if ($this->spacing === 0
133 } else if ($this->spacing > 0) {
142 if ($this->spacing === 0
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/
H A DFunctionSpacingSniff.php38 public $spacing = 2; variable in Squiz_Sniffs_WhiteSpace_FunctionSpacingSniff
65 $this->spacing = (int) $this->spacing;
91 $foundLines = $this->spacing;
98 $foundLines = $this->spacing;
104 if ($foundLines !== $this->spacing) {
106 if ($this->spacing !== 1) {
112 $this->spacing,
203 if ($foundLines !== $this->spacing) {
205 if ($this->spacing !== 1) {
211 $this->spacing,
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Formatting/
H A DSpaceAfterNotSniff.php67 $spacing = 0;
69 $spacing = $tokens[($stackPtr + 1)]['length'];
72 if ($spacing === 1) {
77 $fix = $phpcsFile->addFixableError($message, $stackPtr, 'Incorrect', array($spacing));
80 if ($spacing === 0) {
/plugin/authgooglesheets/vendor/google/apiclient-services/src/PlayableLocations/
H A DGoogleMapsPlayablelocationsV3SampleFilter.php47 public function setSpacing(GoogleMapsPlayablelocationsV3SampleSpacingOptions $spacing) argument
49 $this->spacing = $spacing;
56 return $this->spacing;
/plugin/combo/ComboStrap/
H A DSpacing.php9 const SPACING_ATTRIBUTE = "spacing";
19 $spacing = self::SPACING_ATTRIBUTE;
20 if ($attributes->hasComponentAttribute($spacing)) {
22 $spacingValue = $attributes->getValueAndRemove($spacing);
31 LogUtility::msg("We didn't apply the padding value ($spacingValue) on your svg or icon because it will make the icon invisible. Apply a margin or apply the spacing to the container component.", LogUtility::LVL_MSG_WARNING, SvgImageLink::CANONICAL);
52 // https://getbootstrap.com/docs/5.0/utilities/spacing/
H A DGridTag.php128 * as we give it the same spacing than
131 $spacing = "mb-3";
134 Spacing::SPACING_ATTRIBUTE => $spacing
438 $spacing = $childOpeningTag->getAttribute(Spacing::SPACING_ATTRIBUTE);
439 if ($spacing === null) {
/plugin/randomquote/
H A Dstyle.css5 letter-spacing: 3pt;
6 word-spacing: 4pt;
/plugin/bibtex/OSBib/create/
H A DTABLE.php32 …function tableStart($class = FALSE, $border = 0, $spacing = 0, $padding = 0, $align = "center", $w… argument
35 <table class="$class" border="$border" cellspacing="$spacing" cellpadding="$padding" align="$align"…
/plugin/diagramsnet/lib/img/lib/ibm/vpc/
H A DSubnetTag.svg1 …3" y="244.031" font-size="25.4" font-family="sans-serif" letter-spacing="0" word-spacing="0"><tspa…
/plugin/diagramsnet/lib/img/lib/cumulus/
H A Dddos_server.svg1 …7.132" y="6.753" font-size="40" font-family="sans-serif" letter-spacing="0" word-spacing="0" fill=…
H A Dswitch.svg1 …5.362" y="6.939" font-size="40" font-family="sans-serif" letter-spacing="0" word-spacing="0" fill=…
/plugin/s5/ui/i18n/
H A Dpretty.css22 #footer h1 {left: 0; font-size: 1em; letter-spacing: 1px;}
38 .slide h1 {font-size: 1.66em; line-height: 1; letter-spacing: -1px;
40 #slide0 h1 {border: none; font-size: 2.25em; letter-spacing: 0; margin: 3em 0 1.5em;}
/plugin/jdraw/src/com/mxgraph/examples/swing/resources/
H A Deditor_zh-CN.properties.bak74 spacing=Spacing
75 sourceSpacing=Source spacing
76 targetSpacing=target spacing
/plugin/fckg/action/entities/utils/
H A Dentities.txt65 spacing diaeresis
99 spacing macron
124 spacing acute
144 spacing cedilla
/plugin/ckgdoku/action/entities/utils/
H A Dentities.txt65 spacing diaeresis
99 spacing macron
124 spacing acute
144 spacing cedilla
/plugin/ckgedit/action/entities/utils/
H A Dentities.txt65 spacing diaeresis
99 spacing macron
124 spacing acute
144 spacing cedilla
/plugin/highlight2wiki/
H A Dstyle.css143 letter-spacing: -0.45px;
150 letter-spacing: -0.03px;
161 letter-spacing: -0.36px;
/plugin/diagramsnet/lib/plugins/trees/
H A Dtrees.js17 var spacing = 10;
515 clones[1].geometry.x += (after) ? cell.geometry.width + spacing :
516 -clones[1].geometry.width - spacing;
520 clones[1].geometry.y += (after) ? cell.geometry.height + spacing :
521 -clones[1].geometry.height - spacing;
540 bbox.x += ((after) ? cell.geometry.width + spacing :
541 -clones[1].geometry.width - spacing) * s;
545 bbox.y += ((after) ? cell.geometry.height + spacing :
546 -clones[1].geometry.height - spacing) * s;
572 dx = spacing + Math.max(dx, (Math.min(bbox.x + bbox.width,
[all …]
/plugin/emoji/
H A Dscreen.less21 letter-spacing: 0;
69 letter-spacing: .05em;
/plugin/navbox/
H A Dstyle.css6 border-spacing:0;
13 border-spacing:0;
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/
H A DFunctionCommentSniff.php573 * @param int $spacing The number of spaces to add after the type.
577 …unction checkSpacingAfterParamType(PHP_CodeSniffer_File $phpcsFile, $param, $maxType, $spacing = 1) argument
580 $spaces = ($maxType - strlen($param['type']) + $spacing);
628 * @param int $spacing The number of spaces to add after the type.
632 …function checkSpacingAfterParamName(PHP_CodeSniffer_File $phpcsFile, $param, $maxVar, $spacing = 1) argument
635 $spaces = ($maxVar - strlen($param['var']) + $spacing);
/plugin/diagramsnet/lib/shapes/
H A DmxElectrical.js530 var currH = spacing * 0.5;
551 currH = currH + spacing;
615 var currH = spacing * 0.5;
620 currH = currH + spacing;
1597 currH = currH + spacing;
1613 currH = currH + spacing;
1634 currW = currW + spacing;
1663 var currH = spacing * 0.5;
1674 currH = currH + spacing;
1687 currH = currH + spacing;
[all …]
/plugin/nstoc/
H A Dstyle.css7 …adding:0;font-size:111.1%;font-weight:500;font-variant:small-caps;letter-spacing:1pt;background:in…
9 ul.nstoc li.level3{letter-spacing:normal;}
/plugin/html2pdf/html2pdf/html2ps/help/css/
H A Dhelp.css23 letter-spacing:-1px;
32 letter-spacing:-1px;
/plugin/diagramsnet/lib/js/diagramly/
H A DTrees.js151 var spacing = 10;
695 -clones[1].geometry.width - spacing;
700 -clones[1].geometry.height - spacing;
720 bbox.x += ((after) ? cell.geometry.width + spacing :
721 -clones[1].geometry.width - spacing) * s;
725 bbox.y += ((after) ? cell.geometry.height + spacing :
726 -clones[1].geometry.height - spacing) * s;
973 pgeo.x + spacing;
980 pgeo.x + spacing;
988 pgeo.y + spacing;
[all …]

12345678910>>...12