Home | History | Annotate | Download | only in strings

Lines Matching defs:StrCat

34 // The AlphaNum type was designed to be used as the parameter type for StrCat().
57 // To do this, pass strings::Hex(my_int) as a parameter to StrCat. You may
59 // of Printf("%04x", my_int) is StrCat(Hex(my_int, strings::ZERO_PAD_4))
151 // StrCat()
160 // For clarity and performance, don't use StrCat when appending to a
162 // str.append(StrCat(...))
163 // str += StrCat(...)
164 // str = StrCat(str, ...)
174 string StrCat(const AlphaNum &a) TF_MUST_USE_RESULT;
175 string StrCat(const AlphaNum &a, const AlphaNum &b) TF_MUST_USE_RESULT;
176 string StrCat(const AlphaNum &a, const AlphaNum &b,
178 string StrCat(const AlphaNum &a, const AlphaNum &b, const AlphaNum &c,
191 string StrCat(const AlphaNum &a, const AlphaNum &b, const AlphaNum &c,
196 string StrCat(const AlphaNum &a, const AlphaNum &b, const AlphaNum &c,
218 // Note: while StrCat supports appending up to 26 arguments, StrAppend
220 // automatically transforming StrCat to StrAppend, and can easily be