Home
last modified time | relevance | path

Searched refs:nStartChar (Results 1 – 7 of 7) sorted by relevance

/external/pdfium/core/fpdfapi/font/
Dcpdf_truetypefont.cpp70 int nStartChar = m_pFontDict->GetIntegerFor("FirstChar"); in LoadGlyphMap() local
71 if (nStartChar < 0 || nStartChar > 255) in LoadGlyphMap()
75 for (; charcode < nStartChar; charcode++) in LoadGlyphMap()
77 uint16_t nGlyph = charcode - nStartChar + 3; in LoadGlyphMap()
/external/pdfium/fpdfsdk/pwl/
Dcpwl_edit_ctrl.cpp353 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() argument
358 m_pEdit->GetSelection(nStartChar, nEndChar); in GetSelection()
Dcpwl_edit_ctrl.h29 void SetSelection(int32_t nStartChar, int32_t nEndChar);
30 void GetSelection(int32_t& nStartChar, int32_t& nEndChar) const;
Dcpwl_combo_box.cpp228 void CPWL_ComboBox::SetEditSelection(int32_t nStartChar, int32_t nEndChar) { in SetEditSelection() argument
230 m_pEdit->SetSelection(nStartChar, nEndChar); in SetEditSelection()
233 void CPWL_ComboBox::GetEditSelection(int32_t& nStartChar, in GetEditSelection() argument
235 nStartChar = -1; in GetEditSelection()
239 m_pEdit->GetSelection(nStartChar, nEndChar); in GetEditSelection()
Dcpwl_combo_box.h74 void SetEditSelection(int32_t nStartChar, int32_t nEndChar);
75 void GetEditSelection(int32_t& nStartChar, int32_t& nEndChar) const;
Dcpwl_edit_impl.cpp657 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()
[all …]
Dcpwl_edit_impl.h308 void SetSelection(int32_t nStartChar, int32_t nEndChar);
309 void GetSelection(int32_t& nStartChar, int32_t& nEndChar) const;