HomeSort by relevance Sort by last modified time
    Searched full:lpsz (Results 1 - 24 of 24) sorted by null

  /external/pdfium/core/src/fxcrt/
fx_basic_wstring.cpp 60 CFX_WideString::CFX_WideString(const FX_WCHAR* lpsz, FX_STRSIZE nLen) {
62 nLen = lpsz ? FXSYS_wcslen(lpsz) : 0;
67 FXSYS_memcpy(m_pData->m_String, lpsz, nLen * sizeof(FX_WCHAR));
121 const CFX_WideString& CFX_WideString::operator=(const FX_WCHAR* lpsz) {
122 if (!lpsz || lpsz[0] == 0) {
125 AssignCopy(FXSYS_wcslen(lpsz), lpsz); local
161 const CFX_WideString& CFX_WideString::operator+=(const FX_WCHAR* lpsz) {
163 ConcatInPlace(FXSYS_wcslen(lpsz), lpsz); local
529 const FX_WCHAR* lpsz = FXSYS_wcsstr(m_pData->m_String + nStart, lpszSub); local
540 const FX_WCHAR* lpsz = FXSYS_wcschr(m_pData->m_String + nStart, ch); local
581 const FX_WCHAR* lpsz = m_pData->m_String; local
    [all...]
fx_basic_bstring.cpp 81 CFX_ByteString::CFX_ByteString(const FX_CHAR* lpsz, FX_STRSIZE nLen) {
83 nLen = lpsz ? FXSYS_strlen(lpsz) : 0;
88 FXSYS_memcpy(m_pData->m_String, lpsz, nLen);
94 CFX_ByteString::CFX_ByteString(const uint8_t* lpsz, FX_STRSIZE nLen) {
98 FXSYS_memcpy(m_pData->m_String, lpsz, nLen);
145 const CFX_ByteString& CFX_ByteString::operator=(const FX_CHAR* lpsz) {
146 if (!lpsz || lpsz[0] == 0) {
149 AssignCopy(FXSYS_strlen(lpsz), lpsz) local
197 ConcatInPlace(FXSYS_strlen(lpsz), lpsz); local
750 const FX_CHAR* lpsz = FXSYS_strchr(m_pData->m_String + nStart, ch); local
798 const FX_CHAR* lpsz = local
    [all...]
fx_basic_buffer.cpp 123 CFX_ByteTextBuf& CFX_ByteTextBuf::operator<<(const CFX_ByteStringC& lpsz) {
124 AppendBlock(lpsz.GetPtr(), lpsz.GetLength());
197 CFX_WideTextBuf& CFX_WideTextBuf::operator<<(const FX_WCHAR* lpsz) {
198 AppendBlock(lpsz, FXSYS_wcslen(lpsz) * sizeof(FX_WCHAR));
427 int32_t IFX_BufferArchive::AppendString(const CFX_ByteStringC& lpsz) {
428 return AppendBlock(lpsz.GetPtr(), lpsz.GetLength());
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mapiutil.h 181 STDAPI_(WINBOOL) FBinFromHex(LPTSTR lpsz,LPBYTE lpb);
182 STDAPI_(SCODE) ScBinFromHexBounded(LPTSTR lpsz,LPBYTE lpb,ULONG cb);
183 STDAPI_(void) HexFromBin(LPBYTE lpb,int cb,LPTSTR lpsz);
184 STDAPI_(ULONG) UlFromSzHex(LPCTSTR lpsz); variable
185 STDAPI HrEntryIDFromSz(LPTSTR lpsz,ULONG *lpcb,LPENTRYID *lppEntryID);
186 STDAPI HrSzFromEntryID(ULONG cb,LPENTRYID lpEntryID,LPTSTR *lpsz);
191 STDAPI_(LPTSTR) SzFindCh(LPCTSTR lpsz,USHORT ch);
192 STDAPI_(LPTSTR) SzFindLastCh(LPCTSTR lpsz,USHORT ch);
193 STDAPI_(LPTSTR) SzFindSz(LPCTSTR lpsz,LPCTSTR lpszKey);
194 STDAPI_(unsigned int) UFromSz(LPCTSTR lpsz); variable
    [all...]
mapiwin.h 34 WINBOOL WINAPI IsBadBoundedStringPtr(const void *lpsz,UINT cchMax);
mqmail.h 43 LPSTR lpsz; member in union:MQMailFormFieldData_tag
wabutil.h 181 STDAPI_(LPTSTR) SzFindCh(LPCTSTR lpsz,USHORT ch);
182 STDAPI_(LPTSTR) SzFindLastCh(LPCTSTR lpsz,USHORT ch);
183 STDAPI_(LPTSTR) SzFindSz(LPCTSTR lpsz,LPCTSTR lpszKey);
184 STDAPI_(unsigned int) UFromSz(LPCTSTR lpsz); variable
mapinls.h 82 WINBOOL WINAPI MNLS_IsBadStringPtrW(LPCWSTR lpsz,UINT ucchMax);
windowsx.h     [all...]
windowsx.h16     [all...]
objbase.h 279 WINOLEAPI CLSIDFromString(LPOLESTR lpsz,LPCLSID pclsid);
281 WINOLEAPI IIDFromString(LPOLESTR lpsz,LPIID lpiid);
286 WINOLEAPI_(int) StringFromGUID2(REFGUID rguid,LPOLESTR lpsz,int cchMax);
wabapi.h 102 LPTSTR lpsz; member in struct:_WABEXTDISPLAY
shlwapi.h 390 LWSTDAPI_(void) PathQuoteSpacesA(LPSTR lpsz); variable
391 LWSTDAPI_(void) PathQuoteSpacesW(LPWSTR lpsz); variable
428 LWSTDAPI_(void) PathUnquoteSpacesA(LPSTR lpsz); variable
429 LWSTDAPI_(void) PathUnquoteSpacesW(LPWSTR lpsz); variable
    [all...]
winuser.h     [all...]
wingdi.h     [all...]
vfw.h     [all...]
mapidefs.h 175 #define LPSZ lpszW
181 #define LPSZ lpszA
    [all...]
wabdefs.h 172 #define LPSZ lpszW
178 #define LPSZ lpszA
    [all...]
commctrl.h     [all...]
shlobj.h     [all...]
winbase.h     [all...]
  /external/pdfium/core/include/fxcrt/
fx_basic.h 99 CFX_ByteTextBuf& operator<<(const CFX_ByteStringC& lpsz);
107 void operator=(const FX_WCHAR* lpsz);
117 CFX_WideTextBuf& operator<<(const FX_WCHAR* lpsz);
215 int32_t AppendString(const CFX_ByteStringC& lpsz);
  /external/pdfium/xfa/src/fgas/src/localization/
fx_locale.cpp 68 const FX_WCHAR* lpsz = local
70 return (lpsz == NULL) ? -1 : (FX_STRSIZE)(lpsz - wsSymbols.GetPtr());
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 

Completed in 1317 milliseconds