Searched refs:argListCopy (Results 1 – 2 of 2) sorted by relevance
/external/pdfium/core/fxcrt/ |
D | widestring.cpp | 288 va_list argListCopy; in FormatV() local 289 va_copy(argListCopy, argList); in FormatV() 290 int maxLen = vswprintf(nullptr, 0, format, argListCopy); in FormatV() 291 va_end(argListCopy); in FormatV() 294 va_copy(argListCopy, argList); in FormatV() 295 auto guess = GuessSizeForVSWPrintf(format, argListCopy); in FormatV() 296 va_end(argListCopy); in FormatV() 304 va_copy(argListCopy, argList); in FormatV() 306 TryVSWPrintf(static_cast<size_t>(maxLen), format, argListCopy); in FormatV() 307 va_end(argListCopy); in FormatV()
|
D | bytestring.cpp | 84 va_list argListCopy; in FormatV() local 85 va_copy(argListCopy, argList); in FormatV() 86 int nMaxLen = vsnprintf(nullptr, 0, pFormat, argListCopy); in FormatV() 87 va_end(argListCopy); in FormatV() 100 va_copy(argListCopy, argList); in FormatV() 101 vsnprintf(buf.data(), nMaxLen + 1, pFormat, argListCopy); in FormatV() 102 va_end(argListCopy); in FormatV()
|