Searched refs:rcPlate (Results 1 – 6 of 6) sorted by relevance
/external/pdfium/fpdfsdk/src/pdfwindow/ |
D | PWL_Icon.cpp | 27 CPDF_Rect rcPlate = GetClientRect(); in GetImageAppStream() local 42 sAppStream << rcPlate.left << " " << rcPlate.bottom << " " in GetImageAppStream() 43 << rcPlate.right - rcPlate.left << " " << rcPlate.top - rcPlate.bottom << " re W n\n"; in GetImageAppStream() 45 …sAppStream << fHScale << " 0 0 " << fVScale << " " << rcPlate.left + fx << " " << rcPlate.bottom +… in GetImageAppStream() 196 CPDF_Rect rcPlate = this->GetClientRect(); in GetScale() local 197 fPlateWidth = rcPlate.right - rcPlate.left; in GetScale() 198 fPlateHeight = rcPlate.top - rcPlate.bottom; in GetScale() 265 CPDF_Rect rcPlate = this->GetClientRect(); in GetImageOffset() local 266 fPlateWidth = rcPlate.right - rcPlate.left; in GetImageOffset() 267 fPlateHeight = rcPlate.top - rcPlate.bottom; in GetImageOffset()
|
D | PWL_ListBox.cpp | 141 CPDF_Rect rcPlate = m_pList->GetPlateRect(); in GetThisAppearanceStream() local 146 if (rcItem.bottom > rcPlate.top || rcItem.top < rcPlate.bottom) continue; in GetThisAppearanceStream() 190 CPDF_Rect rcPlate = m_pList->GetPlateRect(); in DrawThisAppearance() local 197 if (rcItem.bottom > rcPlate.top || rcItem.top < rcPlate.bottom) continue; in DrawThisAppearance()
|
D | PWL_Edit.cpp | 820 FX_FLOAT CPWL_Edit::GetCharArrayAutoFontSize(CPDF_Font* pFont, const CPDF_Rect& rcPlate, FX_INT32 n… in GetCharArrayAutoFontSize() argument 827 CPDF_Rect rcCell = rcPlate; in GetCharArrayAutoFontSize()
|
/external/pdfium/fpdfsdk/src/fxedit/ |
D | fxet_list.cpp | 530 CPDF_Rect rcPlate = GetPlateRect(); in InToOut() local 532 return CPDF_Point(point.x - (m_ptScrollPos.x - rcPlate.left), in InToOut() 533 point.y - (m_ptScrollPos.y - rcPlate.top)); in InToOut() 538 CPDF_Rect rcPlate = GetPlateRect(); in OutToIn() local 540 return CPDF_Point(point.x + (m_ptScrollPos.x - rcPlate.left), in OutToIn() 541 point.y + (m_ptScrollPos.y - rcPlate.top)); in OutToIn() 868 CPDF_Rect rcPlate = this->GetPlateRect(); in IsItemVisible() local 871 return rcItem.bottom >= rcPlate.bottom && rcItem.top <= rcPlate.top; in IsItemVisible() 878 CPDF_Rect rcPlate = this->GetPlateRect(); in ScrollToListItem() local 882 if (FX_EDIT_IsFloatSmaller(rcItemCtrl.bottom, rcPlate.bottom)) in ScrollToListItem() [all …]
|
D | fxet_edit.cpp | 2029 CPDF_Rect rcPlate = m_pVT->GetPlateRect(); in GetVisibleWordRange() local 2031 CPVT_WordPlace place1 = m_pVT->SearchWordPlace(EditToVT(CPDF_Point(rcPlate.left,rcPlate.top))); in GetVisibleWordRange() 2032 …CPVT_WordPlace place2 = m_pVT->SearchWordPlace(EditToVT(CPDF_Point(rcPlate.right,rcPlate.bottom))); in GetVisibleWordRange() 2140 CPDF_Rect rcPlate = m_pVT->GetPlateRect(); in VTToEdit() local 2150 fPadding = (rcPlate.Height() - rcContent.Height()) * 0.5f; in VTToEdit() 2153 fPadding = rcPlate.Height() - rcContent.Height(); in VTToEdit() 2157 return CPDF_Point(point.x - (m_ptScrollPos.x - rcPlate.left), in VTToEdit() 2158 point.y - (m_ptScrollPos.y + fPadding - rcPlate.top)); in VTToEdit() 2164 CPDF_Rect rcPlate = m_pVT->GetPlateRect(); in EditToVT() local 2174 fPadding = (rcPlate.Height() - rcContent.Height()) * 0.5f; in EditToVT() [all …]
|
/external/pdfium/fpdfsdk/include/pdfwindow/ |
D | PWL_Edit.h | 85 …static FX_FLOAT GetCharArrayAutoFontSize(CPDF_Font* pFont, const CPDF_Rect& rcPlate, FX_INT32 …
|