Home
last modified time | relevance | path

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

/external/pdfium/fpdfsdk/pwl/
Dcpwl_icon.cpp69 CFX_FloatRect rcPlate = GetClientRect(); in GetScale() local
70 float fPlateWidth = rcPlate.right - rcPlate.left; in GetScale()
71 float fPlateHeight = rcPlate.top - rcPlate.bottom; in GetScale()
125 CFX_FloatRect rcPlate = GetClientRect(); in GetImageOffset() local
126 float fPlateWidth = rcPlate.right - rcPlate.left; in GetImageOffset()
127 float fPlateHeight = rcPlate.top - rcPlate.bottom; in GetImageOffset()
Dcpwl_list_impl.cpp117 CFX_FloatRect rcPlate = m_rcPlate; in InToOut() local
118 return CFX_PointF(point.x - (m_ptScrollPos.x - rcPlate.left), in InToOut()
119 point.y - (m_ptScrollPos.y - rcPlate.top)); in InToOut()
123 CFX_FloatRect rcPlate = m_rcPlate; in OutToIn() local
124 return CFX_PointF(point.x + (m_ptScrollPos.x - rcPlate.left), in OutToIn()
125 point.y + (m_ptScrollPos.y - rcPlate.top)); in OutToIn()
410 CFX_FloatRect rcPlate = m_rcPlate; in IsItemVisible() local
413 return rcItem.bottom >= rcPlate.bottom && rcItem.top <= rcPlate.top; in IsItemVisible()
420 CFX_FloatRect rcPlate = m_rcPlate; in ScrollToListItem() local
424 if (IsFloatSmaller(rcItemCtrl.bottom, rcPlate.bottom)) { in ScrollToListItem()
[all …]
Dcpwl_edit_impl.cpp852 CFX_FloatRect rcPlate = m_pVT->GetPlateRect(); in GetVisibleWordRange() local
855 m_pVT->SearchWordPlace(EditToVT(CFX_PointF(rcPlate.left, rcPlate.top))); in GetVisibleWordRange()
857 EditToVT(CFX_PointF(rcPlate.right, rcPlate.bottom))); in GetVisibleWordRange()
937 CFX_FloatRect rcPlate = m_pVT->GetPlateRect(); in VTToEdit() local
946 fPadding = (rcPlate.Height() - rcContent.Height()) * 0.5f; in VTToEdit()
949 fPadding = rcPlate.Height() - rcContent.Height(); in VTToEdit()
953 return CFX_PointF(point.x - (m_ptScrollPos.x - rcPlate.left), in VTToEdit()
954 point.y - (m_ptScrollPos.y + fPadding - rcPlate.top)); in VTToEdit()
959 CFX_FloatRect rcPlate = m_pVT->GetPlateRect(); in EditToVT() local
968 fPadding = (rcPlate.Height() - rcContent.Height()) * 0.5f; in EditToVT()
[all …]
Dcpwl_list_box.cpp102 CFX_FloatRect rcPlate = m_pList->GetPlateRect(); in DrawThisAppearance() local
108 if (rcItem.bottom > rcPlate.top || rcItem.top < rcPlate.bottom) in DrawThisAppearance()
Dcpwl_appstream.cpp706 CFX_FloatRect rcPlate = icon.GetClientRect(); in GenerateIconAppStream() local
720 str << rcPlate.left << " " << rcPlate.bottom << " " in GenerateIconAppStream()
721 << rcPlate.right - rcPlate.left << " " << rcPlate.top - rcPlate.bottom in GenerateIconAppStream()
725 str << fHScale << " 0 0 " << fVScale << " " << rcPlate.left + fx << " " in GenerateIconAppStream()
726 << rcPlate.bottom + fy << " " << kConcatMatrixOperator << "\n"; in GenerateIconAppStream()
Dcpwl_edit.h88 const CFX_FloatRect& rcPlate,
Dcpwl_edit.cpp411 const CFX_FloatRect& rcPlate, in GetCharArrayAutoFontSize() argument
419 CFX_FloatRect rcCell = rcPlate; in GetCharArrayAutoFontSize()