/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/ |
H A D | Serializer.php | 27 protected $indent = 0; variable in phpDocumentor\\Reflection\\DocBlock\\Serializer 49 Assert::integer($indent); 55 $this->indent = $indent; 71 $indent = str_repeat($this->indentString, $this->indent); 77 $indent, 79 $indent, 86 $comment .= "{$indent} * {$text}\n"; 87 $comment .= "{$indent} *\n"; 91 $comment .= $indent . ' */'; 103 return str_replace("\n{$indent} * \n", "\n{$indent} *\n", $text); [all …]
|
/plugin/sketchcanvas/phplib/ |
H A D | spyc.php | 92 private $indent;
variable in Spyc 174 * Oh, and you can decide how big the indent is and what the wordwrap
184 * @param int $indent Pass in false to use the default, which is 2
187 public static function YAMLDump($array,$indent = false,$wordwrap = false) {
argument 189 return $spyc->dump($array,$indent,$wordwrap);
200 * Oh, and you can decide how big the indent is and what the wordwrap
210 * @param int $indent Pass in false to use the default, which is 2
213 public function dump($array,$indent = false,$wordwrap = false) {
argument 218 if ($indent === false or !is_numeric($indent)) {
254 _yamlize($key, $value, $indent, $previous_key = 1, $first_key = 0, $source_array = null) global() argument 279 _yamlizeArray($array, $indent) global() argument 302 _dumpNode($key, $value, $indent, $previous_key = 1, $first_key = 0, $source_array = null) global() argument 350 _doLiteralBlock($value, $indent) global() argument 374 _doFolding($value, $indent) global() argument 738 addArrayInline($array, $indent) global() argument 842 addLiteralLine($literalBlock, $line, $literalBlockStyle, $indent = 1) global() argument 871 stripIndent($line, $indent = 1) global() argument 876 getParentPathByIndent($indent) global() argument 887 clearBiggerPathValues($indent) global() argument [all...] |
/plugin/combo/vendor/symfony/yaml/ |
H A D | Dumper.php | 46 * @param int $indent The level of indentation (used internally) 49 public function dump($input, int $inline = 0, int $indent = 0, int $flags = 0): string argument 52 $prefix = $indent ? str_repeat(' ', $indent) : ''; 62 $output .= $this->dumpTaggedValue($input, $inline, $indent, $flags, $prefix); 117 $output .= $this->dump($value->getValue(), $inline - 1, $dumpAsMap ? $indent + $this->indentation : $indent + 2, $flags); 135 $this->dump($value, $inline - 1, $willBeInlined ? 0 : $indent + $this->indentation, $flags) 143 private function dumpTaggedValue(TaggedValue $value, int $inline, int $indent, int $flags, string $prefix): string argument 164 return $output."\n".$this->dump($value->getValue(), $inline - 1, $indent, [all...] |
H A D | Yaml.php | 91 * @param int $indent The amount of spaces to use for indentation of nested nodes 94 public static function dump($input, int $inline = 2, int $indent = 4, int $flags = 0): string argument 96 $yaml = new Dumper($indent);
|
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/ |
H A D | CheckSecurityNode.php | 53 ->indent() 55 ->indent() 63 ->indent() 66 ->indent() 70 ->indent() 74 ->indent()
|
H A D | ModuleNode.php | 134 ->indent() 185 ->indent() 193 ->indent() 281 ->indent() 293 ->indent() 327 ->indent() 368 ->indent() 422 ->indent() 433 ->indent() 445 ->indent() [all …]
|
H A D | MacroNode.php | 68 ->indent() 73 ->indent() 109 ->indent() 113 ->indent() 118 ->indent()
|
/plugin/codemirror/dist/modes/ |
H A D | r.min.js | 1 …indent:a.indent,flags:0,column:c.column(),prev:a.ctx}}function t(a,b){var c=a.ctx;a.ctx={type:c.ty… property in a.ctx
|
H A D | soy.min.js | 1 …indent;d++){if(!a.eat(/\s/))break}if(d)return null}var e=a.string;var f=c.exec(e.substr(a.pos));if…
|
H A D | cypher.min.js | 1 …indent:a.indent,col:c,type:b}};var f=function(a){a.indent=a.context.indent;return a.context=a.cont… property in a.context
|
H A D | sparql.min.js | 1 …indent:a.indent,col:c,type:b}}function k(a){a.indent=a.context.indent;a.context=a.context.prev}ret… property in a.context
|
H A D | turtle.min.js | 1 …indent:a.indent,col:c,type:b}}function k(a){a.indent=a.context.indent;a.context=a.context.prev}ret… property in a.context
|
H A D | q.min.js | 1 …indent:a.indent,col:c,type:b}}function m(a){a.indent=a.context.indent;a.context=a.context.prev}ret… property in a.context
|
/plugin/refnotes/ |
H A D | admin.php | 708 private $indent; global() variable in refnotes_html_sink 721 public function indent() { global() function in refnotes_html_sink
|
/plugin/findologicxmlexport/vendor/symfony/yaml/ |
H A D | Dumper.php | 44 * @param int $indent The level of indentation (used internally) 49 public function dump($input, int $inline = 0, int $indent = 0, int $flags = 0): string argument 52 $prefix = $indent ? str_repeat(' ', $indent) : ''; 90 … $this->dump($value, $inline - 1, $willBeInlined ? 0 : $indent + $this->indentation, $flags)
|
H A D | Yaml.php | 90 * @param int $indent The amount of spaces to use for indentation of nested nodes 95 public static function dump($input, int $inline = 2, int $indent = 4, int $flags = 0): string argument 97 $yaml = new Dumper($indent);
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/ |
H A D | IndentationSniff.php | 43 public $indent = 4; variable in Squiz_Sniffs_CSS_IndentationSniff 121 $expectedIndent = ($indentLevel * $this->indent); 141 $indent = str_repeat(' ', $expectedIndent); 143 $phpcsFile->fixer->addContentBefore($i, $indent); 145 $phpcsFile->fixer->replaceToken($i, $indent);
|
/plugin/diagramsnet/lib/js/grapheditor/ |
H A D | Shapes.js | 4603 c.arcTo(size - indent * 0.5, size - indent * 0.5, 0, 0, 0, indent, indent * 0.5 + size); 4607 c.arcTo(size + indent, size + indent, 0, 0, 1, indent, indent + size); 4640 c.lineTo(indent, indent); 4661 c.arcTo(size + indent, size + indent, 0, 0, 1, w - size - indent, indent); 4694 c.lineTo(w - indent, indent); 4727 c.lineTo(indent, h - indent); 4748 c.arcTo(size + indent, size + indent, 0, 0, 1, w - indent, h - size - indent); 4798 c.lineTo(indent, h - indent); 4806 c.arcTo(size + indent, size + indent, 0, 0, 1, size + indent, h - indent); 4967 c.moveTo(indent, indent); [all …]
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/WhiteSpace/ |
H A D | ObjectOperatorIndentSniff.php | 37 public $indent = 4; variable in PEAR_Sniffs_WhiteSpace_ObjectOperatorIndentSniff 99 $requiredIndent += $this->indent; 134 $indent = $tokens[($next - 1)]; 136 && $indent['code'] === T_WHITESPACE 138 if ($indent['line'] === $tokens[$next]['line']) { 139 $foundIndent = strlen($indent['content']);
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Functions/ |
H A D | OpeningFunctionBraceBsdAllmanSniff.php | 109 $indent = $phpcsFile->findFirstOnLine(array(), $openingBrace); 110 if ($tokens[$indent]['code'] === T_WHITESPACE) { 111 $phpcsFile->fixer->addContentBefore($openingBrace, $tokens[$indent]['content']); 177 $indent = str_repeat(' ', $expected); 179 $phpcsFile->fixer->addContentBefore($openingBrace, $indent); 181 $phpcsFile->fixer->replaceToken(($openingBrace - 1), $indent);
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/ |
H A D | Fixer.php | 489 $indent = "\t"; 491 $indent .= "\t"; 496 echo "$indent* token $stackPtr has already been modified, skipping *".PHP_EOL; 548 $indent = "\t"; 550 $indent .= "\t"; 557 …echo "$indent**** replaced token $stackPtr ($type) \"$oldContent\" => \"$newContent\" ****".PHP_EO… 563 echo "$indent**** ignoring all changes until next loop ****".PHP_EOL; 584 $indent = "\t"; 586 $indent .= "\tA: "; 639 $indent = "\t"; [all …]
|
/plugin/wysiwyg/fckeditor/editor/_source/commandclasses/ |
H A D | fckindentcommands.js | 124 var indent = parseInt( firstBlock.style[this.IndentCSSProperty], 10 ) ; 125 if ( isNaN( indent ) ) 126 indent = 0 ; 127 if ( indent <= 0 ) 238 var baseIndent = listArray[lastItem._FCK_ListArray_Index].indent ; 240 listArray[i].indent += indentOffset ; 241 …for ( var i = lastItem._FCK_ListArray_Index + 1 ; i < listArray.length && listArray[i].indent > ba… 242 listArray[i].indent += indentOffset ;
|
/plugin/geophp/vendor/funiq/geophp/src/Adapter/ |
H A D | GPX.php | 369 $indent = $tag === 'trkpt' ? "\t\t" : ($tag === 'rtept' ? "\t" : ''); 372 $node = $indent . "<" . $this->nss . $tag . " lat=\"" . $geom->getY() . "\" lon=\"" . $geom->getX() . "\">\n"; 376 $node .= self::processGeometryData($geom, $this->gpxTypes->get($tag . 'Type'), $indent . "\t") . 377 $indent . "</" . $this->nss . $tag . ">\n"; 383 return $indent . "<" . $this->nss . $tag . " lat=\"" . $geom->getY() . "\" lon=\"" . $geom->getX() . "\" />\n"; 463 * @param string $indent 466 protected static function processGeometryData($geometry, $tagList, $indent = "\t") argument 472 $tags .= self::createNodes($tagName, $geometry->getData($tagName), $indent) . "\n"; 482 * @param string $indent 485 protected static function createNodes($tagName, $value, $indent) argument [all...] |
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Classes/ |
H A D | ClassDeclarationSniff.php | 38 public $indent = 4; variable in PEAR_Sniffs_Classes_ClassDeclarationSniff 141 $expected = ($tokens[$stackPtr]['level'] * $this->indent); 151 $indent = str_repeat(' ', $expected); 153 $phpcsFile->fixer->addContentBefore($curlyBrace, $indent); 155 $phpcsFile->fixer->replaceToken(($curlyBrace - 1), $indent);
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/WhiteSpace/ |
H A D | ScopeIndentSniff.php | 50 public $indent = 4; variable in Generic_Sniffs_WhiteSpace_ScopeIndentSniff 615 … $currentIndent = (int) (ceil($currentIndent / $this->indent) * $this->indent); 725 $currentIndent = (int) (ceil($currentIndent / $this->indent) * $this->indent); 726 $checkIndent = (int) (ceil($checkIndent / $this->indent) * $this->indent); 772 $checkIndent = (int) (ceil($tokenIndent / $this->indent) * $this->indent); 808 $checkIndent = (int) (ceil($checkIndent / $this->indent) * $this->indent); 954 $currentIndent = (int) (ceil($currentIndent / $this->indent) * $this->indent); 989 $currentIndent = (int) (ceil($currentIndent / $this->indent) * $this->indent); 1028 $currentIndent = (int) (floor($currentIndent / $this->indent) * $this->indent); 1107 $currentIndent = (int) (ceil($currentIndent / $this->indent) * $this->indent); [all …]
|