• Home
  • Raw
  • Download

Lines Matching refs:to

40 TextOutput& operator<<(TextOutput& to, bool val)  in operator <<()  argument
42 if (val) to.print("true", 4); in operator <<()
43 else to.print("false", 5); in operator <<()
44 return to; in operator <<()
47 TextOutput& operator<<(TextOutput& to, int val) in operator <<() argument
51 to.print(buf, strlen(buf)); in operator <<()
52 return to; in operator <<()
55 TextOutput& operator<<(TextOutput& to, long val) in operator <<() argument
59 to.print(buf, strlen(buf)); in operator <<()
60 return to; in operator <<()
63 TextOutput& operator<<(TextOutput& to, unsigned int val) in operator <<() argument
67 to.print(buf, strlen(buf)); in operator <<()
68 return to; in operator <<()
71 TextOutput& operator<<(TextOutput& to, unsigned long val) in operator <<() argument
75 to.print(buf, strlen(buf)); in operator <<()
76 return to; in operator <<()
79 TextOutput& operator<<(TextOutput& to, long long val) in operator <<() argument
83 to.print(buf, strlen(buf)); in operator <<()
84 return to; in operator <<()
87 TextOutput& operator<<(TextOutput& to, unsigned long long val) in operator <<() argument
91 to.print(buf, strlen(buf)); in operator <<()
92 return to; in operator <<()
95 static TextOutput& print_float(TextOutput& to, double value) in print_float() argument
103 to.print(buf, strlen(buf)); in print_float()
104 return to; in print_float()
107 TextOutput& operator<<(TextOutput& to, float val) in operator <<() argument
109 return print_float(to,val); in operator <<()
112 TextOutput& operator<<(TextOutput& to, double val) in operator <<() argument
114 return print_float(to,val); in operator <<()
117 TextOutput& operator<<(TextOutput& to, const void* val) in operator <<() argument
121 to.print(buf, strlen(buf)); in operator <<()
122 return to; in operator <<()
125 TextOutput& operator<<(TextOutput& to, const String8& val) in operator <<() argument
127 to << val.string(); in operator <<()
128 return to; in operator <<()
131 TextOutput& operator<<(TextOutput& to, const String16& val) in operator <<() argument
133 to << String8(val).string(); in operator <<()
134 return to; in operator <<()
142 TextOutput& operator<<(TextOutput& to, const TypeCode& val) in operator <<() argument
144 printTypeCode(val.typeCode(), textOutputPrinter, (void*)&to); in operator <<()
145 return to; in operator <<()
161 TextOutput& operator<<(TextOutput& to, const HexDump& val) in operator <<() argument
165 textOutputPrinter, (void*)&to); in operator <<()
166 return to; in operator <<()