Searched refs:m_pCur (Results 1 – 3 of 3) sorted by relevance
14 : m_Separator(separator), m_pCur(psz), m_pEnd(psz + iLen) { in CFX_CSSValueListParser()22 while (m_pCur < m_pEnd && (*m_pCur <= ' ' || *m_pCur == m_Separator)) in NextValue()23 ++m_pCur; in NextValue()25 if (m_pCur >= m_pEnd) in NextValue()29 *pStart = m_pCur; in NextValue()31 wchar_t wch = *m_pCur; in NextValue()38 while (m_pCur < m_pEnd && (*m_pCur > ' ' && *m_pCur != m_Separator)) in NextValue()39 ++m_pCur; in NextValue()41 *iLength = m_pCur - *pStart; in NextValue()45 m_pCur++; in NextValue()[all …]
26 const wchar_t* m_pCur; variable
326 m_pCur = m_FullName.c_str(); in CFieldNameExtractor()327 m_pEnd = m_pCur + m_FullName.GetLength(); in CFieldNameExtractor()331 pSubName = m_pCur; in GetNext()332 while (m_pCur < m_pEnd && m_pCur[0] != L'.') in GetNext()333 m_pCur++; in GetNext()335 size = static_cast<size_t>(m_pCur - pSubName); in GetNext()336 if (m_pCur < m_pEnd && m_pCur[0] == L'.') in GetNext()337 m_pCur++; in GetNext()342 const wchar_t* m_pCur; member in __anon7287af010111::CFieldNameExtractor