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

Lines Matching refs:Indent

55 struct indent {
57 indent(unsigned d) : distance(d) {}
60 static raw_ostream &operator <<(raw_ostream &os, const indent &in) {
67 , unsigned Indent = 0
72 outs() << indent(Indent);
82 ++Indent;
85 dumpNode(i, Indent);
88 --Indent;
89 outs() << indent(Indent) << "]";
92 ++Indent;
95 outs() << indent(Indent) << "? ";
96 dumpNode(i->getKey(), Indent, true);
98 outs() << indent(Indent) << ": ";
99 dumpNode(i->getValue(), Indent, true);
102 --Indent;
103 outs() << indent(Indent) << "}";