Home
last modified time | relevance | path

Searched refs:nCaret (Results 1 – 6 of 6) sorted by relevance

/external/pdfium/xfa/src/fee/src/fee/
Dfde_txtedtblock.h100 int32_t& nCaret,
105 int32_t& nCaret,
111 int32_t& nCaret,
202 int32_t& nCaret, in Insert() argument
209 int32_t& nCaret, in Delete() argument
217 int32_t& nCaret, in Replace() argument
Dfde_txtedtengine.cpp446 int32_t nCaret; in Insert() local
450 nCaret, bBefore); in Insert()
482 int32_t nNewCaret = nBgn + nCaret; in Insert()
493 SetCaretPos(nBgn + nCaret, bBefore); in Insert()
681 int32_t nCaret = 0; in Delete() local
683 pField->Delete(nCaretInField, nCount, wsDel, nCaret, bBefore); in Delete()
684 nCaret += nBgn; in Delete()
1753 int32_t nCaret = m_nCaret; in MoveForward() local
1754 if ((nCaret + 1 < m_pTxtBuf->GetTextLength()) && in MoveForward()
1755 (m_pTxtBuf->GetCharByIndex(nCaret) == L'\r') && in MoveForward()
[all …]
Dfde_txtedtengine.h196 int32_t nCaret,
231 int32_t nCaret,
253 int32_t nCaret,
277 int32_t nCaret,
309 int32_t nCaret,
341 int32_t nCaret,
Dfde_txtedtpage.cpp241 int32_t nCaret = 0; in GetCharIndex() local
245 nCaret = m_nPageStart + pPiece->nStart; in GetCharIndex()
252 nCaret = m_nPageStart + pPiece->nStart + j; in GetCharIndex()
253 if (nCaret >= m_pEditEngine->GetTextBufLength()) { in GetCharIndex()
257 FX_WCHAR wChar = m_pEditEngine->GetTextBuf()->GetCharByIndex(nCaret); in GetCharIndex()
260 if (m_pEditEngine->GetTextBuf()->GetCharByIndex(nCaret - 1) == in GetCharIndex()
262 nCaret--; in GetCharIndex()
266 return nCaret; in GetCharIndex()
275 return nCaret; in GetCharIndex()
281 return nCaret; in GetCharIndex()
Dfde_txtedtblock.cpp240 int32_t& nCaret, in Insert() argument
264 nCaret = nIndex + in Insert()
274 int32_t& nCaret, in Delete() argument
301 nCaret = nIndex + (m_bReserveSpace && !m_bLeftAlignment) ? nCount : 0; in Delete()
309 int32_t& nCaret, in Replace() argument
341 nCaret = in Replace()
/external/pdfium/xfa/src/fwl/src/basewidget/
Dfwl_editimp.cpp742 int32_t nCaret = m_pEdtEngine->GetCaretPos(); in Paste() local
744 m_pEdtEngine->Insert(nCaret, wsPaste.c_str(), wsPaste.GetLength()); in Paste()
2043 int32_t nCaret = m_pOwner->m_pEdtEngine->GetCaretPos(); in OnKeyDown() local
2045 m_pOwner->m_pEdtEngine->Delete(nCaret, TRUE); in OnKeyDown()
2047 m_pOwner->m_pEdtEngine->Delete(nCaret); in OnKeyDown()
2093 int32_t nCaret = m_pOwner->m_pEdtEngine->GetCaretPos(); in OnChar() local
2096 m_pOwner->m_pEdtEngine->Delete(nCaret, TRUE); in OnChar()
2106 iError = m_pOwner->m_pEdtEngine->Insert(nCaret, L"\t", 1); in OnChar()
2112 iError = m_pOwner->m_pEdtEngine->Insert(nCaret, L"\n", 1); in OnChar()
2137 iError = m_pOwner->m_pEdtEngine->Insert(nCaret, &c, 1); in OnChar()