Searched refs:lpszFormat (Results 1 – 3 of 3) sorted by relevance
/external/pdfium/core/src/fxcrt/ |
D | fx_basic_bstring.cpp | 466 void CFX_ByteString::FormatV(const FX_CHAR* lpszFormat, va_list argList) { in FormatV() argument 477 for (const FX_CHAR* lpsz = lpszFormat; *lpsz != 0; lpsz++) { in FormatV() 501 lpszFormat = "Bad width"; in FormatV() 518 lpszFormat = "Bad precision"; in FormatV() 673 FXSYS_vsnprintf(m_pData->m_String, nMaxLen - 1, lpszFormat, argListSave); in FormatV() 678 void CFX_ByteString::Format(const FX_CHAR* lpszFormat, ...) { in Format() argument 680 va_start(argList, lpszFormat); in Format() 681 FormatV(lpszFormat, argList); in Format()
|
D | fx_basic_wstring.cpp | 740 void CFX_WideString::FormatV(const FX_WCHAR* lpszFormat, va_list argList) { in FormatV() argument 751 for (const FX_WCHAR* lpsz = lpszFormat; *lpsz != 0; lpsz++) { in FormatV() 773 lpszFormat = L"Bad width"; in FormatV() 790 lpszFormat = L"Bad precision"; in FormatV() 944 (const wchar_t*)lpszFormat, argListSave); in FormatV() 949 void CFX_WideString::Format(const FX_WCHAR* lpszFormat, ...) { in Format() argument 951 va_start(argList, lpszFormat); in Format() 952 FormatV(lpszFormat, argList); in Format()
|
/external/pdfium/core/include/fxcrt/ |
D | fx_string.h | 245 void Format(const FX_CHAR* lpszFormat, ...); 247 void FormatV(const FX_CHAR* lpszFormat, va_list argList); 646 void Format(const FX_WCHAR* lpszFormat, ...); 648 void FormatV(const FX_WCHAR* lpszFormat, va_list argList);
|