Searched refs:nStartChar (Results 1 – 7 of 7) sorted by relevance
/external/pdfium/core/fpdfapi/font/ |
D | cpdf_truetypefont.cpp | 70 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/ |
D | cpwl_edit_ctrl.cpp | 353 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()
|
D | cpwl_edit_ctrl.h | 29 void SetSelection(int32_t nStartChar, int32_t nEndChar); 30 void GetSelection(int32_t& nStartChar, int32_t& nEndChar) const;
|
D | cpwl_combo_box.cpp | 228 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()
|
D | cpwl_combo_box.h | 74 void SetEditSelection(int32_t nStartChar, int32_t nEndChar); 75 void GetEditSelection(int32_t& nStartChar, int32_t& nEndChar) const;
|
D | cpwl_edit_impl.cpp | 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() [all …]
|
D | cpwl_edit_impl.h | 308 void SetSelection(int32_t nStartChar, int32_t nEndChar); 309 void GetSelection(int32_t& nStartChar, int32_t& nEndChar) const;
|