Home
last modified time | relevance | path

Searched refs:indentation (Results 126 – 150 of 17302) sorted by relevance

12345678910>>...693

/dports/www/typo3-11/typo3_src-11.5.7/vendor/symfony/yaml/
H A DDumper.php30 protected $indentation; variable in Symfony\\Component\\Yaml\\Dumper
32 public function __construct(int $indentation = 4) argument
34 if ($indentation < 1) {
38 $this->indentation = $indentation;
72 … $blockIndentationIndicator = (' ' === substr($value, 0, 1)) ? (string) $this->indentation : '';
88 … $output .= sprintf("\n%s%s%s", $prefix, str_repeat(' ', $this->indentation), $row);
101 …dentationIndicator = (' ' === substr($value->getValue(), 0, 1)) ? (string) $this->indentation : '';
105 … $output .= sprintf("\n%s%s%s", $prefix, str_repeat(' ', $this->indentation), $row);
115 …s->dump($value->getValue(), $inline - 1, $dumpAsMap ? $indent + $this->indentation : $indent + 2, …
133 … $this->dump($value, $inline - 1, $willBeInlined ? 0 : $indent + $this->indentation, $flags)
/dports/www/drupal9/drupal-9.2.10/vendor/symfony/yaml/
H A DDumper.php30 protected $indentation; variable in Symfony\\Component\\Yaml\\Dumper
32 public function __construct(int $indentation = 4) argument
34 if ($indentation < 1) {
38 $this->indentation = $indentation;
74 … $blockIndentationIndicator = (' ' === substr($value, 0, 1)) ? (string) $this->indentation : '';
90 … $output .= sprintf("\n%s%s%s", $prefix, str_repeat(' ', $this->indentation), $row);
103 …dentationIndicator = (' ' === substr($value->getValue(), 0, 1)) ? (string) $this->indentation : '';
107 … $output .= sprintf("\n%s%s%s", $prefix, str_repeat(' ', $this->indentation), $row);
117 …s->dump($value->getValue(), $inline - 1, $dumpAsMap ? $indent + $this->indentation : $indent + 2, …
135 … $this->dump($value, $inline - 1, $willBeInlined ? 0 : $indent + $this->indentation, $flags)
/dports/math/stp/stp-2.3.3/lib/Printer/
H A DLispPrinter.cpp34 ostream& Lisp_Print_indent(ostream& os, const ASTNode& n, int indentation);
39 ostream& Lisp_Print1(ostream& os, const ASTNode& n, int indentation) in Lisp_Print1() argument
69 Lisp_Print1(os, children[0], indentation); in Lisp_Print1()
98 Lisp_Print_indent(os, *i, indentation + 2); in Lisp_Print1()
106 ostream& Lisp_Print(ostream& os, const ASTNode& n, int indentation) in Lisp_Print() argument
110 Lisp_Print_indent(os, n, indentation); in Lisp_Print()
116 ostream& Lisp_Print_indent(ostream& os, const ASTNode& n, int indentation) in Lisp_Print_indent() argument
118 os << std::endl << spaces(indentation); in Lisp_Print_indent()
119 Lisp_Print1(os, n, indentation); in Lisp_Print_indent()
/dports/net-im/matterbridge/matterbridge-1.22.3/vendor/github.com/mattermost/mattermost-server/v5/utils/markdown/
H A Dfenced_code.go37 func (b *FencedCode) Continuation(indentation int, r Range) *continuation {
42 Indentation: indentation,
47 func (b *FencedCode) AddLine(indentation int, r Range) bool {
49 …if indentation <= 3 && strings.HasPrefix(s, b.markdown[b.OpeningFence.Position:b.OpeningFence.End]…
64 if indentation >= b.Indentation {
65 indentation -= b.Indentation
67 indentation = 0
71 Indentation: indentation,
81 func fencedCodeStart(markdown string, indentation int, r Range, matchedBlocks, unmatchedBlocks []Bl…
107 Indentation: indentation,
/dports/devel/gitlist/gitlist/vendor/phpspec/prophecy/src/Prophecy/Util/
H A DExportUtil.php37 * @param int $indentation The indentation level of the 2nd+ line
40 public static function export($value, $indentation = 0) argument
42 return self::recursiveExport($value, $indentation);
108 …* @param int $indentation The indentation level of the 2n…
113 protected static function recursiveExport(&$value, $indentation, $processed = null) argument
150 $whitespace = str_repeat(' ', 4 * $indentation);
170 self::recursiveExport($k, $indentation),
171 self::recursiveExport($value[$k], $indentation + 1, $processed)
199 self::recursiveExport($k, $indentation),
200 self::recursiveExport($v, $indentation + 1, $processed)
/dports/databases/postgis30/postgis-3.0.4/
H A D.editorconfig16 # C files want tab indentation
20 # Perl files want tab indentation
29 # SQL files want tab indentation
33 # topology C files want space indentation
38 # topology C files want space indentation
45 # topology SQL files want space indentation
49 # postgis/sfcgal.sql.in wants space indentation
53 # .h.in files want space indentation
57 # Makefiles want tab indentation
/dports/devel/libtecla/libtecla/
H A Dioutil.c99 int _io_display_text(GlWriteFn *write_fn, void *data, int indentation, in _io_display_text() argument
124 if(indentation > term_width) in _io_display_text()
125 indentation = term_width; in _io_display_text()
126 else if(indentation < 0) in _io_display_text()
127 indentation = 0; in _io_display_text()
143 margin_width = indentation + prefix_len; in _io_display_text()
153 if(indentation > 0 && last < indentation) { in _io_display_text()
154 if(_io_pad_line(write_fn, data, fill_char, indentation - last)) in _io_display_text()
156 last = indentation; in _io_display_text()
163 int pstart = last - indentation; in _io_display_text()
/dports/devel/itext/itext-4.2.0/core/com/lowagie/text/
H A DSection.java124 protected float indentation; field in Section
353 section.setIndentation(indentation); in addSection()
366 return addSection(indentation, title, numberDepth + 1); in addSection()
430 return addSection(indentation, new Paragraph(title)); in addSection()
540 public void setIndentationLeft(float indentation) { in setIndentationLeft() argument
541 indentationLeft = indentation; in setIndentationLeft()
558 public void setIndentationRight(float indentation) { in setIndentationRight() argument
559 indentationRight = indentation; in setIndentationRight()
576 public void setIndentation(float indentation) { in setIndentation() argument
577 this.indentation = indentation; in setIndentation()
[all …]
H A DMarkedSection.java145 public MarkedSection addSection(float indentation, int numberDepth) { in addSection() argument
147 section.setIndentation(indentation); in addSection()
158 public MarkedSection addSection(float indentation) { in addSection() argument
160 section.setIndentation(indentation); in addSection()
227 public void setIndentationLeft(float indentation) { in setIndentationLeft() argument
228 ((Section)element).setIndentationLeft(indentation); in setIndentationLeft()
236 public void setIndentationRight(float indentation) { in setIndentationRight() argument
237 ((Section)element).setIndentationRight(indentation); in setIndentationRight()
245 public void setIndentation(float indentation) { in setIndentation() argument
246 ((Section)element).setIndentation(indentation); in setIndentation()
/dports/converters/wkhtmltopdf/qt-5db36ec/doc/src/snippets/xml/prettyprint/
H A Dmain.cpp102 int indentation = 0; in main() local
109 indentationStack[indentation] = QPair<int,int>( in main()
111 indentation += 1; in main()
113 indentationStack.remove(indentation); in main()
114 indentation -= 1; in main()
124 if (indentationStack.contains(indentation-1)) { in main()
125 int line = indentationStack[indentation-1].first; in main()
126 int column = indentationStack[indentation-1].second; in main()
135 outputFile.write(QByteArray().fill(' ', indentation)); in main()
/dports/databases/postgis31/postgis-3.1.4/
H A D.editorconfig16 # C files want tab indentation
20 # Perl files want tab indentation
29 # SQL files want tab indentation
33 # topology C files want space indentation
38 # topology C files want space indentation
45 # topology SQL files want space indentation
49 # postgis/sfcgal.sql.in wants space indentation
53 # .h.in files want space indentation
57 # Makefiles want tab indentation
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/ticket/class/
H A Dutils_diff.class.php284 public static function toTable($diff, $indentation = '', $separator = '<br>') argument
287 $html = $indentation."<table class=\"diff\">\n";
298 $indentation,
310 $indentation,
317 $indentation,
329 $indentation,
339 $indentation
341 . $indentation
349 . $indentation
357 . $indentation
[all …]
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/core/class/
H A Dutils_diff.class.php283 public static function toTable($diff, $indentation = '', $separator = '<br>') argument
286 $html = $indentation."<table class=\"diff\">\n";
297 $indentation,
309 $indentation,
316 $indentation,
328 $indentation,
338 $indentation
340 . $indentation
348 . $indentation
356 . $indentation
[all …]
/dports/lang/nyan/nyan-3c263e2/nyan/lexer/
H A Dbracket.cpp11 indentation{indent}, in Bracket()
18 this->indentation = new_indent; in doesnt_hang()
35 return this->indentation; in get_content_indent()
39 return this->indentation + SPACES_PER_INDENT; in get_content_indent()
48 return this->indentation <= indent; in closing_indent_ok()
51 return this->indentation == indent; in closing_indent_ok()
60 << this->indentation; in get_closing_indent()
64 return std::to_string(this->indentation); in get_closing_indent()
/dports/databases/phpmyadmin/phpMyAdmin-4.9.7-all-languages/vendor/twig/twig/src/
H A DCompiler.php26 protected $indentation; variable in Twig\\Compiler
72 * @param int $indentation The current indentation
76 public function compile(\Twig_NodeInterface $node, $indentation = 0) argument
84 $this->indentation = $indentation;
100 $this->source .= str_repeat(' ', $this->indentation * 4);
131 $this->source .= str_repeat(' ', $this->indentation * 4).$string;
148 $this->source .= str_repeat(' ', $this->indentation * 4);
256 $this->indentation += $step;
273 if ($this->indentation < $step) {
277 $this->indentation -= $step;
/dports/net/storj/storj-1.45.3/vendor/github.com/onsi/ginkgo/formatter/
H A Dformatter.go25 func Fi(indentation uint, format string, args ...interface{}) string {
26 return SingletonFormatter.Fi(indentation, format, args...)
29 func Fiw(indentation uint, maxWidth uint, format string, args ...interface{}) string {
30 return SingletonFormatter.Fiw(indentation, maxWidth, format, args...)
81 func (f Formatter) Fi(indentation uint, format string, args ...interface{}) string {
82 return f.Fiw(indentation, 0, format, args...)
85 func (f Formatter) Fiw(indentation uint, maxWidth uint, format string, args ...interface{}) string {
88 if indentation == 0 && maxWidth == 0 {
97 maxWidth = maxWidth - indentation*2
125 if indentation == 0 {
[all …]
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/onsi/ginkgo/formatter/
H A Dformatter.go25 func Fi(indentation uint, format string, args ...interface{}) string {
26 return SingletonFormatter.Fi(indentation, format, args...)
29 func Fiw(indentation uint, maxWidth uint, format string, args ...interface{}) string {
30 return SingletonFormatter.Fiw(indentation, maxWidth, format, args...)
81 func (f Formatter) Fi(indentation uint, format string, args ...interface{}) string {
82 return f.Fiw(indentation, 0, format, args...)
85 func (f Formatter) Fiw(indentation uint, maxWidth uint, format string, args ...interface{}) string {
88 if indentation == 0 && maxWidth == 0 {
97 maxWidth = maxWidth - indentation*2
125 if indentation == 0 {
[all …]
/dports/www/bolt/bolt-2.2.24/vendor/twig/twig/lib/Twig/
H A DCompiler.php22 protected $indentation; variable in Twig_Compiler
68 * @param int $indentation The current indentation
72 public function compile(Twig_NodeInterface $node, $indentation = 0) argument
80 $this->indentation = $indentation;
95 $this->source .= str_repeat(' ', $this->indentation * 4);
126 $this->source .= str_repeat(' ', $this->indentation * 4).$string;
143 $this->source .= str_repeat(' ', $this->indentation * 4);
251 $this->indentation += $step;
268 if ($this->indentation < $step) {
272 $this->indentation -= $step;
/dports/security/xray-core/Xray-core-1.5.0/vendor/github.com/onsi/ginkgo/formatter/
H A Dformatter.go25 func Fi(indentation uint, format string, args ...interface{}) string {
26 return SingletonFormatter.Fi(indentation, format, args...)
29 func Fiw(indentation uint, maxWidth uint, format string, args ...interface{}) string {
30 return SingletonFormatter.Fiw(indentation, maxWidth, format, args...)
81 func (f Formatter) Fi(indentation uint, format string, args ...interface{}) string {
82 return f.Fiw(indentation, 0, format, args...)
85 func (f Formatter) Fiw(indentation uint, maxWidth uint, format string, args ...interface{}) string {
88 if indentation == 0 && maxWidth == 0 {
97 maxWidth = maxWidth - indentation*2
125 if indentation == 0 {
[all …]
/dports/www/pear-twig/Twig-1.29.0/lib/Twig/
H A DCompiler.php22 protected $indentation; variable in Twig_Compiler
68 * @param int $indentation The current indentation
72 public function compile(Twig_NodeInterface $node, $indentation = 0) argument
80 $this->indentation = $indentation;
95 $this->source .= str_repeat(' ', $this->indentation * 4);
126 $this->source .= str_repeat(' ', $this->indentation * 4).$string;
143 $this->source .= str_repeat(' ', $this->indentation * 4);
251 $this->indentation += $step;
268 if ($this->indentation < $step) {
272 $this->indentation -= $step;
/dports/dns/blocky/blocky-0.17/vendor/github.com/onsi/ginkgo/formatter/
H A Dformatter.go25 func Fi(indentation uint, format string, args ...interface{}) string {
26 return SingletonFormatter.Fi(indentation, format, args...)
29 func Fiw(indentation uint, maxWidth uint, format string, args ...interface{}) string {
30 return SingletonFormatter.Fiw(indentation, maxWidth, format, args...)
81 func (f Formatter) Fi(indentation uint, format string, args ...interface{}) string {
82 return f.Fiw(indentation, 0, format, args...)
85 func (f Formatter) Fiw(indentation uint, maxWidth uint, format string, args ...interface{}) string {
88 if indentation == 0 && maxWidth == 0 {
97 maxWidth = maxWidth - indentation*2
125 if indentation == 0 {
[all …]
/dports/devel/gitlist/gitlist/vendor/twig/twig/lib/Twig/
H A DCompiler.php22 protected $indentation; variable in Twig_Compiler
69 * @param int $indentation The current indentation
73 public function compile(Twig_NodeInterface $node, $indentation = 0) argument
81 $this->indentation = $indentation;
97 $this->source .= str_repeat(' ', $this->indentation * 4);
128 $this->source .= str_repeat(' ', $this->indentation * 4).$string;
145 $this->source .= str_repeat(' ', $this->indentation * 4);
253 $this->indentation += $step;
270 if ($this->indentation < $step) {
274 $this->indentation -= $step;
/dports/net/ooni-probe-cli/probe-cli-3.10.1/vendor/github.com/onsi/ginkgo/formatter/
H A Dformatter.go25 func Fi(indentation uint, format string, args ...interface{}) string {
26 return SingletonFormatter.Fi(indentation, format, args...)
29 func Fiw(indentation uint, maxWidth uint, format string, args ...interface{}) string {
30 return SingletonFormatter.Fiw(indentation, maxWidth, format, args...)
81 func (f Formatter) Fi(indentation uint, format string, args ...interface{}) string {
82 return f.Fiw(indentation, 0, format, args...)
85 func (f Formatter) Fiw(indentation uint, maxWidth uint, format string, args ...interface{}) string {
88 if indentation == 0 && maxWidth == 0 {
97 maxWidth = maxWidth - indentation*2
125 if indentation == 0 {
[all …]
/dports/www/limesurvey/limesurvey/application/third_party/Twig/
H A DCompiler.php26 protected $indentation; variable in Twig\\Compiler
72 * @param int $indentation The current indentation
76 public function compile(\Twig_NodeInterface $node, $indentation = 0) argument
84 $this->indentation = $indentation;
100 $this->source .= str_repeat(' ', $this->indentation * 4);
131 $this->source .= str_repeat(' ', $this->indentation * 4).$string;
148 $this->source .= str_repeat(' ', $this->indentation * 4);
256 $this->indentation += $step;
273 if ($this->indentation < $step) {
277 $this->indentation -= $step;
/dports/www/drupal8/drupal-8.9.20/vendor/twig/twig/src/
H A DCompiler.php26 protected $indentation; variable in Twig\\Compiler
72 * @param int $indentation The current indentation
76 public function compile(\Twig_NodeInterface $node, $indentation = 0) argument
84 $this->indentation = $indentation;
100 $this->source .= str_repeat(' ', $this->indentation * 4);
131 $this->source .= str_repeat(' ', $this->indentation * 4).$string;
148 $this->source .= str_repeat(' ', $this->indentation * 4);
256 $this->indentation += $step;
273 if ($this->indentation < $step) {
277 $this->indentation -= $step;

12345678910>>...693