Lines Matching refs:LiteStrCat
26 // chosen to minimize the effort of converting code that uses absl::LiteStrCat &
38 // Less efficient but more compact version of absl::LiteStrCat().
40 // Given a value v (see supported types below) LiteStrCat(v) returns a new
44 inline string LiteStrCat(T v) {
55 inline string LiteStrCat(const char *v) {
62 inline string LiteStrCat(string v) {
67 inline string LiteStrCat(char v) {
74 dest->append(LiteStrCat(v)); // NOLINT
79 dest->append(LiteStrCat(v1)); // NOLINT
80 dest->append(LiteStrCat(v2)); // NOLINT
86 dest->append(LiteStrCat(v3)); // NOLINT
92 dest->append(LiteStrCat(v4)); // NOLINT