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

/external/pdfium/fpdfsdk/include/pdfwindow/
H A DPWL_ComboBox.h78 void SetEditSel(int32_t nStartChar, int32_t nEndChar);
79 void GetEditSel(int32_t& nStartChar, int32_t& nEndChar) const;
H A 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;
/external/pdfium/fpdfsdk/src/pdfwindow/
H A DPWL_EditCtrl.cpp390 void CPWL_EditCtrl::SetSel(int32_t nStartChar, int32_t nEndChar) { argument
391 m_pEdit->SetSel(nStartChar, nEndChar);
394 void CPWL_EditCtrl::GetSel(int32_t& nStartChar, int32_t& nEndChar) const {
395 m_pEdit->GetSel(nStartChar, nEndChar);
605 int32_t& nEndChar) const {
608 nEndChar = m_pEdit->WordPlaceToWordIndex(
613 int32_t& nEndChar) const {
615 CPVT_WordPlace wpEnd = m_pEdit->WordIndexToWordPlace(nEndChar);
H A DPWL_ComboBox.cpp257 void CPWL_ComboBox::SetEditSel(int32_t nStartChar, int32_t nEndChar) { argument
259 m_pEdit->SetSel(nStartChar, nEndChar);
263 void CPWL_ComboBox::GetEditSel(int32_t& nStartChar, int32_t& nEndChar) const {
265 nEndChar = -1;
268 m_pEdit->GetSel(nStartChar, nEndChar);
/external/pdfium/fpdfsdk/include/fxedit/
H A Dfx_edit.h281 // if nStartChar == 0 and nEndChar == -1, select all the text.
282 virtual void SetSel(int32_t nStartChar, int32_t nEndChar) = 0;
284 virtual void GetSel(int32_t& nStartChar, int32_t& nEndChar) const = 0;
H A Dfxet_edit.h620 void SetSel(int32_t nStartChar, int32_t nEndChar) override;
621 void GetSel(int32_t& nStartChar, int32_t& nEndChar) const override;
/external/pdfium/fpdfsdk/src/fxedit/
H A Dfxet_edit.cpp908 void CFX_Edit::SetSel(int32_t nStartChar, int32_t nEndChar) { argument
910 if (nStartChar == 0 && nEndChar < 0) {
915 if (nStartChar < nEndChar) {
917 m_pVT->WordIndexToWordPlace(nEndChar));
919 SetSel(m_pVT->WordIndexToWordPlace(nEndChar),
946 void CFX_Edit::GetSel(int32_t& nStartChar, int32_t& nEndChar) const {
948 nEndChar = -1;
954 nEndChar = m_pVT->WordPlaceToWordIndex(m_SelState.EndPos);
957 nEndChar = m_pVT->WordPlaceToWordIndex(m_SelState.BeginPos);
961 nEndChar
[all...]

Completed in 103 milliseconds