Lines Matching defs:to

10  * Unless required by applicable law or agreed to in writing, software
42 inline Bundle(TextOutput& to) : mTO(to) { to.pushBundle(); }
54 // Text output stream for printing to the log (via utils/Log.h).
57 // Text output stream for printing to stdout.
60 // Text output stream for printing to stderr.
65 TextOutput& endl(TextOutput& to);
66 TextOutput& indent(TextOutput& to);
67 TextOutput& dedent(TextOutput& to);
69 TextOutput& operator<<(TextOutput& to, const char* str);
70 TextOutput& operator<<(TextOutput& to, char); // writes raw character
71 TextOutput& operator<<(TextOutput& to, bool);
72 TextOutput& operator<<(TextOutput& to, int);
73 TextOutput& operator<<(TextOutput& to, long);
74 TextOutput& operator<<(TextOutput& to, unsigned int);
75 TextOutput& operator<<(TextOutput& to, unsigned long);
76 TextOutput& operator<<(TextOutput& to, long long);
77 TextOutput& operator<<(TextOutput& to, unsigned long long);
78 TextOutput& operator<<(TextOutput& to, float);
79 TextOutput& operator<<(TextOutput& to, double);
80 TextOutput& operator<<(TextOutput& to, TextOutputManipFunc func);
81 TextOutput& operator<<(TextOutput& to, const void*);
82 TextOutput& operator<<(TextOutput& to, const String8& val);
83 TextOutput& operator<<(TextOutput& to, const String16& val);
97 TextOutput& operator<<(TextOutput& to, const TypeCode& val);
126 TextOutput& operator<<(TextOutput& to, const HexDump& val);
131 inline TextOutput& endl(TextOutput& to)
133 to.print("\n", 1);
134 return to;
137 inline TextOutput& indent(TextOutput& to)
139 to.moveIndent(1);
140 return to;
143 inline TextOutput& dedent(TextOutput& to)
145 to.moveIndent(-1);
146 return to;
149 inline TextOutput& operator<<(TextOutput& to, const char* str)
151 to.print(str, strlen(str));
152 return to;
155 inline TextOutput& operator<<(TextOutput& to, char c)
157 to.print(&c, 1);
158 return to;
161 inline TextOutput& operator<<(TextOutput& to, TextOutputManipFunc func)
163 return (*func)(to);