Home
last modified time | relevance | path

Searched defs:TextAttributes (Results 1 – 1 of 1) sorted by relevance

/external/bcc/tests/cc/
Dcatch.hpp3662 struct TextAttributes { struct
3663 TextAttributes() in TextAttributes() function
3670 … TextAttributes& setInitialIndent( std::size_t _value ) { initialIndent = _value; return *this; } in setInitialIndent()
3671 TextAttributes& setIndent( std::size_t _value ) { indent = _value; return *this; } in setIndent()
3672 TextAttributes& setWidth( std::size_t _value ) { width = _value; return *this; } in setWidth()
3673 TextAttributes& setTabChar( char _value ) { tabChar = _value; return *this; } in setTabChar()
3675 std::size_t initialIndent; // indent of first line, or npos
3676 std::size_t indent; // indent of subsequent lines, or all if initialIndent is npos
3677 … std::size_t width; // maximum width of text, including indent. Longer text will wrap
3678 char tabChar; // If this char is seen the indent is changed to current pos
[all …]