OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:lpszformat
(Results
1 - 5
of
5
) sorted by null
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
rtutils.h
30
DWORD __cdecl TracePrintfA(DWORD dwTraceID,LPCSTR
lpszFormat
,...);
31
DWORD __cdecl TracePrintfExA(DWORD dwTraceID,DWORD dwFlags,LPCSTR
lpszFormat
,...);
32
DWORD WINAPI TraceVprintfExA(DWORD dwTraceID,DWORD dwFlags,LPCSTR
lpszFormat
,va_list arglist);
45
DWORD __cdecl TracePrintfW(DWORD dwTraceID,LPCWSTR
lpszFormat
,...);
46
DWORD __cdecl TracePrintfExW(DWORD dwTraceID,DWORD dwFlags,LPCWSTR
lpszFormat
,...);
47
DWORD WINAPI TraceVprintfExW(DWORD dwTraceID,DWORD dwFlags,LPCWSTR
lpszFormat
,va_list arglist);
winuser.h
[
all
...]
/external/pdfium/core/src/fxcrt/
fx_basic_bstring.cpp
466
void CFX_ByteString::FormatV(const FX_CHAR*
lpszFormat
, va_list argList) {
477
for (const FX_CHAR* lpsz =
lpszFormat
; *lpsz != 0; lpsz++) {
501
lpszFormat
= "Bad width";
518
lpszFormat
= "Bad precision";
673
FXSYS_vsnprintf(m_pData->m_String, nMaxLen - 1,
lpszFormat
, argListSave);
678
void CFX_ByteString::Format(const FX_CHAR*
lpszFormat
, ...) {
680
va_start(argList,
lpszFormat
);
681
FormatV(
lpszFormat
, argList);
fx_basic_wstring.cpp
740
void CFX_WideString::FormatV(const FX_WCHAR*
lpszFormat
, va_list argList) {
751
for (const FX_WCHAR* lpsz =
lpszFormat
; *lpsz != 0; lpsz++) {
773
lpszFormat
= L"Bad width";
790
lpszFormat
= L"Bad precision";
944
(const wchar_t*)
lpszFormat
, argListSave);
949
void CFX_WideString::Format(const FX_WCHAR*
lpszFormat
, ...) {
951
va_start(argList,
lpszFormat
);
952
FormatV(
lpszFormat
, argList);
/external/pdfium/core/include/fxcrt/
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);
Completed in 156 milliseconds