Lines Matching refs:pstrSource
595 char* pstrSource = m_pData->m_String; in Remove() local
597 while (pstrSource < pstrEnd) { in Remove()
598 if (*pstrSource == chRemove) in Remove()
600 pstrSource++; in Remove()
602 if (pstrSource == pstrEnd) in Remove()
605 ptrdiff_t copied = pstrSource - m_pData->m_String; in Remove()
607 pstrSource = m_pData->m_String + copied; in Remove()
610 char* pstrDest = pstrSource; in Remove()
611 while (pstrSource < pstrEnd) { in Remove()
612 if (*pstrSource != chRemove) { in Remove()
613 *pstrDest = *pstrSource; in Remove()
616 pstrSource++; in Remove()
620 size_t nCount = static_cast<size_t>(pstrSource - pstrDest); in Remove()