MCPcopy Create free account
hub / github.com/apache/kudu / StringAppendF

Function StringAppendF

src/kudu/gutil/stringprintf.cc:92–97  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

90}
91
92void StringAppendF(string* dst, const char* format, ...) {
93 va_list ap;
94 va_start(ap, format);
95 StringAppendV(dst, format, ap);
96 va_end(ap);
97}
98
99// Max arguments supported by StringPrintVector
100const int kStringPrintfVectorMaxArgs = 32;

Callers 13

ToStringMethod · 0.85
DoubleToStringMethod · 0.85
ToShortStringMethod · 0.85
ToStringMethod · 0.85
TEST_PFunction · 0.85
SymbolizeMethod · 0.85
ToLogFormatHexStringMethod · 0.85
HexDumpFunction · 0.85
ToDebugStringMethod · 0.85
BitmapToStringFunction · 0.85
AppendValueAsJSONMethod · 0.85
AppendAsJSONMethod · 0.85

Calls 1

StringAppendVFunction · 0.85

Tested by 1

TEST_PFunction · 0.68