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

  /external/pdfium/core/fxcrt/
fx_basic_bstring.cpp 359 FX_STRSIZE nOldLength = m_pData->m_nDataLength;
360 if (nCount > 0 && nIndex < nOldLength) {
362 if (mLength >= nOldLength) {
366 ReallocBeforeWrite(nOldLength);
367 int nCharsToCopy = nOldLength - mLength + 1;
370 m_pData->m_nDataLength = nOldLength - nCount;
fx_basic_wstring.cpp 308 FX_STRSIZE nOldLength = m_pData->m_nDataLength;
309 if (nCount > 0 && nIndex < nOldLength) {
311 if (mLength >= nOldLength) {
315 ReallocBeforeWrite(nOldLength);
316 int nCharsToCopy = nOldLength - mLength + 1;
319 m_pData->m_nDataLength = nOldLength - nCount;
  /external/pdfium/xfa/fde/
cfde_txtedtengine.cpp 749 int32_t nOldLength = wsText.GetLength();
751 FX_WCHAR* lpBuffer = wsTemp.GetBuffer(nOldLength + nLength);
755 (nOldLength - nIndex) * sizeof(FX_WCHAR));
756 wsTemp.ReleaseBuffer(nOldLength + nLength);
    [all...]

Completed in 199 milliseconds