Searched refs:_indentation (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/utilities/
H A Dostream.hpp43 int _indentation; // current indentation member in class:outputStream
63 void inc() { _indentation++; };
64 void dec() { _indentation--; };
65 void inc(int n) { _indentation += n; };
66 void dec(int n) { _indentation -= n; };
67 int indentation() const { return _indentation; }
68 void set_indentation(int i) { _indentation = i; }
H A Dostream.cpp53 _indentation = 0;
61 _indentation = 0;
241 while (_position < _indentation) sp();

Completed in 33 milliseconds