Home
last modified time | relevance | path

Searched refs:Spacer (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/CodeGen/
DRenderMachineFunction.h240 class Spacer;
241 friend raw_ostream& operator<<(raw_ostream &os, const Spacer &s);
279 class Spacer {
281 explicit Spacer(unsigned numSpaces) : ns(numSpaces) {} in Spacer() function
282 Spacer operator+(const Spacer &o) const { return Spacer(ns + o.ns); }
288 Spacer s(unsigned ns) const;
299 void renderVertical(const Spacer &indent,
304 void insertCSS(const Spacer &indent,
309 void renderFunctionSummary(const Spacer &indent,
314 void renderPressureTableLegend(const Spacer &indent,
[all …]
DRenderMachineFunction.cpp519 void RenderMachineFunction::Spacer::print(raw_ostream &os) const { in print()
527 RenderMachineFunction::Spacer RenderMachineFunction::s(unsigned ns) const { in s()
528 return Spacer(ns); in s()
531 raw_ostream& operator<<(raw_ostream &os, const RenderMachineFunction::Spacer &s) { in operator <<()
628 void RenderMachineFunction::renderVertical(const Spacer &indent, in renderVertical()
660 void RenderMachineFunction::insertCSS(const Spacer &indent, in insertCSS()
681 const Spacer &indent, raw_ostream &os, in renderFunctionSummary()
690 const Spacer &indent, in renderPressureTableLegend()
718 const Spacer &indent, raw_ostream &os, in renderCellsWithRLE()
737 void RenderMachineFunction::renderCodeTablePlusPI(const Spacer &indent, in renderCodeTablePlusPI()
/external/clang/test/CodeGenCXX/
Drvalue-references.cpp4 struct Spacer { int x; }; argument
6 struct B : Spacer, A { };