Home
last modified time | relevance | path

Searched refs:pathRB (Results 1 – 3 of 3) sorted by relevance

/external/pdfium/xfa/src/fwl/src/theme/
Dwidgettp.cpp328 CFX_Path pathRB; in Draw3DRect() local
329 pathRB.Create(); in Draw3DRect()
330 pathRB.MoveTo(fRight - fHalfWidth, fTop + fHalfWidth); in Draw3DRect()
331 pathRB.LineTo(fRight - fHalfWidth, fBottom - fHalfWidth); in Draw3DRect()
332 pathRB.LineTo(fLeft + fHalfWidth, fBottom - fHalfWidth); in Draw3DRect()
333 pathRB.LineTo(fLeft + fHalfWidth, fBottom - fWidth); in Draw3DRect()
334 pathRB.LineTo(fRight - fWidth, fBottom - fWidth); in Draw3DRect()
335 pathRB.LineTo(fRight - fWidth, fTop + fHalfWidth); in Draw3DRect()
336 pathRB.LineTo(fRight - fHalfWidth, fTop + fHalfWidth); in Draw3DRect()
337 pGraphics->FillPath(&pathRB, FXFILL_WINDING, pMatrix); in Draw3DRect()
[all …]
/external/pdfium/xfa/src/fxfa/src/app/
Dxfa_ffwidget.cpp1720 CFX_Path pathRB; in XFA_Draw3DRect() local
1721 pathRB.Create(); in XFA_Draw3DRect()
1722 pathRB.MoveTo(fRight, rt.top); in XFA_Draw3DRect()
1723 pathRB.LineTo(fRight, fBottom); in XFA_Draw3DRect()
1724 pathRB.LineTo(rt.left, fBottom); in XFA_Draw3DRect()
1725 pathRB.LineTo(rt.left + fLineWidth, fBottom - fLineWidth); in XFA_Draw3DRect()
1726 pathRB.LineTo(fRight - fLineWidth, fBottom - fLineWidth); in XFA_Draw3DRect()
1727 pathRB.LineTo(fRight - fLineWidth, rt.top + fLineWidth); in XFA_Draw3DRect()
1728 pathRB.LineTo(fRight, rt.top); in XFA_Draw3DRect()
1729 pGraphic->FillPath(&pathRB, FXFILL_WINDING, pMatrix); in XFA_Draw3DRect()
/external/pdfium/fpdfsdk/src/pdfwindow/
DPWL_Utils.cpp1546 CFX_PathData pathRB; in DrawBorder() local
1548 pathRB.SetPointCount(7); in DrawBorder()
1549 pathRB.SetPoint(0, fRight - fHalfWidth, fTop - fHalfWidth, FXPT_MOVETO); in DrawBorder()
1550 pathRB.SetPoint(1, fRight - fHalfWidth, fBottom + fHalfWidth, in DrawBorder()
1552 pathRB.SetPoint(2, fLeft + fHalfWidth, fBottom + fHalfWidth, in DrawBorder()
1554 pathRB.SetPoint(3, fLeft + fHalfWidth * 2, fBottom + fHalfWidth * 2, in DrawBorder()
1556 pathRB.SetPoint(4, fRight - fHalfWidth * 2, fBottom + fHalfWidth * 2, in DrawBorder()
1558 pathRB.SetPoint(5, fRight - fHalfWidth * 2, fTop - fHalfWidth * 2, in DrawBorder()
1560 pathRB.SetPoint(6, fRight - fHalfWidth, fTop - fHalfWidth, FXPT_LINETO); in DrawBorder()
1562 pDevice->DrawPath(&pathRB, pUser2Device, &gsd, in DrawBorder()