Home | History | Annotate | Download | only in yaml-bench

Lines Matching full:indent

60 struct indent {
62 indent(unsigned d) : distance(d) {}
65 static raw_ostream &operator <<(raw_ostream &os, const indent &in) {
86 , unsigned Indent = 0
91 outs() << indent(Indent);
103 ++Indent;
106 dumpNode(i, Indent);
109 --Indent;
110 outs() << indent(Indent) << "]";
113 ++Indent;
116 outs() << indent(Indent) << "? ";
117 dumpNode(i->getKey(), Indent, true);
119 outs() << indent(Indent) << ": ";
120 dumpNode(i->getValue(), Indent, true);
123 --Indent;
124 outs() << indent(Indent) << "}";