Home | History | Annotate | Download | only in RenderEngine

Lines Matching defs:Formatter

31  * A simple formatter class to automatically add the endl and
35 class Formatter;
36 static Formatter& indent(Formatter& f);
37 static Formatter& dedent(Formatter& f);
39 class Formatter {
42 typedef Formatter& (*FormaterManipFunc)(Formatter&);
43 friend Formatter& indent(Formatter& f);
44 friend Formatter& dedent(Formatter& f);
46 Formatter() : mIndent(0) {}
52 friend Formatter& operator << (Formatter& out, const char* in) {
60 friend inline Formatter& operator << (Formatter& out, const String8& in) {
63 friend inline Formatter& operator<<(Formatter& to, FormaterManipFunc func) {
67 Formatter& indent(Formatter& f) {
71 Formatter& dedent(Formatter& f) {
106 Formatter vs;
124 Formatter fs;