Searched refs:maxIndent (Results 1 – 3 of 3) sorted by relevance
43 private final int maxIndent; field in WrappedIndentingWriter49 public WrappedIndentingWriter(Writer out, int maxIndent, int maxWidth) { in WrappedIndentingWriter() argument51 this.maxIndent = maxIndent; in WrappedIndentingWriter()65 if (currentIndent > maxIndent) { in getIndent()66 return maxIndent; in getIndent()
52 private final int maxIndent; field in OldWrappedIndentingWriter87 this.maxIndent = width >> 1; in OldWrappedIndentingWriter()111 if (indent >= maxIndent) { in write()112 indent = maxIndent; in write()181 collectingIndent = (maxIndent != 0); in bol()
1582 int maxIndent = 0; in scanBlockScalar() local1588 maxIndent = ((Integer) brme[1]).intValue(); in scanBlockScalar()1590 indent = Math.max(minIndent, maxIndent); in scanBlockScalar()1752 int maxIndent = 0; in scanBlockScalarIndentation() local1768 if (this.reader.getColumn() > maxIndent) { in scanBlockScalarIndentation()1769 maxIndent = reader.getColumn(); in scanBlockScalarIndentation()1774 return new Object[] { chunks.toString(), maxIndent, endMark }; in scanBlockScalarIndentation()