Lines Matching refs:nStartChar
657 void CPWL_EditImpl::SetSelection(int32_t nStartChar, int32_t nEndChar) { in SetSelection() argument
659 if (nStartChar == 0 && nEndChar < 0) { in SetSelection()
661 } else if (nStartChar < 0) { in SetSelection()
664 if (nStartChar < nEndChar) { in SetSelection()
665 SetSelection(m_pVT->WordIndexToWordPlace(nStartChar), in SetSelection()
669 m_pVT->WordIndexToWordPlace(nStartChar)); in SetSelection()
689 void CPWL_EditImpl::GetSelection(int32_t& nStartChar, int32_t& nEndChar) const { in GetSelection() argument
690 nStartChar = -1; in GetSelection()
696 nStartChar = m_pVT->WordPlaceToWordIndex(m_wpCaret); in GetSelection()
701 nStartChar = m_pVT->WordPlaceToWordIndex(m_SelState.BeginPos); in GetSelection()
705 nStartChar = m_pVT->WordPlaceToWordIndex(m_SelState.EndPos); in GetSelection()