Home
last modified time | relevance | path

Searched refs:GetCharByIndex (Results 1 – 5 of 5) sorted by relevance

/external/pdfium/xfa/src/fee/include/
Difde_txtedtbuf.h21 virtual FX_WCHAR GetCharByIndex(int32_t nIndex) const = 0;
/external/pdfium/xfa/src/fee/src/fee/
Dfde_txtedtpage.cpp257 FX_WCHAR wChar = m_pEditEngine->GetTextBuf()->GetCharByIndex(nCaret); in GetCharIndex()
260 if (m_pEditEngine->GetTextBuf()->GetCharByIndex(nCaret - 1) == in GetCharIndex()
471 FX_WCHAR wChar = pBuf->GetCharByIndex( in LoadPage()
473 FX_WCHAR wCharPre = pBuf->GetCharByIndex( in LoadPage()
482 FX_WCHAR wChar = pBuf->GetCharByIndex( in LoadPage()
Dfde_txtedtengine.cpp647 FX_WCHAR wChar = m_pTxtBuf->GetCharByIndex(nStart - 1); in Insert()
726 if (nStart > 2 && m_pTxtBuf->GetCharByIndex(nStart - 1) == L'\n' && in Delete()
727 m_pTxtBuf->GetCharByIndex(nStart - 2) == L'\r') { in Delete()
737 (m_pTxtBuf->GetCharByIndex(nStart) == L'\r') && in Delete()
738 (m_pTxtBuf->GetCharByIndex(nStart + 1) == L'\n')) { in Delete()
820 FX_WCHAR wChar = m_pTxtBuf->GetCharByIndex(nStart - 1); in Replace()
1755 (m_pTxtBuf->GetCharByIndex(nCaret) == L'\r') && in MoveForward()
1756 (m_pTxtBuf->GetCharByIndex(nCaret + 1) == L'\n')) { in MoveForward()
1768 if (nCaret > 2 && m_pTxtBuf->GetCharByIndex(nCaret - 1) == L'\n' && in MoveBackward()
1769 m_pTxtBuf->GetCharByIndex(nCaret - 2) == L'\r') { in MoveBackward()
[all …]
Dfde_txtedtbuf.h66 virtual FX_WCHAR GetCharByIndex(int32_t nIndex) const;
Dfde_txtedtbuf.cpp204 FX_WCHAR CFDE_TxtEdtBuf::GetCharByIndex(int32_t nIndex) const { in GetCharByIndex() function in CFDE_TxtEdtBuf