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