Searched refs:nEndChar (Results 1 – 6 of 6) sorted by relevance
/external/pdfium/fpdfsdk/pwl/ |
D | cpwl_edit_ctrl.cpp | 353 void CPWL_EditCtrl::SetSelection(int32_t nStartChar, int32_t nEndChar) { in SetSelection() argument 354 m_pEdit->SetSelection(nStartChar, nEndChar); in SetSelection() 357 void CPWL_EditCtrl::GetSelection(int32_t& nStartChar, int32_t& nEndChar) const { in GetSelection() 358 m_pEdit->GetSelection(nStartChar, nEndChar); in GetSelection()
|
D | cpwl_edit_ctrl.h | 29 void SetSelection(int32_t nStartChar, int32_t nEndChar); 30 void GetSelection(int32_t& nStartChar, int32_t& nEndChar) const;
|
D | cpwl_combo_box.cpp | 228 void CPWL_ComboBox::SetEditSelection(int32_t nStartChar, int32_t nEndChar) { in SetEditSelection() argument 230 m_pEdit->SetSelection(nStartChar, nEndChar); in SetEditSelection() 234 int32_t& nEndChar) const { in GetEditSelection() 236 nEndChar = -1; in GetEditSelection() 239 m_pEdit->GetSelection(nStartChar, nEndChar); in GetEditSelection()
|
D | cpwl_combo_box.h | 74 void SetEditSelection(int32_t nStartChar, int32_t nEndChar); 75 void GetEditSelection(int32_t& nStartChar, int32_t& nEndChar) const;
|
D | cpwl_edit_impl.cpp | 657 void CPWL_EditImpl::SetSelection(int32_t nStartChar, int32_t nEndChar) { in SetSelection() argument 659 if (nStartChar == 0 && nEndChar < 0) { in SetSelection() 664 if (nStartChar < nEndChar) { in SetSelection() 666 m_pVT->WordIndexToWordPlace(nEndChar)); in SetSelection() 668 SetSelection(m_pVT->WordIndexToWordPlace(nEndChar), in SetSelection() 689 void CPWL_EditImpl::GetSelection(int32_t& nStartChar, int32_t& nEndChar) const { in GetSelection() 691 nEndChar = -1; in GetSelection() 697 nEndChar = m_pVT->WordPlaceToWordIndex(m_wpCaret); in GetSelection() 702 nEndChar = m_pVT->WordPlaceToWordIndex(m_SelState.EndPos); in GetSelection() 706 nEndChar = m_pVT->WordPlaceToWordIndex(m_SelState.BeginPos); in GetSelection()
|
D | cpwl_edit_impl.h | 308 void SetSelection(int32_t nStartChar, int32_t nEndChar); 309 void GetSelection(int32_t& nStartChar, int32_t& nEndChar) const;
|