Home | History | Annotate | Download | only in src

Lines Matching refs:Nesting

57 // Current nesting depth for debug output.
58 class Nesting {
60 Nesting() { current_ += 2; }
61 ~Nesting() { current_ -= 2; }
67 int Nesting::current_ = 0;
78 PrintF("%*s# Adding...\n", Nesting::current(), "");
79 PrintF("%*sthis = ", Nesting::current(), "");
80 this->Print(Nesting::current());
81 PrintF("%*s%s : ", Nesting::current(), "",
83 interface->Print(Nesting::current());
98 Nesting nested;
105 PrintF("%*sthis' = ", Nesting::current(), "");
106 this->Print(Nesting::current());
107 PrintF("%*s# Added.\n", Nesting::current(), "");
126 PrintF("%*s# Unifying...\n", Nesting::current(), "");
127 PrintF("%*sthis = ", Nesting::current(), "");
128 this->Print(Nesting::current());
129 PrintF("%*sthat = ", Nesting::current(), "");
130 that->Print(Nesting::current());
144 PrintF("%*sthis' = ", Nesting::current(), "");
145 this->Print(Nesting::current());
146 PrintF("%*sthat' = ", Nesting::current(), "");
147 that->Print(Nesting::current());
148 PrintF("%*s# Unified.\n", Nesting::current(), "");
162 Nesting nested;