Searched refs:nStartChar (Results 1 – 7 of 7) sorted by relevance
/external/pdfium/core/fpdfapi/font/ |
D | cpdf_truetypefont.cpp | 75 int nStartChar = m_pFontDict->GetIntegerFor("FirstChar"); in LoadGlyphMap() local 76 if (nStartChar < 0 || nStartChar > 255) in LoadGlyphMap() 80 for (; charcode < nStartChar; charcode++) in LoadGlyphMap() 82 uint16_t nGlyph = charcode - nStartChar + 3; in LoadGlyphMap()
|
/external/pdfium/fpdfsdk/pwl/ |
D | cpwl_edit_ctrl.cpp | 339 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() argument 344 m_pEdit->GetSelection(nStartChar, nEndChar); in GetSelection()
|
D | cpwl_edit_ctrl.h | 31 void SetSelection(int32_t nStartChar, int32_t nEndChar); 32 void GetSelection(int32_t& nStartChar, int32_t& nEndChar) const;
|
D | cpwl_combo_box.h | 82 void SetEditSelection(int32_t nStartChar, int32_t nEndChar); 83 void GetEditSelection(int32_t& nStartChar, int32_t& nEndChar) const;
|
D | cpwl_combo_box.cpp | 251 void CPWL_ComboBox::SetEditSelection(int32_t nStartChar, int32_t nEndChar) { in SetEditSelection() argument 253 m_pEdit->SetSelection(nStartChar, nEndChar); in SetEditSelection() 256 void CPWL_ComboBox::GetEditSelection(int32_t& nStartChar, in GetEditSelection() argument 258 nStartChar = -1; in GetEditSelection() 262 m_pEdit->GetSelection(nStartChar, nEndChar); in GetEditSelection()
|
D | cpwl_edit_impl.cpp | 683 void CPWL_EditImpl::SetSelection(int32_t nStartChar, int32_t nEndChar) { in SetSelection() argument 685 if (nStartChar == 0 && nEndChar < 0) { in SetSelection() 687 } else if (nStartChar < 0) { in SetSelection() 690 if (nStartChar < nEndChar) { in SetSelection() 691 SetSelection(m_pVT->WordIndexToWordPlace(nStartChar), in SetSelection() 695 m_pVT->WordIndexToWordPlace(nStartChar)); in SetSelection() 715 void CPWL_EditImpl::GetSelection(int32_t& nStartChar, int32_t& nEndChar) const { in GetSelection() argument 716 nStartChar = -1; in GetSelection() 722 nStartChar = m_pVT->WordPlaceToWordIndex(m_wpCaret); in GetSelection() 727 nStartChar = m_pVT->WordPlaceToWordIndex(m_SelState.BeginPos); in GetSelection() [all …]
|
D | cpwl_edit_impl.h | 332 void SetSelection(int32_t nStartChar, int32_t nEndChar); 333 void GetSelection(int32_t& nStartChar, int32_t& nEndChar) const;
|