Home
last modified time | relevance | path

Searched refs:m_pCur (Results 1 – 3 of 3) sorted by relevance

/external/pdfium/core/fxcrt/css/
Dcfx_cssvaluelistparser.cpp14 : m_Separator(separator), m_pCur(psz), m_pEnd(psz + iLen) { in CFX_CSSValueListParser()
21 while (m_pCur < m_pEnd && (*m_pCur <= ' ' || *m_pCur == m_Separator)) in NextValue()
22 ++m_pCur; in NextValue()
24 if (m_pCur >= m_pEnd) in NextValue()
28 *pStart = m_pCur; in NextValue()
30 wchar_t wch = *m_pCur; in NextValue()
36 while (m_pCur < m_pEnd && (*m_pCur > ' ' && *m_pCur != m_Separator)) in NextValue()
37 ++m_pCur; in NextValue()
39 *iLength = m_pCur - *pStart; in NextValue()
43 m_pCur++; in NextValue()
[all …]
Dcfx_cssvaluelistparser.h26 const wchar_t* m_pCur; variable
/external/pdfium/core/fpdfdoc/
Dcpdf_interform.cpp305 m_pCur = m_FullName.c_str(); in CFieldNameExtractor()
306 m_pEnd = m_pCur + m_FullName.GetLength(); in CFieldNameExtractor()
310 pSubName = m_pCur; in GetNext()
311 while (m_pCur < m_pEnd && m_pCur[0] != L'.') in GetNext()
312 m_pCur++; in GetNext()
314 size = static_cast<size_t>(m_pCur - pSubName); in GetNext()
315 if (m_pCur < m_pEnd && m_pCur[0] == L'.') in GetNext()
316 m_pCur++; in GetNext()
321 const wchar_t* m_pCur; member in __anon6e52120e0111::CFieldNameExtractor