Home | History | Annotate | Download | only in util

Lines Matching full:indent

36     /** {@code > 0;} the maximum indent */
42 /** whether indent spaces are currently being collected */
45 /** {@code >= 0;} current indent amount */
46 private int indent;
95 indent++;
96 if (indent >= maxIndent) {
97 indent = maxIndent;
120 for (int i = 0; i < indent; i++) {
123 column = indent;
167 indent = 0;