src/share/vm/utilities/ostream.hpp

changeset 535
c7c777385a15
parent 435
a61af66fc99e
child 631
d1605aabd0a1
child 657
2a1a77d3458f
child 777
37f87013dfd8
     1.1 --- a/src/share/vm/utilities/ostream.hpp	Fri Mar 28 09:00:39 2008 -0700
     1.2 +++ b/src/share/vm/utilities/ostream.hpp	Wed Apr 02 12:09:59 2008 -0700
     1.3 @@ -59,6 +59,7 @@
     1.4     int  indentation() const    { return _indentation; }
     1.5     void set_indentation(int i) { _indentation = i;    }
     1.6     void fill_to(int col);
     1.7 +   void move_to(int col, int slop = 6, int min_space = 2);
     1.8  
     1.9     // sizing
    1.10     int width()    const { return _width;    }
    1.11 @@ -78,7 +79,7 @@
    1.12     void print_raw_cr(const char* str)         { write(str, strlen(str)); cr(); }
    1.13     void print_raw_cr(const char* str, int len){ write(str,         len); cr(); }
    1.14     void put(char ch);
    1.15 -   void sp();
    1.16 +   void sp(int count = 1);
    1.17     void cr();
    1.18     void bol() { if (_position > 0)  cr(); }
    1.19  

mercurial