hotspot/src/share/vm/utilities/ostream.hpp
changeset 347 df859fcca515
parent 1 489c9b5090e2
child 768 d0bebc7eefc2
child 670 ddf3e9583f2f
child 1374 4c24294029a9
--- a/hotspot/src/share/vm/utilities/ostream.hpp	Fri Mar 28 09:00:39 2008 -0700
+++ b/hotspot/src/share/vm/utilities/ostream.hpp	Wed Apr 02 12:09:59 2008 -0700
@@ -59,6 +59,7 @@
    int  indentation() const    { return _indentation; }
    void set_indentation(int i) { _indentation = i;    }
    void fill_to(int col);
+   void move_to(int col, int slop = 6, int min_space = 2);
 
    // sizing
    int width()    const { return _width;    }
@@ -78,7 +79,7 @@
    void print_raw_cr(const char* str)         { write(str, strlen(str)); cr(); }
    void print_raw_cr(const char* str, int len){ write(str,         len); cr(); }
    void put(char ch);
-   void sp();
+   void sp(int count = 1);
    void cr();
    void bol() { if (_position > 0)  cr(); }