Home
last modified time | relevance | path

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

/external/pdfium/xfa/src/fdp/src/css/
Dfde_cssdatatable.cpp788 while (m_pCur < m_pEnd && (*m_pCur <= ' ' || *m_pCur == m_Separator)) { in NextValue()
789 ++m_pCur; in NextValue()
791 if (m_pCur >= m_pEnd) { in NextValue()
795 pStart = m_pCur; in NextValue()
797 FX_WCHAR wch = *m_pCur; in NextValue()
805 while (m_pCur < m_pEnd && (*m_pCur > ' ' && *m_pCur != m_Separator)) { in NextValue()
806 ++m_pCur; in NextValue()
808 iLength = m_pCur - pStart; in NextValue()
815 m_pCur++; in NextValue()
817 } else if (m_pEnd - m_pCur > 5 && m_pCur[3] == '(') { in NextValue()
[all …]
Dfde_cssdatatable.h103 : m_Separator(separator), m_pCur(psz), m_pEnd(psz + iLen) { in CFDE_CSSValueListParser()
115 const FX_WCHAR* m_pCur; variable
/external/pdfium/core/src/fpdfdoc/
Ddoc_form.cpp18 m_pCur = m_pStart; in CFieldNameExtractor()
21 pSubName = m_pCur; in GetNext()
22 while (m_pCur < m_pEnd && m_pCur[0] != L'.') { in GetNext()
23 m_pCur++; in GetNext()
25 size = (FX_STRSIZE)(m_pCur - pSubName); in GetNext()
26 if (m_pCur < m_pEnd && m_pCur[0] == L'.') { in GetNext()
27 m_pCur++; in GetNext()
34 const FX_WCHAR* m_pCur; member in CFieldNameExtractor