reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
74 void indent(int Levels = 1) { IndentLevel += Levels; } 77 IndentLevel = std::max(0, IndentLevel - Levels); 77 IndentLevel = std::max(0, IndentLevel - Levels); 80 void resetIndent() { IndentLevel = 0; } 82 int getIndentLevel() { return IndentLevel; } 88 for (int i = 0; i < IndentLevel; ++i)lib/Support/ScopedPrinter.cpp
35 (IndentLevel + 1) * 2, true)