Home
last modified time | relevance | path

Searched refs:lpsz (Results 1 – 6 of 6) sorted by relevance

/external/pdfium/core/src/fxcrt/
Dfx_basic_wstring.cpp43 void CFX_WideString::InitStr(FX_LPCWSTR lpsz, FX_STRSIZE nLen) in InitStr() argument
46 nLen = lpsz ? (FX_STRSIZE)FXSYS_wcslen(lpsz) : 0; in InitStr()
53 FXSYS_memcpy32(m_pData->m_String, lpsz, nLen * sizeof(FX_WCHAR)); in InitStr()
120 const CFX_WideString& CFX_WideString::operator=(FX_LPCWSTR lpsz) in operator =() argument
122 if (lpsz == NULL || lpsz[0] == 0) { in operator =()
125 AssignCopy((FX_STRSIZE)FXSYS_wcslen(lpsz), lpsz); in operator =()
162 const CFX_WideString& CFX_WideString::operator+=(FX_LPCWSTR lpsz) in operator +=() argument
164 if (lpsz) { in operator +=()
165 ConcatInPlace((FX_STRSIZE)FXSYS_wcslen(lpsz), lpsz); in operator +=()
304 int CFX_WideString::Compare(FX_LPCWSTR lpsz) const in Compare()
[all …]
Dfx_basic_bstring.cpp81 CFX_ByteString::CFX_ByteString(FX_LPCSTR lpsz, FX_STRSIZE nLen) in CFX_ByteString() argument
84 nLen = lpsz ? (FX_STRSIZE)FXSYS_strlen(lpsz) : 0; in CFX_ByteString()
89 FXSYS_memcpy32(m_pData->m_String, lpsz, nLen * sizeof(char)); in CFX_ByteString()
95 CFX_ByteString::CFX_ByteString(FX_LPCBYTE lpsz, FX_STRSIZE nLen) in CFX_ByteString() argument
100 FXSYS_memcpy32(m_pData->m_String, lpsz, nLen * sizeof(char)); in CFX_ByteString()
150 const CFX_ByteString& CFX_ByteString::operator=(FX_LPCSTR lpsz) in operator =() argument
152 if (lpsz == NULL || lpsz[0] == 0) { in operator =()
155 AssignCopy((FX_STRSIZE)FXSYS_strlen(lpsz), lpsz); in operator =()
204 const CFX_ByteString& CFX_ByteString::operator+=(FX_LPCSTR lpsz) in operator +=() argument
206 if (lpsz) { in operator +=()
[all …]
Dfx_basic_buffer.cpp150 CFX_ByteTextBuf& CFX_ByteTextBuf::operator << (FX_BSTR lpsz) in operator <<() argument
152 AppendBlock((FX_LPCBYTE)lpsz, lpsz.GetLength()); in operator <<()
235 CFX_WideTextBuf& CFX_WideTextBuf::operator << (FX_LPCWSTR lpsz) in operator <<() argument
237 AppendBlock(lpsz, (FX_STRSIZE)FXSYS_wcslen(lpsz)*sizeof(FX_WCHAR)); in operator <<()
500 FX_INT32 IFX_BufferArchive::AppendString(FX_BSTR lpsz) in AppendString() argument
502 return AppendBlock((FX_LPCBYTE)lpsz, lpsz.GetLength()); in AppendString()
/external/chromium_org/third_party/npapi/npspy/windows/
Ddirpick.cpp202 LPSTR lpsz; in fillListBox() local
204 lpsz = strchr(lpszLast + lstrlen(szUNCRoot), '\\'); in fillListBox()
206 lpsz = strchr(lpszLast, '\\'); in fillListBox()
207 if(lpsz != NULL) { in fillListBox()
209 ch = *(++lpsz); in fillListBox()
211 ch = *lpsz; in fillListBox()
212 *lpsz = 0; in fillListBox()
223 UINT i = (NULL != lpsz) ? ID_ICON_FOLDEROPEN : ID_ICON_OPENSELECT; in fillListBox()
226 if(NULL == lpsz) in fillListBox()
230 *lpsz = ch; in fillListBox()
[all …]
/external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
DSDL_syswm.c220 Uint16 *lpsz = SDL_iconv_utf8_ucs2(title); in WIN_SetWMCaption()
221 size_t len = WideCharToMultiByte(CP_ACP, 0, lpsz, -1, NULL, 0, NULL, NULL); in WIN_SetWMCaption()
223 WideCharToMultiByte(CP_ACP, 0, lpsz, -1, cvt, len, NULL, NULL); in WIN_SetWMCaption()
226 SDL_free(lpsz); in WIN_SetWMCaption()
/external/pdfium/core/include/fxcrt/
Dfx_basic.h109 CFX_ByteTextBuf& operator << (FX_BSTR lpsz);
124 void operator = (FX_LPCWSTR lpsz);
134 CFX_WideTextBuf& operator << (FX_LPCWSTR lpsz);
254 FX_INT32 AppendString(FX_BSTR lpsz);