Home
last modified time | relevance | path

Searched refs:nEndChar (Results 1 – 7 of 7) sorted by relevance

/external/pdfium/fpdfsdk/include/pdfwindow/
DPWL_EditCtrl.h66 void SetSel(int32_t nStartChar, int32_t nEndChar);
67 void GetSel(int32_t& nStartChar, int32_t& nEndChar) const;
70 int32_t& nEndChar) const;
71 CFX_WideString GetText(int32_t& nStartChar, int32_t& nEndChar) const;
DPWL_ComboBox.h78 void SetEditSel(int32_t nStartChar, int32_t nEndChar);
79 void GetEditSel(int32_t& nStartChar, int32_t& nEndChar) const;
/external/pdfium/fpdfsdk/src/pdfwindow/
DPWL_EditCtrl.cpp390 void CPWL_EditCtrl::SetSel(int32_t nStartChar, int32_t nEndChar) { in SetSel() argument
391 m_pEdit->SetSel(nStartChar, nEndChar); in SetSel()
394 void CPWL_EditCtrl::GetSel(int32_t& nStartChar, int32_t& nEndChar) const { in GetSel()
395 m_pEdit->GetSel(nStartChar, nEndChar); in GetSel()
605 int32_t& nEndChar) const { in GetTextRange()
608 nEndChar = m_pEdit->WordPlaceToWordIndex( in GetTextRange()
613 int32_t& nEndChar) const { in GetText()
615 CPVT_WordPlace wpEnd = m_pEdit->WordIndexToWordPlace(nEndChar); in GetText()
DPWL_ComboBox.cpp257 void CPWL_ComboBox::SetEditSel(int32_t nStartChar, int32_t nEndChar) { in SetEditSel() argument
259 m_pEdit->SetSel(nStartChar, nEndChar); in SetEditSel()
263 void CPWL_ComboBox::GetEditSel(int32_t& nStartChar, int32_t& nEndChar) const { in GetEditSel()
265 nEndChar = -1; in GetEditSel()
268 m_pEdit->GetSel(nStartChar, nEndChar); in GetEditSel()
/external/pdfium/fpdfsdk/src/fxedit/
Dfxet_edit.cpp908 void CFX_Edit::SetSel(int32_t nStartChar, int32_t nEndChar) { in SetSel() argument
910 if (nStartChar == 0 && nEndChar < 0) { in SetSel()
915 if (nStartChar < nEndChar) { in SetSel()
917 m_pVT->WordIndexToWordPlace(nEndChar)); in SetSel()
919 SetSel(m_pVT->WordIndexToWordPlace(nEndChar), in SetSel()
946 void CFX_Edit::GetSel(int32_t& nStartChar, int32_t& nEndChar) const { in GetSel()
948 nEndChar = -1; in GetSel()
954 nEndChar = m_pVT->WordPlaceToWordIndex(m_SelState.EndPos); in GetSel()
957 nEndChar = m_pVT->WordPlaceToWordIndex(m_SelState.BeginPos); in GetSel()
961 nEndChar = m_pVT->WordPlaceToWordIndex(m_wpCaret); in GetSel()
/external/pdfium/fpdfsdk/include/fxedit/
Dfx_edit.h282 virtual void SetSel(int32_t nStartChar, int32_t nEndChar) = 0;
284 virtual void GetSel(int32_t& nStartChar, int32_t& nEndChar) const = 0;
Dfxet_edit.h620 void SetSel(int32_t nStartChar, int32_t nEndChar) override;
621 void GetSel(int32_t& nStartChar, int32_t& nEndChar) const override;