Home
last modified time | relevance | path

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

/external/pdfium/xfa/fde/css/
Dcfde_cssvaluelistparser.cpp12 : m_Separator(separator), m_pCur(psz), m_pEnd(psz + iLen) { in CFDE_CSSValueListParser()
19 while (m_pCur < m_pEnd && (*m_pCur <= ' ' || *m_pCur == m_Separator)) in NextValue()
20 ++m_pCur; in NextValue()
22 if (m_pCur >= m_pEnd) in NextValue()
26 pStart = m_pCur; in NextValue()
28 FX_WCHAR wch = *m_pCur; in NextValue()
35 while (m_pCur < m_pEnd && (*m_pCur > ' ' && *m_pCur != m_Separator)) in NextValue()
36 ++m_pCur; in NextValue()
38 iLength = m_pCur - pStart; in NextValue()
42 m_pCur++; in NextValue()
[all …]
Dcfde_cssvaluelistparser.h28 const FX_WCHAR* m_pCur; variable
/external/pdfium/core/fpdfdoc/
Dcpdf_interform.cpp306 m_pCur = m_FullName.c_str(); in CFieldNameExtractor()
307 m_pEnd = m_pCur + m_FullName.GetLength(); in CFieldNameExtractor()
311 pSubName = m_pCur; in GetNext()
312 while (m_pCur < m_pEnd && m_pCur[0] != L'.') in GetNext()
313 m_pCur++; in GetNext()
315 size = (FX_STRSIZE)(m_pCur - pSubName); in GetNext()
316 if (m_pCur < m_pEnd && m_pCur[0] == L'.') in GetNext()
317 m_pCur++; in GetNext()
322 const FX_WCHAR* m_pCur; member in __anonbef5a9e50111::CFieldNameExtractor