HomeSort by relevance Sort by last modified time
    Searched refs:pPathData (Results 1 - 19 of 19) sorted by null

  /external/pdfium/core/src/fxge/skia/
fx_skia_device.h 23 virtual FX_BOOL SetClip_PathFill(const CFX_PathData* pPathData, // path info
29 virtual FX_BOOL SetClip_PathStroke(const CFX_PathData* pPathData, // path info
35 virtual FX_BOOL DrawPath(const CFX_PathData* pPathData,
fx_skia_device.cpp 127 void BuildPath(const CFX_PathData* pPathData, const CFX_AffineMatrix* pObject2Device);
130 void CSkia_PathData::BuildPath(const CFX_PathData* pPathData, const CFX_AffineMatrix* pObject2Device)
132 const CFX_PathData* pFPath = pPathData;
297 FX_BOOL CFX_SkiaDeviceDriver::SetClip_PathFill(const CFX_PathData* pPathData, // path info
305 if (pPathData->GetPointCount() == 5 || pPathData->GetPointCount() == 4) {
307 if (pPathData->IsRect(pObject2Device, &rectf)) {
315 path_data.BuildPath(pPathData, pObject2Device);
329 FX_BOOL CFX_SkiaDeviceDriver::SetClip_PathStroke(const CFX_PathData* pPathData, // path info
339 path_data.BuildPath(pPathData, NULL)
    [all...]
  /external/pdfium/core/src/fxge/agg/include/
fx_agg_driver.h 19 void BuildPath(const CFX_PathData* pPathData, const CFX_AffineMatrix* pObject2Device);
37 virtual FX_BOOL SetClip_PathFill(const CFX_PathData* pPathData,
43 virtual FX_BOOL SetClip_PathStroke(const CFX_PathData* pPathData,
49 virtual FX_BOOL DrawPath(const CFX_PathData* pPathData,
  /external/pdfium/core/src/fxge/ge/
fx_ge_device.cpp 80 FX_BOOL CFX_RenderDevice::SetClip_PathFill(const CFX_PathData* pPathData,
85 if (!m_pDeviceDriver->SetClip_PathFill(pPathData, pObject2Device, fill_mode)) {
91 FX_BOOL CFX_RenderDevice::SetClip_PathStroke(const CFX_PathData* pPathData,
96 if (!m_pDeviceDriver->SetClip_PathStroke(pPathData, pObject2Device, pGraphState)) {
122 FX_BOOL CFX_RenderDevice::DrawPath(const CFX_PathData* pPathData,
142 if (stroke_alpha == 0 && pPathData->GetPointCount() == 2) {
143 FX_PATHPOINT* pPoints = pPathData->GetPoints();
157 if ((pPathData->GetPointCount() == 5 || pPathData->GetPointCount() == 4) && stroke_alpha == 0) {
159 if (!(fill_mode & FXFILL_RECT_AA) && pPathData->IsRect(pObject2Device, &rect_f))
    [all...]
fx_ge_ps.cpp 90 void CFX_PSRenderer::OutputPath(const CFX_PathData* pPathData, const CFX_AffineMatrix* pObject2Device)
92 int nPoints = pPathData->GetPointCount();
96 FX_BYTE flag = pPathData->GetFlag(i);
97 FX_FLOAT x = pPathData->GetPointX(i);
98 FX_FLOAT y = pPathData->GetPointY(i);
115 FX_FLOAT x1 = pPathData->GetPointX(i + 1);
116 FX_FLOAT x2 = pPathData->GetPointX(i + 2);
117 FX_FLOAT y1 = pPathData->GetPointY(i + 1);
118 FX_FLOAT y2 = pPathData->GetPointY(i + 2);
136 void CFX_PSRenderer::SetClip_PathFill(const CFX_PathData* pPathData,
    [all...]
  /external/pdfium/core/src/fxge/win32/
win32_int.h 24 FX_BOOL DrawPath(HDC hDC, const CFX_PathData* pPathData,
85 virtual FX_BOOL SetClip_PathFill(const CFX_PathData* pPathData,
89 virtual FX_BOOL SetClip_PathStroke(const CFX_PathData* pPathData,
93 virtual FX_BOOL DrawPath(const CFX_PathData* pPathData,
199 virtual FX_BOOL SetClip_PathFill(const CFX_PathData* pPathData,
203 virtual FX_BOOL SetClip_PathStroke(const CFX_PathData* pPathData,
207 virtual FX_BOOL DrawPath(const CFX_PathData* pPathData,
fx_win32_device.cpp 678 static void _SetPathToDC(HDC hDC, const CFX_PathData* pPathData, const CFX_AffineMatrix* pMatrix)
681 int nPoints = pPathData->GetPointCount();
682 FX_PATHPOINT* pPoints = pPathData->GetPoints();
755 FX_BOOL CGdiDeviceDriver::DrawPath(const CFX_PathData* pPathData,
773 CFX_FloatRect bbox_f = pPathData->GetBoundingBox();
796 (pPathData->GetPointCount() == 5 || pPathData->GetPointCount() == 4) &&
797 pPathData->IsRect()) ) {
798 if (pPlatform->m_GdiplusExt.DrawPath(m_hDC, pPathData, pMatrix, pGraphState, fill_color, stroke_color, fill_mode)) {
818 if (pPathData->GetPointCount() == 2 && pGraphState && pGraphState->m_DashCount)
    [all...]
fx_win32_print.cpp 350 FX_BOOL CPSPrinterDriver::SetClip_PathFill(const CFX_PathData* pPathData, const CFX_AffineMatrix* pObject2Device,
353 m_PSRenderer.SetClip_PathFill(pPathData, pObject2Device, fill_mode);
356 FX_BOOL CPSPrinterDriver::SetClip_PathStroke(const CFX_PathData* pPathData,
360 m_PSRenderer.SetClip_PathStroke(pPathData, pObject2Device, pGraphState);
363 FX_BOOL CPSPrinterDriver::DrawPath(const CFX_PathData* pPathData,
371 return m_PSRenderer.DrawPath(pPathData, pObject2Device, pGraphState, fill_color, stroke_color, fill_mode & 3, alpha_flag, pIccTransform);
fx_win32_gdipext.cpp     [all...]
  /external/pdfium/core/include/fxge/
fx_ge.h 377 FX_BOOL SetClip_PathFill(const CFX_PathData* pPathData,
384 FX_BOOL SetClip_PathStroke(const CFX_PathData* pPathData,
389 FX_BOOL DrawPath(const CFX_PathData* pPathData,
542 virtual FX_BOOL SetClip_PathFill(const CFX_PathData* pPathData,
547 virtual FX_BOOL SetClip_PathStroke(const CFX_PathData* pPathData,
555 virtual FX_BOOL DrawPath(const CFX_PathData* pPathData,
659 void SetClip_PathFill(const CFX_PathData* pPathData,
664 void SetClip_PathStroke(const CFX_PathData* pPathData,
674 FX_BOOL DrawPath(const CFX_PathData* pPathData,
721 void OutputPath(const CFX_PathData* pPathData, const CFX_AffineMatrix* pObject2Device)
    [all...]
  /external/pdfium/core/src/fxge/apple/
apple_int.h 108 virtual FX_BOOL SetClip_PathFill(const CFX_PathData* pPathData,
112 virtual FX_BOOL SetClip_PathStroke(const CFX_PathData* pPathData,
116 virtual FX_BOOL DrawPath(const CFX_PathData* pPathData,
  /external/pdfium/fpdfsdk/src/
fpdf_transformpage.cpp 220 const CFX_PathData* pPathData = path;
221 if (pPathData == NULL) return;
223 FX_PATHPOINT* pPoints = pPathData->GetPoints();
233 for (int i = 0; i < pPathData->GetPointCount(); i ++) {
  /external/pdfium/core/src/fxge/agg/agg23/
fx_agg_driver.cpp 35 void CAgg_PathData::BuildPath(const CFX_PathData* pPathData, const CFX_AffineMatrix* pObject2Device)
37 int nPoints = pPathData->GetPointCount();
38 FX_PATHPOINT* pPoints = pPathData->GetPoints();
318 FX_BOOL CFX_AggDeviceDriver::SetClip_PathFill(const CFX_PathData* pPathData,
327 if (pPathData->GetPointCount() == 5 || pPathData->GetPointCount() == 4) {
329 if (pPathData->IsRect(pObject2Device, &rectf)) {
337 path_data.BuildPath(pPathData, pObject2Device);
346 FX_BOOL CFX_AggDeviceDriver::SetClip_PathStroke(const CFX_PathData* pPathData,
355 path_data.BuildPath(pPathData, NULL)
    [all...]
  /external/pdfium/core/src/fpdfdoc/
doc_annot.cpp 359 CPDF_PathData *pPathData = pPathObject->m_Path.GetModify();
360 if (pPathData) {
361 pPathData->AppendRect(rect.left + width, rect.bottom + width, rect.right - width, rect.top - width);
  /external/pdfium/fpdfsdk/include/pdfwindow/
PWL_Utils.h 203 static CFX_ByteString GetAppStreamFromArray(const CPWL_PathData* pPathData, FX_INT32 nCount);
204 static void GetPathDataFromArray(CFX_PathData& path, const CPWL_PathData* pPathData, FX_INT32 nCount);
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render.cpp 632 const CFX_PathData* pPathData = ClipPath.GetPath(i);
633 if (pPathData == NULL) {
636 if (pPathData->GetPointCount() == 0) {
643 m_pDevice->SetClip_PathFill(pPathData, pObj2Device, ClipType);
689 const CFX_PathData* pPathData = ClipPath.GetPath(i);
690 if (pPathData == NULL) {
697 m_pDevice->DrawPath(pPathData, pObj2Device, &stroke_state, 0, 0xffff0000, fill_mode);
    [all...]
  /external/pdfium/fpdfsdk/src/pdfwindow/
PWL_Utils.cpp 19 CFX_ByteString CPWL_Utils::GetAppStreamFromArray(const CPWL_PathData* pPathData, FX_INT32 nCount)
25 switch (pPathData[i].type)
28 csAP << pPathData[i].point.x << " " << pPathData[i].point.y << " m\n";
31 csAP << pPathData[i].point.x << " " << pPathData[i].point.y << " l\n";
34 csAP << pPathData[i].point.x << " " << pPathData[i].point.y << " "
35 << pPathData[i+1].point.x << " " << pPathData[i+1].point.y << "
    [all...]
  /external/pdfium/fpdfsdk/src/fxedit/
fxet_pageobjs.cpp 403 CPDF_PathData* pPathData = pPathObj->m_Path.GetModify();
404 pPathData->AppendRect(rcFill.left,rcFill.bottom,rcFill.right,rcFill.top);
  /external/pdfium/core/src/reflow/
layoutprocessor_reflow.cpp 843 CRF_PathData* pPathData = (CRF_PathData*)pData;
844 pPathData->m_pPath2Device.Concat(*pMatrix);
    [all...]

Completed in 1379 milliseconds