Searched refs:FX_STRSIZE (Results 1 - 23 of 23) sorted by relevance

/external/pdfium/core/src/fpdftext/
H A Dunicodenormalization.cpp20 FX_STRSIZE FX_Unicode_GetNormalization(FX_WCHAR wch, FX_LPWSTR pDst)
50 return (FX_STRSIZE)wFind;
52 FX_STRSIZE FX_WideString_GetNormalization(FX_WSTR wsSrc, FX_LPWSTR pDst)
54 FX_STRSIZE nCount = 0;
55 for (FX_STRSIZE len = 0; len < wsSrc.GetLength(); len ++) {
65 FX_STRSIZE FX_WideString_GetNormalization(FX_WSTR wsSrc, CFX_WideString &wsDst)
67 FX_STRSIZE nLen = FX_WideString_GetNormalization(wsSrc, (FX_LPWSTR)NULL);
H A Dtext_int.h212 FX_STRSIZE FX_Unicode_GetNormalization(FX_WCHAR wch, FX_LPWSTR pDst);
H A Dfpdf_text_int.cpp1142 FX_STRSIZE nCount = FX_Unicode_GetNormalization(wChar, pDst);
1181 FX_STRSIZE nCount = FX_Unicode_GetNormalization(wChar, pDst);
1468 FX_STRSIZE nItems = actText.GetLength();
1473 for (FX_STRSIZE i = 0; i < nItems; i++) {
1486 for (FX_STRSIZE j = 0; j < nItems; j++) {
1521 FX_STRSIZE nItems = actText.GetLength();
1538 for (FX_STRSIZE k = 0; k < nItems; k++) {
1883 FX_STRSIZE nCount = strCurText.GetLength();
2255 FX_STRSIZE len = findwhat.GetLength();
H A Dfpdf_text.cpp295 FX_STRSIZE nCount = FX_Unicode_GetNormalization(wChar, pDst);
/external/pdfium/core/include/fxcrt/
H A Dfx_string.h15 typedef int FX_STRSIZE; typedef
28 CFX_ByteStringC(FX_LPCBYTE ptr, FX_STRSIZE size)
37 m_Length = ptr ? (FX_STRSIZE)FXSYS_strlen(ptr) : 0;
46 CFX_ByteStringC(FX_LPCSTR ptr, FX_STRSIZE len)
50 m_Length = (FX_STRSIZE)FXSYS_strlen(ptr);
67 m_Length = (FX_STRSIZE)FXSYS_strlen(src);
91 FX_DWORD GetID(FX_STRSIZE start_pos = 0) const;
103 FX_STRSIZE GetLength() const
118 FX_BYTE GetAt(FX_STRSIZE index) const
123 CFX_ByteStringC Mid(FX_STRSIZE inde
[all...]
H A Dfx_basic.h27 CFX_BinaryBuf(FX_STRSIZE size, IFX_Allocator* pAllocator = NULL);
33 void EstimateSize(FX_STRSIZE size, FX_STRSIZE alloc_step = 0);
35 void AppendBlock(const void* pBuf, FX_STRSIZE size);
37 void AppendFill(FX_BYTE byte, FX_STRSIZE count);
52 void InsertBlock(FX_STRSIZE pos, const void* pBuf, FX_STRSIZE size);
54 void AttachData(void* pBuf, FX_STRSIZE size);
56 void CopyData(const void* pBuf, FX_STRSIZE size);
67 FX_STRSIZE GetSiz
[all...]
/external/pdfium/core/src/fxcrt/
H A Dfx_basic_bstring.cpp81 CFX_ByteString::CFX_ByteString(FX_LPCSTR lpsz, FX_STRSIZE nLen)
84 nLen = lpsz ? (FX_STRSIZE)FXSYS_strlen(lpsz) : 0;
95 CFX_ByteString::CFX_ByteString(FX_LPCBYTE lpsz, FX_STRSIZE nLen)
155 AssignCopy((FX_STRSIZE)FXSYS_strlen(lpsz), lpsz);
192 void CFX_ByteString::Load(FX_LPCBYTE buf, FX_STRSIZE len)
207 ConcatInPlace((FX_STRSIZE)FXSYS_strlen(lpsz), lpsz);
268 FX_STRSIZE len = str.GetLength();
274 for (FX_STRSIZE i = 0; i < len; i ++) {
293 void CFX_ByteString::AssignCopy(FX_STRSIZE nSrcLen, FX_LPCSTR lpszSrcData)
307 FX_STRSIZE nDataLengt
[all...]
H A Dfx_basic_wstring.cpp43 void CFX_WideString::InitStr(FX_LPCWSTR lpsz, FX_STRSIZE nLen)
46 nLen = lpsz ? (FX_STRSIZE)FXSYS_wcslen(lpsz) : 0;
103 void CFX_WideString::ReleaseBuffer(FX_STRSIZE nNewLength)
110 nNewLength = m_pData ? (FX_STRSIZE)FXSYS_wcslen(m_pData->m_String) : 0;
125 AssignCopy((FX_STRSIZE)FXSYS_wcslen(lpsz), lpsz);
165 ConcatInPlace((FX_STRSIZE)FXSYS_wcslen(lpsz), lpsz);
241 void CFX_WideString::ConcatInPlace(FX_STRSIZE nSrcLen, FX_LPCWSTR lpszSrcData)
263 void CFX_WideString::ConcatCopy(FX_STRSIZE nSrc1Len, FX_LPCWSTR lpszSrc1Data,
264 FX_STRSIZE nSrc2Len, FX_LPCWSTR lpszSrc2Data)
266 FX_STRSIZE nNewLe
[all...]
H A Dfx_basic_buffer.cpp8 FX_STRSIZE FX_ftoa(FX_FLOAT f, FX_LPSTR buf);
17 CFX_BinaryBuf::CFX_BinaryBuf(FX_STRSIZE size, IFX_Allocator* pAllocator)
49 void CFX_BinaryBuf::AttachData(void* buffer, FX_STRSIZE size)
63 void CFX_BinaryBuf::EstimateSize(FX_STRSIZE size, FX_STRSIZE step)
71 void CFX_BinaryBuf::ExpandBuf(FX_STRSIZE add_size)
73 FX_STRSIZE new_size = add_size + m_DataSize;
98 void CFX_BinaryBuf::CopyData(const void* pStr, FX_STRSIZE size)
113 void CFX_BinaryBuf::AppendBlock(const void* pBuf, FX_STRSIZE size)
121 void CFX_BinaryBuf::InsertBlock(FX_STRSIZE po
[all...]
H A Dfx_basic_utf.cpp79 CFX_ByteString FX_UTF8Encode(FX_LPCWSTR pwsStr, FX_STRSIZE len)
83 len = (FX_STRSIZE)FXSYS_wcslen(pwsStr);
91 void FX_UTF8Encode(FX_LPCWSTR pwsStr, FX_STRSIZE len, CFX_ByteStringL &utf8Str, IFX_Allocator* pAllocator)
95 len = (FX_STRSIZE)FXSYS_wcslen(pwsStr);
/external/pdfium/core/include/fxcodec/
H A Dfx_codec_provider.h33 virtual FX_BOOL Encode(const class CFX_DIBSource* pSource, FX_LPBYTE& dest_buf, FX_STRSIZE& dest_size, int quality = 75,
H A Dfx_codec.h164 virtual FX_BOOL Encode(const class CFX_DIBSource* pSource, FX_LPBYTE& dest_buf, FX_STRSIZE& dest_size, int quality = 75,
/external/pdfium/core/src/fpdfapi/fpdf_parser/
H A Dfpdf_parser_utility.cpp141 return CFX_ByteStringC(pStart, (FX_STRSIZE)(m_dwCurPos - (pStart - m_pData)));
167 return CFX_ByteStringC(pStart, (FX_STRSIZE)(m_dwCurPos - (pStart - m_pData)));
282 result.ReleaseBuffer((FX_STRSIZE)(pDest - pDestStart));
H A Dfpdf_parser_decode.cpp448 len = (FX_STRSIZE)FXSYS_wcslen(pString);
/external/pdfium/core/src/fpdfapi/
H A Dfpdf_basic_module.cpp66 FX_STRSIZE folder_len = folder.GetLength();
/external/pdfium/core/src/fpdfapi/fpdf_edit/
H A Dfpdf_edit_image.cpp94 void _DCTEncodeBitmap(CPDF_Dictionary *pBitmapDict, const CFX_DIBitmap* pBitmap, int quality, FX_LPBYTE &buf, FX_STRSIZE &size)
97 void _JBIG2EncodeBitmap(CPDF_Dictionary *pBitmapDict, const CFX_DIBitmap *pBitmap, CPDF_Document *pDoc, FX_LPBYTE &buf, FX_STRSIZE &size, FX_BOOL bLossLess)
117 FX_STRSIZE dest_pitch = 0, dest_size = 0, opType = -1;
212 FX_STRSIZE mask_size;
/external/pdfium/core/src/fpdfdoc/
H A Ddoc_form.cpp41 void GetNext(FX_LPCWSTR &pSubName, FX_STRSIZE& size)
47 size = (FX_STRSIZE)(m_pCur - pSubName);
185 FX_STRSIZE nLength;
208 FX_STRSIZE nLength;
226 FX_STRSIZE nLength;
256 FX_STRSIZE nLength;
/external/pdfium/core/src/fxcodec/codec/
H A Dcodec_int.h141 FX_BOOL Encode(const CFX_DIBSource* pSource, FX_LPBYTE& dest_buf, FX_STRSIZE& dest_size, int quality, FX_LPCBYTE icc_buf, FX_DWORD icc_length);
H A Dfx_codec_jpeg.cpp177 static void _JpegEncode(const CFX_DIBSource* pSource, FX_LPBYTE& dest_buf, FX_STRSIZE& dest_size, int quality, FX_LPCBYTE icc_buf, FX_DWORD icc_length)
271 dest_size = dest_buf_length - (FX_STRSIZE)dest.free_in_buffer;
570 FX_BOOL CCodec_JpegModule::Encode(const CFX_DIBSource* pSource, FX_LPBYTE& dest_buf, FX_STRSIZE& dest_size, int quality, FX_LPCBYTE icc_buf, FX_DWORD icc_length)
/external/pdfium/fpdfsdk/include/
H A Dfsdk_baseform.h232 FX_BOOL FDFToURLEncodedData(FX_LPBYTE& pBuf, FX_STRSIZE& nBufSize);
/external/pdfium/core/src/fpdfapi/fpdf_font/
H A Dfpdf_font_cid.cpp206 FX_BYTE digit1 = ((FX_DWORD)i * 2 + 1 < size) ? second.GetAt((FX_STRSIZE)i * 2 + 1) : 0;
207 FX_BYTE digit2 = ((FX_DWORD)i * 2 + 2 < size) ? second.GetAt((FX_STRSIZE)i * 2 + 2) : 0;
/external/pdfium/core/src/fxge/ge/
H A Dfx_ge_ps.cpp416 FX_STRSIZE output_size = 0;
/external/pdfium/fpdfsdk/src/
H A Dfsdk_baseform.cpp2277 FX_STRSIZE nBufSize = textBuf.GetLength();
2337 FX_BOOL CPDFSDK_InterForm::FDFToURLEncodedData(FX_LPBYTE& pBuf, FX_STRSIZE& nBufSize)
2434 FX_STRSIZE nBufSize = FdfBuffer.GetLength();

Completed in 1049 milliseconds