Home
last modified time | relevance | path

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

/external/pdfium/fpdfsdk/pdfwindow/
DPWL_EditCtrl.h39 void SetSel(int32_t nStartChar, int32_t nEndChar);
40 void GetSel(int32_t& nStartChar, int32_t& nEndChar) const;
43 int32_t& nEndChar) const;
44 CFX_WideString GetText(int32_t& nStartChar, int32_t& nEndChar) const;
DPWL_EditCtrl.cpp364 void CPWL_EditCtrl::SetSel(int32_t nStartChar, int32_t nEndChar) { in SetSel() argument
365 m_pEdit->SetSel(nStartChar, nEndChar); in SetSel()
368 void CPWL_EditCtrl::GetSel(int32_t& nStartChar, int32_t& nEndChar) const { in GetSel()
369 m_pEdit->GetSel(nStartChar, nEndChar); in GetSel()
558 int32_t& nEndChar) const { in GetTextRange()
561 nEndChar = m_pEdit->WordPlaceToWordIndex( in GetTextRange()
566 int32_t& nEndChar) const { in GetText()
568 CPVT_WordPlace wpEnd = m_pEdit->WordIndexToWordPlace(nEndChar); in GetText()
DPWL_ComboBox.h77 void SetEditSel(int32_t nStartChar, int32_t nEndChar);
78 void GetEditSel(int32_t& nStartChar, int32_t& nEndChar) const;
DPWL_ComboBox.cpp240 void CPWL_ComboBox::SetEditSel(int32_t nStartChar, int32_t nEndChar) { in SetEditSel() argument
242 m_pEdit->SetSel(nStartChar, nEndChar); in SetEditSel()
245 void CPWL_ComboBox::GetEditSel(int32_t& nStartChar, int32_t& nEndChar) const { in GetEditSel()
247 nEndChar = -1; in GetEditSel()
250 m_pEdit->GetSel(nStartChar, nEndChar); in GetEditSel()
/external/pdfium/fpdfsdk/fxedit/
Dfxet_edit.cpp964 void CFX_Edit::SetSel(int32_t nStartChar, int32_t nEndChar) { in SetSel() argument
966 if (nStartChar == 0 && nEndChar < 0) { in SetSel()
971 if (nStartChar < nEndChar) { in SetSel()
973 m_pVT->WordIndexToWordPlace(nEndChar)); in SetSel()
975 SetSel(m_pVT->WordIndexToWordPlace(nEndChar), in SetSel()
1001 void CFX_Edit::GetSel(int32_t& nStartChar, int32_t& nEndChar) const { in GetSel()
1003 nEndChar = -1; in GetSel()
1009 nEndChar = m_pVT->WordPlaceToWordIndex(m_SelState.EndPos); in GetSel()
1012 nEndChar = m_pVT->WordPlaceToWordIndex(m_SelState.BeginPos); in GetSel()
1016 nEndChar = m_pVT->WordPlaceToWordIndex(m_wpCaret); in GetSel()
Dfxet_edit.h400 void SetSel(int32_t nStartChar, int32_t nEndChar);
401 void GetSel(int32_t& nStartChar, int32_t& nEndChar) const;