Searched defs:pBrush (Results 1 - 7 of 7) sorted by relevance

/external/pdfium/xfa/src/fdp/src/fde/
H A Dfde_render.cpp233 IFDE_Brush* pBrush = pPathSet->GetBrush(hPath); local
234 if (pBrush != NULL) {
235 m_pRenderDevice->FillPath(pBrush, pPath, &m_Transform);
H A Dfde_object.h35 virtual void SetBrush(IFDE_Brush* pBrush, FX_BOOL bAutoRelease) { argument
37 m_pBrush = pBrush;
H A Dfde_gdidevice.cpp142 FX_BOOL CFDE_GdiDevice::DrawString(IFDE_Brush* pBrush, argument
148 FXSYS_assert(pBrush != NULL && pFont != NULL && pCharPos != NULL);
150 if (pBrush->GetType() == FDE_BRUSHTYPE_Solid) {
151 argb = ((IFDE_SolidBrush*)pBrush)->GetColor();
416 FX_BOOL CFDE_GdiDevice::FillClosedCurve(IFDE_Brush* pBrush, argument
420 Gdiplus::Brush* pGdiBrush = CreateGdiBrush(pBrush);
432 FX_BOOL CFDE_GdiDevice::FillEllipse(IFDE_Brush* pBrush, argument
435 Gdiplus::Brush* pGdiBrush = CreateGdiBrush(pBrush);
446 FX_BOOL CFDE_GdiDevice::FillPath(IFDE_Brush* pBrush, argument
453 Gdiplus::Brush* pGdiBrush = CreateGdiBrush(pBrush);
463 FillPie(IFDE_Brush* pBrush, const CFX_RectF& rect, FX_FLOAT startAngle, FX_FLOAT sweepAngle, const CFX_Matrix* pMatrix) argument
482 FillChord(IFDE_Brush* pBrush, const CFX_RectF& rect, FX_FLOAT startAngle, FX_FLOAT sweepAngle, const CFX_Matrix* pMatrix) argument
493 FillPolygon(IFDE_Brush* pBrush, const CFX_PointsF& points, const CFX_Matrix* pMatrix) argument
507 FillRectangle(IFDE_Brush* pBrush, const CFX_RectF& rect, const CFX_Matrix* pMatrix) argument
521 FillRoundRectangle(IFDE_Brush* pBrush, const CFX_RectF& rect, const CFX_SizeF& round, const CFX_Matrix* pMatrix) argument
567 CreateGdiBrush(IFDE_Brush* pBrush) argument
[all...]
H A Dfde_gedevice.cpp133 FX_BOOL CFDE_FxgeDevice::DrawString(IFDE_Brush* pBrush, argument
139 FXSYS_assert(pBrush != NULL && pFont != NULL && pCharPos != NULL &&
143 switch (pBrush->GetType()) {
145 FX_ARGB argb = ((IFDE_SolidBrush*)pBrush)->GetColor();
307 FX_BOOL CFDE_FxgeDevice::FillClosedCurve(IFDE_Brush* pBrush, argument
313 return FillPath(pBrush, &path, pMatrix);
315 FX_BOOL CFDE_FxgeDevice::FillEllipse(IFDE_Brush* pBrush, argument
320 return FillPath(pBrush, &path, pMatrix);
322 FX_BOOL CFDE_FxgeDevice::FillPolygon(IFDE_Brush* pBrush, argument
327 return FillPath(pBrush,
329 FillRectangle(IFDE_Brush* pBrush, const CFX_RectF& rect, const CFX_Matrix* pMatrix) argument
391 FillPath(IFDE_Brush* pBrush, const IFDE_Path* pPath, const CFX_Matrix* pMatrix) argument
407 FillSolidPath(IFDE_Brush* pBrush, const CFX_PathData* pPath, const CFX_Matrix* pMatrix) argument
415 FillHatchPath(IFDE_Brush* pBrush, const CFX_PathData* pPath, const CFX_Matrix* pMatrix) argument
449 FillTexturePath(IFDE_Brush* pBrush, const CFX_PathData* pPath, const CFX_Matrix* pMatrix) argument
532 FillLinearGradientPath(IFDE_Brush* pBrush, const CFX_PathData* pPath, const CFX_Matrix* pMatrix) argument
[all...]
/external/pdfium/xfa/src/fdp/src/tto/
H A Dfde_textout.cpp779 IFDE_SolidBrush* pBrush = local
781 pBrush->SetColor(m_TxtColor);
797 m_pRenderDevice->DrawString(pBrush, m_pFont, m_pCharPos, iCount,
804 if (pBrush) {
805 pBrush->Release();
/external/pdfium/xfa/src/fxfa/src/app/
H A Dxfa_textlayout.cpp1865 IFDE_SolidBrush* pBrush,
1873 pBrush->SetColor(pPiece->dwColor);
1874 pDevice->DrawString(pBrush, pPiece->pFont, pCharPos, iCount,
1864 RenderString(IFDE_RenderDevice* pDevice, IFDE_SolidBrush* pBrush, CXFA_PieceLine* pPieceLine, int32_t iPiece, FXTEXT_CHARPOS* pCharPos, const CFX_Matrix& tmDoc2Device) argument
/external/pdfium/core/src/fxge/win32/
H A Dfx_win32_gdipext.cpp835 void CGdiplusExt::GdipCreateBrush(FX_DWORD fill_argb, void** pBrush) { argument
838 CallFunc(GdipCreateSolidFill)((ARGB)fill_argb, (GpSolidFill**)pBrush);
840 void CGdiplusExt::GdipDeleteBrush(void* pBrush) { argument
843 CallFunc(GdipDeleteBrush)((GpSolidFill*)pBrush);
1226 GpBrush* pBrush = _GdipCreateBrush(fill_argb); local
1228 CallFunc(GdipFillPath)(pGraphics, pBrush, pGpPath);
1229 CallFunc(GdipDeleteBrush)(pBrush);

Completed in 135 milliseconds