Home
last modified time | relevance | path

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

/external/pdfium/fpdfsdk/pwl/
Dcpwl_edit_ctrl.cpp339 void CPWL_EditCtrl::SetSelection(int32_t nStartChar, int32_t nEndChar) { in SetSelection() argument
340 m_pEdit->SetSelection(nStartChar, nEndChar); in SetSelection()
343 void CPWL_EditCtrl::GetSelection(int32_t& nStartChar, int32_t& nEndChar) const { in GetSelection()
344 m_pEdit->GetSelection(nStartChar, nEndChar); in GetSelection()
Dcpwl_edit_ctrl.h31 void SetSelection(int32_t nStartChar, int32_t nEndChar);
32 void GetSelection(int32_t& nStartChar, int32_t& nEndChar) const;
Dcpwl_combo_box.h82 void SetEditSelection(int32_t nStartChar, int32_t nEndChar);
83 void GetEditSelection(int32_t& nStartChar, int32_t& nEndChar) const;
Dcpwl_combo_box.cpp251 void CPWL_ComboBox::SetEditSelection(int32_t nStartChar, int32_t nEndChar) { in SetEditSelection() argument
253 m_pEdit->SetSelection(nStartChar, nEndChar); in SetEditSelection()
257 int32_t& nEndChar) const { in GetEditSelection()
259 nEndChar = -1; in GetEditSelection()
262 m_pEdit->GetSelection(nStartChar, nEndChar); in GetEditSelection()
Dcpwl_edit_impl.cpp683 void CPWL_EditImpl::SetSelection(int32_t nStartChar, int32_t nEndChar) { in SetSelection() argument
685 if (nStartChar == 0 && nEndChar < 0) { in SetSelection()
690 if (nStartChar < nEndChar) { in SetSelection()
692 m_pVT->WordIndexToWordPlace(nEndChar)); in SetSelection()
694 SetSelection(m_pVT->WordIndexToWordPlace(nEndChar), in SetSelection()
715 void CPWL_EditImpl::GetSelection(int32_t& nStartChar, int32_t& nEndChar) const { in GetSelection()
717 nEndChar = -1; in GetSelection()
723 nEndChar = m_pVT->WordPlaceToWordIndex(m_wpCaret); in GetSelection()
728 nEndChar = m_pVT->WordPlaceToWordIndex(m_SelState.EndPos); in GetSelection()
732 nEndChar = m_pVT->WordPlaceToWordIndex(m_SelState.BeginPos); in GetSelection()
Dcpwl_edit_impl.h332 void SetSelection(int32_t nStartChar, int32_t nEndChar);
333 void GetSelection(int32_t& nStartChar, int32_t& nEndChar) const;