Lines Matching refs:to
42 inline explicit Bundle(TextOutput& to) : mTO(to) { to.pushBundle(); } in Bundle() argument
59 TextOutput& endl(TextOutput& to);
60 TextOutput& indent(TextOutput& to);
61 TextOutput& dedent(TextOutput& to);
64 TextOutput& operator<<(TextOutput& to, const T& val)
69 to.print(str.c_str(), str.size());
70 return to;
73 TextOutput& operator<<(TextOutput& to, TextOutputManipFunc func);
87 TextOutput& operator<<(TextOutput& to, const TypeCode& val);
116 TextOutput& operator<<(TextOutput& to, const HexDump& val);
117 inline TextOutput& operator<<(TextOutput& to,
121 endl(to);
122 return to;
125 inline TextOutput& operator<<(TextOutput& to, const char &c)
127 to.print(&c, 1);
128 return to;
131 inline TextOutput& operator<<(TextOutput& to, const bool &val)
133 if (val) to.print("true", 4);
134 else to.print("false", 5);
135 return to;
138 inline TextOutput& operator<<(TextOutput& to, const String16& val)
140 to << String8(val).string();
141 return to;
147 inline TextOutput& endl(TextOutput& to) in endl() argument
149 to.print("\n", 1); in endl()
150 return to; in endl()
153 inline TextOutput& indent(TextOutput& to) in indent() argument
155 to.moveIndent(1); in indent()
156 return to; in indent()
159 inline TextOutput& dedent(TextOutput& to) in dedent() argument
161 to.moveIndent(-1); in dedent()
162 return to; in dedent()
165 inline TextOutput& operator<<(TextOutput& to, TextOutputManipFunc func)
167 return (*func)(to);