| /plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Strings/ |
| D | ConcatenationSpacingSniff.php | 39 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)) 99 … && ($after === $this->spacing || ($after === '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) { [all …]
|
| /plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/ |
| D | FunctionSpacingSniff.php | 38 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, 121 … $phpcsFile->fixer->addContentBefore($i, str_repeat($phpcsFile->eolChar, $this->spacing)); 203 if ($foundLines !== $this->spacing) { 205 if ($this->spacing !== 1) { [all …]
|
| /plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Formatting/ |
| D | SpaceAfterNotSniff.php | 67 $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/ |
| D | GoogleMapsPlayablelocationsV3SampleFilter.php | 47 public function setSpacing(GoogleMapsPlayablelocationsV3SampleSpacingOptions $spacing) argument 49 $this->spacing = $spacing; 56 return $this->spacing;
|
| /plugin/combo/ComboStrap/ |
| H A D | Spacing.php | 19 $spacing = self::SPACING_ATTRIBUTE; 20 if ($attributes->hasComponentAttribute($spacing)) { 22 $spacingValue = $attributes->getValueAndRemove($spacing);
|
| /plugin/randomquote/ |
| D | style.css | 5 letter-spacing: 3pt; 6 word-spacing: 4pt;
|
| /plugin/bibtex/OSBib/create/ |
| D | TABLE.php | 32 …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/cumulus/ |
| D | ddos_server.svg | 1 …7.132" y="6.753" font-size="40" font-family="sans-serif" letter-spacing="0" word-spacing="0" fill=…
|
| D | switch.svg | 1 …5.362" y="6.939" font-size="40" font-family="sans-serif" letter-spacing="0" word-spacing="0" fill=…
|
| /plugin/diagramsnet/lib/img/lib/ibm/vpc/ |
| D | SubnetTag.svg | 1 …3" y="244.031" font-size="25.4" font-family="sans-serif" letter-spacing="0" word-spacing="0"><tspa…
|
| /plugin/s5/ui/i18n/ |
| D | pretty.css | 22 #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/ |
| D | editor_zh-CN.properties.bak | 74 spacing=Spacing 75 sourceSpacing=Source spacing 76 targetSpacing=target spacing
|
| /plugin/fckg/action/entities/utils/ |
| D | entities.txt | 65 spacing diaeresis 99 spacing macron 124 spacing acute 144 spacing cedilla
|
| /plugin/ckgdoku/action/entities/utils/ |
| D | entities.txt | 65 spacing diaeresis 99 spacing macron 124 spacing acute 144 spacing cedilla
|
| /plugin/ckgedit/action/entities/utils/ |
| D | entities.txt | 65 spacing diaeresis 99 spacing macron 124 spacing acute 144 spacing cedilla
|
| /plugin/diagramsnet/lib/plugins/trees/ |
| D | trees.js | 17 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/ |
| D | screen.less | 21 letter-spacing: 0; 69 letter-spacing: .05em;
|
| /plugin/navbox/ |
| D | style.css | 6 border-spacing:0; 13 border-spacing:0;
|
| /plugin/diagramsnet/lib/shapes/ |
| D | mxElectrical.js | 529 var spacing = h / numInputs; 530 var currH = spacing * 0.5; 551 currH = currH + spacing; 614 var spacing = 1 / numInputs; 615 var currH = spacing * 0.5; 620 currH = currH + spacing; 1573 var spacing = (h - 16) / numInputs; 1578 var spacing = (h - 16) / numOutputs; 1581 var currH = 3 + spacing * 0.5; 1597 currH = currH + spacing; [all …]
|
| /plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/ |
| D | FunctionCommentSniff.php | 573 * @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/nstoc/ |
| D | style.css | 7 …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/indexmenu/scripts/fancytree/skin-win8-xxl/ |
| D | ui.fancytree.less | 22 @fancy-node-v-spacing: 1px; // gap between two node borders 25 @fancy-icon-spacing: 6px; // margin between icon/icon or icon/title
|
| /plugin/diagramsnet/lib/js/diagramly/ |
| D | Trees.js | 151 var spacing = 10; 694 clones[1].geometry.x += (after) ? cell.geometry.width + spacing : 695 -clones[1].geometry.width - spacing; 699 clones[1].geometry.y += (after) ? cell.geometry.height + 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; 752 dx = spacing + Math.max(dx, (Math.min(bbox.x + bbox.width, [all …]
|
| /plugin/highlight2wiki/ |
| D | style.css | 143 letter-spacing: -0.45px; 150 letter-spacing: -0.03px; 161 letter-spacing: -0.36px;
|
| /plugin/html2pdf/html2pdf/html2ps/help/css/ |
| D | help.css | 23 letter-spacing:-1px; 32 letter-spacing:-1px;
|