Lines Matching defs:s2

218 string StrCat(const StringHolder& s1, const StringHolder& s2) {
220 result.reserve(s1.Length() + s2.Length() + 1);
223 result += s2;
228 string StrCat(const StringHolder& s1, const StringHolder& s2,
231 result.reserve(s1.Length() + s2.Length() + s3.Length() + 1);
234 result += s2;
240 string StrCat(const StringHolder& s1, const StringHolder& s2,
243 result.reserve(s1.Length() + s2.Length() + s3.Length() + s4.Length() + 1);
246 result += s2;
253 string StrCat(const StringHolder& s1, const StringHolder& s2,
257 result.reserve(s1.Length() + s2.Length() + s3.Length() + s4.Length() +
260 result += s2;
268 string StrCat(const StringHolder& s1, const StringHolder& s2,
272 result.reserve(s1.Length() + s2.Length() + s3.Length() + s4.Length() +
275 result += s2;
284 string StrCat(const StringHolder& s1, const StringHolder& s2,
289 result.reserve(s1.Length() + s2.Length() + s3.Length() + s4.Length() +
292 result += s2;
302 string StrCat(const StringHolder& s1, const StringHolder& s2,
307 result.reserve(s1.Length() + s2.Length() + s3.Length() + s4.Length() +
310 result += s2;
321 string StrCat(const StringHolder& s1, const StringHolder& s2,
327 result.reserve(s1.Length() + s2.Length() + s3.Length() + s4.Length() +
331 result += s2;
343 string StrCat(const StringHolder& s1, const StringHolder& s2,
350 result.reserve(s1.Length() + s2.Length() + s3.Length() + s4.Length() +
354 result += s2;
368 string StrCat(const StringHolder& s1, const StringHolder& s2,
375 result.reserve(s1.Length() + s2.Length() + s3.Length() + s4.Length() +
379 result += s2;
403 void StrAppend(string* dest, const StringHolder& s1, const StringHolder& s2) {
406 dest->reserve(dest->length() + s1.Length() + s2.Length() + 1);
408 *dest += s2;
411 void StrAppend(string* dest, const StringHolder& s1, const StringHolder& s2,
415 dest->reserve(dest->length() + s1.Length() + s2.Length() + s3.Length() + 1);
417 *dest += s2;
421 void StrAppend(string* dest, const StringHolder& s1, const StringHolder& s2,
425 dest->reserve(dest->length() + s1.Length() + s2.Length() + s3.Length() +
428 *dest += s2;
433 void StrAppend(string* dest, const StringHolder& s1, const StringHolder& s2,
438 dest->reserve(dest->length() + s1.Length() + s2.Length() + s3.Length() +
441 *dest += s2;