Home | History | Annotate | Download | only in strings

Lines Matching defs:SimpleItoa

118 // SimpleItoa()
124 inline string SimpleItoa(int32 i) {
129 // We need this overload because otherwise SimpleItoa(5U) wouldn't compile.
130 inline string SimpleItoa(uint32 i) {
135 inline string SimpleItoa(int64 i) {
140 // We need this overload because otherwise SimpleItoa(5ULL) wouldn't compile.
141 inline string SimpleItoa(uint64 i) {
146 inline string SimpleItoa(long i) { // NOLINT long is OK here
148 return SimpleItoa(static_cast<int64>(i));
150 return SimpleItoa(static_cast<int32>(i));
154 inline string SimpleItoa(unsigned long i) { // NOLINT long is OK here
156 return SimpleItoa(static_cast<uint64>(i));
158 return SimpleItoa(static_cast<uint32>(i));