HomeSort by relevance Sort by last modified time
    Searched refs:nCopyLength (Results 1 - 3 of 3) sorted by null

  /external/pdfium/xfa/fde/
cfde_txtedtbuf.cpp 105 int32_t nCopyLength = chunkHeader->nUsed - charIndex;
108 if (nLeave <= nCopyLength) {
109 nCopyLength = nLeave;
111 FXSYS_memcpy(lpDstBuf, lpSrcBuf, nCopyLength * sizeof(FX_WCHAR));
118 nLeave -= nCopyLength;
119 lpDstBuf += nCopyLength;
120 nCopyLength = chunkHeader->nUsed;
  /external/pdfium/core/fxcrt/
fx_basic_bstring.cpp 277 FX_STRSIZE nCopyLength = std::min(m_pData->m_nDataLength, nNewLength);
278 pNewData->CopyContents(m_pData->m_String, nCopyLength);
279 pNewData->m_nDataLength = nCopyLength;
fx_basic_wstring.cpp 226 FX_STRSIZE nCopyLength = std::min(m_pData->m_nDataLength, nNewLength);
227 pNewData->CopyContents(m_pData->m_String, nCopyLength);
228 pNewData->m_nDataLength = nCopyLength;

Completed in 95 milliseconds