Lines Matching defs:Indent
60 unsigned AddressSize, unsigned Indent,
67 OS.indent(Indent);
73 DWARFUnit *U, unsigned Indent,
89 &Offset, OS, U->getBaseAddress(), Ctx.getDWARFObj(), U, DumpOpts, Indent);
93 DWARFUnit *U, unsigned Indent,
111 const DWARFAttribute &AttrValue, unsigned Indent,
117 OS.indent(Indent + 2);
179 dumpLocationList(OS, FormValue, U, sizeof(BaseIndent) + Indent + 4,
184 dumpLocationExpr(OS, FormValue, U, sizeof(BaseIndent) + Indent + 4,
223 sizeof(BaseIndent) + Indent + 4, DumpOpts);
565 static unsigned dumpParentChain(DWARFDie Die, raw_ostream &OS, unsigned Indent,
568 return Indent;
570 return Indent;
571 Indent = dumpParentChain(Die.getParent(), OS, Indent, DumpOpts, Depth + 1);
572 Die.dump(OS, Indent, DumpOpts);
573 return Indent + 2;
576 void DWARFDie::dump(raw_ostream &OS, unsigned Indent,
587 Indent = dumpParentChain(getParent(), OS, Indent, ParentDumpOpts);
599 WithColor(OS, HighlightColor::Tag).get().indent(Indent)
612 dumpAttribute(OS, *this, AttrValue, Indent, DumpOpts);
620 Child.dump(OS, Indent + 2, ChildDumpOpts);
629 OS.indent(Indent) << "NULL\n";