MCPcopy Create free account
hub / github.com/apache/impala / StrAppend

Function StrAppend

be/src/gutil/strings/strcat.cc:182–185  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

180 DCHECK_GT(uintptr_t((src).data() - (dest).data()), uintptr_t((dest).size()))
181
182void StrAppend(string *result, const AlphaNum &a) {
183 DCHECK_NO_OVERLAP(*result, a);
184 result->append(a.data(), a.size());
185}
186
187void StrAppend(string *result, const AlphaNum &a, const AlphaNum &b) {
188 DCHECK_NO_OVERLAP(*result, a);

Callers 5

GetTestDataDirectoryFunction · 0.85
JoinKeysIteratorFunction · 0.85
JoinElementsIteratorFunction · 0.85

Calls 8

Append2Function · 0.85
Append1Function · 0.85
Append4Function · 0.85
appendMethod · 0.45
dataMethod · 0.45
sizeMethod · 0.45
beginMethod · 0.45

Tested by 1

GetTestDataDirectoryFunction · 0.68