Home
last modified time | relevance | path

Searched refs:lpszFormat (Results 1 – 3 of 3) sorted by relevance

/external/pdfium/core/src/fxcrt/
Dfx_basic_bstring.cpp489 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()
698 FXSYS_vsnprintf(m_pData->m_String, nMaxLen - 1, lpszFormat, argListSave); in FormatV()
703 void CFX_ByteString::Format(FX_LPCSTR lpszFormat, ...) in Format() argument
706 va_start(argList, lpszFormat); in Format()
707 FormatV(lpszFormat, argList); in Format()
Dfx_basic_wstring.cpp755 void CFX_WideString::FormatV(FX_LPCWSTR lpszFormat, va_list argList) in FormatV() argument
764 for (FX_LPCWSTR lpsz = lpszFormat; *lpsz != 0; lpsz ++) { in FormatV()
789 lpszFormat = L"Bad width"; in FormatV()
806 lpszFormat = L"Bad precision"; in FormatV()
962 …FXSYS_vswprintf((wchar_t*)m_pData->m_String, nMaxLen + 1, (const wchar_t*)lpszFormat, argListSave); in FormatV()
967 void CFX_WideString::Format(FX_LPCWSTR lpszFormat, ...) in Format() argument
970 va_start(argList, lpszFormat); in Format()
971 FormatV(lpszFormat, argList); in Format()
/external/pdfium/core/include/fxcrt/
Dfx_string.h297 void Format(FX_LPCSTR lpszFormat, ... );
299 void FormatV(FX_LPCSTR lpszFormat, va_list argList);
744 void Format(FX_LPCWSTR lpszFormat, ... );
746 void FormatV(FX_LPCWSTR lpszFormat, va_list argList);