Searched refs:lpszFormat (Results 1 – 3 of 3) sorted by relevance
/external/pdfium/core/src/fxcrt/ |
D | fx_basic_wstring.cpp | 785 void CFX_WideString::FormatV(FX_LPCWSTR lpszFormat, va_list argList) in FormatV() argument 794 for (FX_LPCWSTR lpsz = lpszFormat; *lpsz != 0; lpsz ++) { in FormatV() 819 lpszFormat = (FX_LPCWSTR)L"Bad width"; in FormatV() 836 lpszFormat = (FX_LPCWSTR)L"Bad precision"; in FormatV() 992 …FXSYS_vswprintf((wchar_t*)m_pData->m_String, nMaxLen + 1, (const wchar_t*)lpszFormat, argListSave); in FormatV() 997 void CFX_WideString::Format(FX_LPCWSTR lpszFormat, ...) in Format() argument 1000 va_start(argList, lpszFormat); in Format() 1001 FormatV(lpszFormat, argList); in Format()
|
D | fx_basic_bstring.cpp | 489 void CFX_ByteString::FormatV(FX_LPCSTR lpszFormat, va_list argList) in FormatV() argument 498 for (FX_LPCSTR lpsz = lpszFormat; *lpsz != 0; lpsz ++) { in FormatV() 523 lpszFormat = "Bad width"; in FormatV() 540 lpszFormat = "Bad precision"; in FormatV() 696 FXSYS_vsprintf(m_pData->m_String, lpszFormat, argListSave); in FormatV() 701 void CFX_ByteString::Format(FX_LPCSTR lpszFormat, ...) in Format() argument 704 va_start(argList, lpszFormat); in Format() 705 FormatV(lpszFormat, argList); in Format()
|
/external/pdfium/core/include/fxcrt/ |
D | fx_string.h | 279 void Format(FX_LPCSTR lpszFormat, ... ); 281 void FormatV(FX_LPCSTR lpszFormat, va_list argList); 705 void Format(FX_LPCWSTR lpszFormat, ... ); 707 void FormatV(FX_LPCWSTR lpszFormat, va_list argList);
|