Lines Matching refs:to
41 inline explicit Bundle(TextOutput& to) : mTO(to) { to.pushBundle(); } in Bundle() argument
64 TextOutput& endl(TextOutput& to);
65 TextOutput& indent(TextOutput& to);
66 TextOutput& dedent(TextOutput& to);
69 TextOutput& operator<<(TextOutput& to, const T& val)
74 to.print(str.c_str(), str.size());
75 return to;
78 TextOutput& operator<<(TextOutput& to, TextOutputManipFunc func);
92 TextOutput& operator<<(TextOutput& to, const TypeCode& val);
121 TextOutput& operator<<(TextOutput& to, const HexDump& val);
122 inline TextOutput& operator<<(TextOutput& to,
126 endl(to);
127 return to;
130 inline TextOutput& operator<<(TextOutput& to, const char &c)
132 to.print(&c, 1);
133 return to;
136 inline TextOutput& operator<<(TextOutput& to, const bool &val)
138 if (val) to.print("true", 4);
139 else to.print("false", 5);
140 return to;
143 inline TextOutput& operator<<(TextOutput& to, const String16& val)
145 to << String8(val).string();
146 return to;
152 inline TextOutput& endl(TextOutput& to) in endl() argument
154 to.print("\n", 1); in endl()
155 return to; in endl()
158 inline TextOutput& indent(TextOutput& to) in indent() argument
160 to.moveIndent(1); in indent()
161 return to; in indent()
164 inline TextOutput& dedent(TextOutput& to) in dedent() argument
166 to.moveIndent(-1); in dedent()
167 return to; in dedent()
170 inline TextOutput& operator<<(TextOutput& to, TextOutputManipFunc func)
172 return (*func)(to);